From 94e749d08e6441305f4c3627cffbaec274e9ad75 Mon Sep 17 00:00:00 2001 From: bsongis Date: Sat, 14 Jun 2014 11:22:53 +0200 Subject: [PATCH] Companion: limit for comparaison of timers in Logical Switches is now 300 (1 hour) --- companion/src/eeprominterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/companion/src/eeprominterface.cpp b/companion/src/eeprominterface.cpp index baf79dd245..42a78ff535 100644 --- a/companion/src/eeprominterface.cpp +++ b/companion/src/eeprominterface.cpp @@ -116,7 +116,7 @@ RawSourceRange RawSource::getRange(bool singleprec) case TELEMETRY_SOURCE_TIMER1: case TELEMETRY_SOURCE_TIMER2: result.step = singleprec ? 5 : 1; - result.max = singleprec ? 255*5 : 7200; + result.max = singleprec ? 255*5 : 60*60; break; case TELEMETRY_SOURCE_RSSI_TX: case TELEMETRY_SOURCE_RSSI_RX: