diff options
author | Mike <mjc@avtechpulse.com> | 2000-01-01 00:54:22 +0900 |
---|---|---|
committer | Mike <mjc@avtechpulse.com> | 2000-01-01 00:54:22 +0900 |
commit | 5825c1d8982bb7ac65c0c43f34d1de07fda0aa38 (patch) | |
tree | 657e8d2cabcf8af73445932844f68f83bbf4085f /globals.h | |
parent | b632b38172ebd582a5989cc820ff7ed3c99515b6 (diff) |
store distortion dac values, not floats
Diffstat (limited to 'globals.h')
-rw-r--r-- | globals.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -761,9 +761,9 @@ typedef struct { /* addr 10256, add ampl-dependent distort output, 10V full-scale */ - float distort_pwl[max_channels][ampl_ranges][ampl_polarities][points_in_range]; - char distort_dac[max_channels]; /* addr 11056 */ - char distort_enabled[max_channels]; /* addr 11058 */ + short distort_dacval[max_channels][ampl_ranges][ampl_polarities][points_in_range]; + char distort_dac[max_channels]; /* addr 10656 */ + char distort_enabled[max_channels]; /* addr 10658 */ char flash_end; |