1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-22 07:45:14 +03:00

MenuGeneral split - 2nd part

This commit is contained in:
bsongis 2014-12-14 21:50:13 +01:00
parent 62ca755d5b
commit 4394d18b13
19 changed files with 1132 additions and 864 deletions

View file

@ -880,8 +880,13 @@ extern uint16_t lastMixerDuration;
#if defined(THRTRACE)
#define MAXTRACE (LCD_W - 8)
extern uint8_t s_traceBuf[MAXTRACE];
extern uint8_t s_traceWr;
extern int s_traceCnt;
#if LCD_W >= 255
extern int16_t s_traceWr;
extern int16_t s_traceCnt;
#else
extern uint8_t s_traceWr;
extern int16_t s_traceCnt;
#endif
extern uint8_t s_cnt_10s;
extern uint16_t s_cnt_samples_thr_10s;
extern uint16_t s_sum_samples_thr_10s;