summaryrefslogtreecommitdiff
path: root/parser.c
diff options
context:
space:
mode:
authorMike <mjc@avtechpulse.com>2000-01-01 00:15:59 +0900
committerMike <mjc@avtechpulse.com>2000-01-01 00:15:59 +0900
commit09b55d5ca98747a3c33b6fca10541104626bc2c3 (patch)
tree3e7f64ec87b1c574549a8a80c4dd3f40921c57b5 /parser.c
parentc42275085f4256ff608421f098c7b806d1f8c55c (diff)
Rename piece-wise-linear variables for clarity, dropping reference to obsolete 12bit values
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/parser.c b/parser.c
index b9e7dec..3462df3 100644
--- a/parser.c
+++ b/parser.c
@@ -3408,13 +3408,13 @@ static int Go_dly_shift_82(gchar** response, int channel, char *parameter,char *
case query_simple:
- min_one_shot_delay = globals.Flash.delay_pwl_time[channel][0][0][0];
+ min_one_shot_delay = globals.Flash.delay_pwl[channel][0][0][0];
*response = g_strdup_printf (
"Fixed delay: %f ns, PG-SYNC propagation delay: %f ns, narrowest variable delay: %f ns, all delays valid: %s, delay monotonic in external trigger mode: %s",
globals.Flash.delay_shrink[channel]*1e9,
globals.Flash.propagation_delay[channel]*1e9,
- globals.Flash.delay_pwl_time[channel][0][0][0]*1e9,
+ globals.Flash.delay_pwl[channel][0][0][0]*1e9,
(globals.Flash.delay_shrink[channel] >= min_one_shot_delay) ? "TRUE" : "FALSE",
(( globals.Flash.delay_shrink[channel] - globals.Flash.propagation_delay[channel] ) >= min_one_shot_delay) ? "TRUE" : "FALSE");
return OK;