diff options
author | Mike <mjc@avtechpulse.com> | 2000-01-01 00:02:18 +0900 |
---|---|---|
committer | Mike <mjc@avtechpulse.com> | 2000-01-01 00:02:18 +0900 |
commit | 17a7d9d071bcb77d885e79c29e8b36c64387eb66 (patch) | |
tree | 713cc2eca2e2a2eba873639193771a55f87fd68c | |
parent | 0f9385987e234d02cdb0685572c73054a0cd8c2c (diff) |
remove one cal point from bottom PRF range
-rw-r--r-- | flash.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -599,6 +599,13 @@ static void initFlashValues(FlashStruct *mem) mem->delay_dacval[i][j][k][m]=temp_int; mem->period_dacval[i][j][k][m]=temp_int; mem->burst_dacval[i][j][k][m]=temp_int; + + // special overrides + if ((m==4) && (j==0)) { + // just 4 points in fastest PRF range, 5th point is flaky + mem->period_dacval[i][j][k][m] = 0; + mem->period_pwl[i][j][k][m] = 0.0; + } } } power_of_ten*=10.0; |