removed unused var macs_total
This commit is contained in:
parent
7f16cd430c
commit
6ec85c20c4
@ -124,7 +124,7 @@ extern configData_t cfg; // current device configuration
|
||||
extern char lmic_event_msg[LMIC_EVENTMSG_LEN]; // display buffer
|
||||
extern uint8_t volatile channel; // wifi channel rotation counter
|
||||
extern uint8_t batt_level; // display value
|
||||
extern uint16_t volatile macs_total, macs_wifi, macs_ble; // display values
|
||||
extern uint16_t volatile macs_wifi, macs_ble; // display values
|
||||
extern bool volatile TimePulseTick; // 1sec pps flag set by GPS or RTC
|
||||
extern timesource_t timeSource;
|
||||
extern hw_timer_t *displayIRQ, *matrixDisplayIRQ, *ppsIRQ;
|
||||
|
@ -81,8 +81,7 @@ configData_t cfg; // struct holds current device configuration
|
||||
char lmic_event_msg[LMIC_EVENTMSG_LEN]; // display buffer for LMIC event message
|
||||
uint8_t volatile channel = 0; // channel rotation counter
|
||||
uint8_t batt_level = 0; // display value
|
||||
uint16_t volatile macs_total = 0, macs_wifi = 0,
|
||||
macs_ble = 0; // globals for display
|
||||
uint16_t volatile macs_wifi = 0, macs_ble = 0; // globals for display
|
||||
|
||||
hw_timer_t *ppsIRQ = NULL, *displayIRQ = NULL, *matrixDisplayIRQ = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user