1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-16 12:55:12 +03:00

Companion: limit for comparaison of timers in Logical Switches is now

300 (1 hour)
This commit is contained in:
bsongis 2014-06-14 11:22:53 +02:00
parent 726a03d433
commit 94e749d08e

View file

@ -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: