From 62b10e383cc7439508e57751dbcdf0d8a617cf1a Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Thu, 6 Mar 2014 19:10:46 -0500 Subject: Oscilloscope: Fix loading of the speed setting for waveform view Somehow, a long long time ago, I put MAX*/MAX* in the config data range fields instead of MIN*/MAX* which forced the settings loader to acknowledge only 100 as a valid setting other than the default. Change-Id: Ifbfcafad27e239942449848d6a09426173bbde54 --- apps/plugins/oscilloscope.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/plugins') diff --git a/apps/plugins/oscilloscope.c b/apps/plugins/oscilloscope.c index 4d807493d3..86edfc67e3 100644 --- a/apps/plugins/oscilloscope.c +++ b/apps/plugins/oscilloscope.c @@ -604,7 +604,7 @@ struct configdata disk_config[] = { TYPE_ENUM, 0, MAX_OSC, { .int_p = &osc_disk.orientation }, "orientation", orientation_str }, #ifdef OSCILLOSCOPE_GRAPHMODE - { TYPE_INT, MAX_SPEED, MAX_SPEED, + { TYPE_INT, MIN_SPEED, MAX_SPEED, { .int_p = &osc_disk.speed[GRAPH_WAVEFORM] }, "wavespeed", NULL }, { TYPE_ENUM, 0, MAX_GRAPH, { .int_p = &osc_disk.graphmode }, "graphmode", graphmode_str }, -- cgit v1.2.3