Commit 496eeeda authored by Lucas Russo's avatar Lucas Russo

sm_io/*/dsp/sm_io_dsp_defaults.h: fix Kx,Ky,Ksum values

Kx,Ky values were just plain wrong. Instead of the
default value of 10_000_000 it was 1_000_000. Ksum
was using the value 1.0 with old value FIX25_24
that was used by the previous DSP chain. Now,
we use FIX25_0.
parent be151bea
......@@ -9,10 +9,9 @@
#define _DSP_DEFAULTS_H_
/********************** K Default Values ***************************/
#define DSP_DFLT_KX_VAL 1000000 /* nm */
#define DSP_DFLT_KY_VAL 1000000 /* nm */
#define DSP_DFLT_KSUM_VAL 0x0FFFFFF /* 1.0 in FIX25_24 notation */
#define DSP_DFLT_KX_VAL 10000000 /* nm */
#define DSP_DFLT_KY_VAL 10000000 /* nm */
#define DSP_DFLT_KSUM_VAL 1 /* 1 in FIX25_0 notation */
/************ Delta Sigma Minimum Calculation Threshold ***********/
#define DSP_DFLT_DS_TBT_THRES 0 /* No minimum threslhold */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment