mirror of
https://github.com/EdgeTX/edgetx.git
synced 2025-07-26 01:35:16 +03:00
Should fix #2848 - Worst case fixes a warning.
This commit is contained in:
parent
afdff355de
commit
21ac2eca88
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ typedef uint32_t tmrstart_t;
|
||||||
#else
|
#else
|
||||||
typedef int16_t tmrval_t;
|
typedef int16_t tmrval_t;
|
||||||
typedef uint16_t tmrstart_t;
|
typedef uint16_t tmrstart_t;
|
||||||
#define TIMER_MIN (-0xffff/2)
|
#define TIMER_MIN (32767)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define TIMER_MAX (-TIMER_MIN-1)
|
#define TIMER_MAX (-TIMER_MIN-1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue