summaryrefslogtreecommitdiff
path: root/parser.c
diff options
context:
space:
mode:
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;