summaryrefslogtreecommitdiff
path: root/globals.h
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2018-05-07 09:55:07 -0400
committerMichael J. Chudobiak <mjc@avtechpulse.com>2018-05-07 09:55:07 -0400
commit14670765128b8f098486690c582ce29ecfa6b0fb (patch)
treee08c250b9c3728a0eb04afb39cf1450ae43cb2bf /globals.h
parentbaa291089601d4d541c7d7afa256d6372e29b778 (diff)
added more address comments
Diffstat (limited to 'globals.h')
-rw-r--r--globals.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/globals.h b/globals.h
index 26b67b6..54418ef 100644
--- a/globals.h
+++ b/globals.h
@@ -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 */