diff options
author | root <root@avtech.domain.avtechpulse.com> | 2000-01-01 00:06:27 +0900 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 2000-01-01 00:06:27 +0900 |
commit | 1f4b060db66d6cd3924a6e4b8bb766d58b4225d3 (patch) | |
tree | f14b15dcc265b7079103329ea34ab5546b819d68 | |
parent | 67c006bd5785c21026638f216f43e157c9bef3cf (diff) |
fixed incorrect init of burst, prf integers
-rw-r--r-- | flash.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -591,8 +591,8 @@ static void initFlashValues(FlashStruct *mem) mem->pw_pwl_Vc_norm4095[i][j][k][m]=temp_int; mem->delay_pwl_Vc_norm4095[i][j][k][m]=temp_int; - mem->burst_pwl_Vc_norm4095[i][j][k][m]=temp_int; - mem->period_pwl_Vc_norm4095[i][j][k][m]=temp_int_burst; + mem->burst_pwl_Vc_norm4095[i][j][k][m]=temp_int_burst; + mem->period_pwl_Vc_norm4095[i][j][k][m]=temp_int; } } power_of_ten*=10.0; |