diff options
author | Mike <mjc@avtechpulse.com> | 2000-01-01 00:06:10 +0900 |
---|---|---|
committer | Mike <mjc@avtechpulse.com> | 2000-01-01 00:06:10 +0900 |
commit | 22d14fa90698c21b05d3eda2f65d7db9498e9a57 (patch) | |
tree | feab6ce25e68f1645bce474e2a70c87c874d00cd /globals.h | |
parent | a287b3611a8f6cd6bef0aa850930d3f6a5d9dbaf (diff) |
enforce double pulse minimum spacingINSTRUMENT_6_2_30b
Diffstat (limited to 'globals.h')
-rw-r--r-- | globals.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -42,7 +42,7 @@ #define ampl_plus_os_lower_limit 22 #define ampl_plus_os_upper_limit 23 #define DutyTriggerError 24 -#define PW_Exceeds_Double_Separation 25 +#define Double_Separation_Too_Small 25 #define queue_overflow 26 #define query_error_interrupted 27 #define IllegalParameter 28 @@ -766,6 +766,10 @@ typedef struct { char distort_dac[max_channels]; /* addr 10656 */ char distort_enabled[max_channels]; /* addr 10658 */ + float double_pulse_extra_pw_margin[max_channels]; // addr 10660 - double pulse sep must be > (1.0 + this) * PW + float double_pulse_extra_deadtime[max_channels]; // addr 10668 + this + float double_pulse_min_sep[max_channels]; // addr 10676 + char flash_end; } FlashStruct; |