diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2018-05-07 09:55:07 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2018-05-07 09:55:07 -0400 |
commit | 14670765128b8f098486690c582ce29ecfa6b0fb (patch) | |
tree | e08c250b9c3728a0eb04afb39cf1450ae43cb2bf /globals.h | |
parent | baa291089601d4d541c7d7afa256d6372e29b778 (diff) |
added more address comments
Diffstat (limited to 'globals.h')
-rw-r--r-- | globals.h | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -484,16 +484,16 @@ typedef struct { /* so that per-channel section starts at 256 */ /* [chan][range 0-4][polarity][interpolation point 0-9] */ - short obs_ampl_dacval[max_channels][ampl_ranges][ampl_polarities][old_range_size_ten]; - float obs_ampl_pwl[max_channels][ampl_ranges][ampl_polarities][old_range_size_ten]; - - float rcl_frequency[max_channels][max_stored_settings]; - float rcl_delay[max_channels][max_stored_settings]; - float rcl_pw[max_channels][max_stored_settings]; - float rcl_amplitude[max_channels][max_stored_settings]; - float rcl_offset[max_channels][max_stored_settings]; - short rcl_misc[max_channels][max_stored_settings]; /* another misc is stored below */ - short rcl_unused[max_stored_settings]; + short obs_ampl_dacval[max_channels][ampl_ranges][ampl_polarities][old_range_size_ten]; /* addr 256 */ + float obs_ampl_pwl[max_channels][ampl_ranges][ampl_polarities][old_range_size_ten]; /* addr 656 */ + + float rcl_frequency[max_channels][max_stored_settings]; /* addr 1456 */ + float rcl_delay[max_channels][max_stored_settings]; /* addr 1488 */ + float rcl_pw[max_channels][max_stored_settings]; /* addr 1520 */ + float rcl_amplitude[max_channels][max_stored_settings]; /* addr 1552 */ + float rcl_offset[max_channels][max_stored_settings]; /* addr 1584 */ + short rcl_misc[max_channels][max_stored_settings]; /* addr 1616 - another misc is stored below */ + short rcl_unused[max_stored_settings]; /* addr 1632 */ float mon_vi_ratio[max_channels][5][2]; /* addr 1640 */ |