fix FSI_SAMPLE_SIZE max value

For some reason, this had been set to a ridiculous 1k. The actual range
of values is on the order of 2e6.
parent 617c9e83
......@@ -68,7 +68,8 @@ enum fsi_expert_mode {
/** length of return peak data */
#define FSI_PEAK_LENGTH 200
/** size of sample vectors - this should not be hardcoded - tbd */
#define FSI_SAMPLE_SIZE 1024
/** estimate: 100 MHz during 25ms, giving 2.5M samples */
#define FSI_SAMPLE_SIZE (100*1000000/1000*25)
#define FSI_BYTES_PER_SAMPLE 2
#define FSI_SAMPLE_SIZE_BYTES (FSI_SAMPLE_SIZE*FSI_SAMPLE_SIZE_BYTES)
......
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