1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-25 09:15:21 +03:00

Should fix #2848 - Worst case fixes a warning.

This commit is contained in:
Bertrand Songis 2015-09-08 19:29:11 +02:00
parent afdff355de
commit 21ac2eca88

View file

@ -49,7 +49,7 @@ typedef uint32_t tmrstart_t;
#else
typedef int16_t tmrval_t;
typedef uint16_t tmrstart_t;
#define TIMER_MIN (-0xffff/2)
#define TIMER_MIN (32767)
#endif
#define TIMER_MAX (-TIMER_MIN-1)