diff options
author | Mike <mjc@avtechpulse.com> | 2000-01-01 00:23:17 +0900 |
---|---|---|
committer | Mike <mjc@avtechpulse.com> | 2000-01-01 00:23:17 +0900 |
commit | e12558f1ed16d3bdb96f7f0fbd05b48eb7558a0e (patch) | |
tree | 6115cb3a9b6f61e0295715bfa5d3daf3928ce835 /error_utils.c | |
parent | bee40b77fc98991b4b6ef33b1e738915bc989ff0 (diff) |
replace pol_norm and pol_complement with NO/YES for clarity
Diffstat (limited to 'error_utils.c')
-rw-r--r-- | error_utils.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/error_utils.c b/error_utils.c index f29341c..7d4dc25 100644 --- a/error_utils.c +++ b/error_utils.c @@ -822,7 +822,7 @@ int Error_check(ChannelStruct ChannelStateToTest[max_channels]) report_error=freq_lower_limit; } - if ((ChannelStateToTest[i].inverted!=pol_norm) && (globals.Flash.min_pw[i]>0.0)) { + if ((ChannelStateToTest[i].inverted!=NO) && (globals.Flash.min_pw[i]>0.0)) { temp=(1/ChannelStateToTest[i].pw)*( 1.0- ampl_fixed_max_duty/duty_scale ); if (temp>globals.Constraints.err_min_freq[i]) { globals.Constraints.err_min_freq[i]=temp; @@ -886,7 +886,7 @@ int Error_check(ChannelStruct ChannelStateToTest[max_channels]) } } - if (ChannelStateToTest[i].inverted==pol_norm) { + if (ChannelStateToTest[i].inverted==NO) { temp=(1/ChannelStateToTest[i].pw)*(ampl_fixed_max_duty/duty_scale); if (temp<globals.Constraints.err_max_freq[i]) { globals.Constraints.err_max_freq[i]=temp; @@ -943,7 +943,7 @@ int Error_check(ChannelStruct ChannelStateToTest[max_channels]) /* negative-pw units are special, ignore PRF / duty cycle / PW conflicts */ if (globals.Constraints.err_min_pw[i]>=0.0) { if (ChannelStateToTest[i].trigger_source==source_internal) { - if (ChannelStateToTest[i].inverted!=pol_norm) { + if (ChannelStateToTest[i].inverted!=NO) { temp=(1/ChannelStateToTest[i].frequency)*( 1.0 - ampl_fixed_max_duty/duty_scale ); if (temp>globals.Constraints.err_min_pw[i]) { globals.Constraints.err_min_pw[i]=temp; @@ -1012,7 +1012,7 @@ int Error_check(ChannelStruct ChannelStateToTest[max_channels]) } } - if (ChannelStateToTest[i].inverted==pol_norm) { + if (ChannelStateToTest[i].inverted==NO) { temp=(1/ChannelStateToTest[i].frequency)*(ampl_fixed_max_duty/duty_scale); if (temp<globals.Constraints.err_max_pw[i]) { globals.Constraints.err_max_pw[i]=temp; @@ -1250,7 +1250,7 @@ int Error_check(ChannelStruct ChannelStateToTest[max_channels]) } duty_cycle=ChannelStateToTest[i].pw*ChannelStateToTest[i].frequency*100; /* calculate duty cycle */ - if (ChannelStateToTest[i].inverted!=pol_norm) { + if (ChannelStateToTest[i].inverted!=NO) { duty_cycle=100-duty_cycle; /* account for inversion */ } |