Renamed variable.

This commit is contained in:
Dual Tachyon 2023-08-26 11:14:43 +01:00
parent 7ac7cfbd04
commit 82b35365db
3 changed files with 3 additions and 3 deletions

2
app.c
View File

@ -12,7 +12,7 @@ void APP_Update(void)
if (g_2000037E == 1) {
return;
}
if (gIsFmRadioEnabled) {
if (gFmRadioCountdown) {
return;
}
}

2
misc.c
View File

@ -117,7 +117,7 @@ bool gIsNoaaMode;
volatile bool gNextTimeslice;
uint8_t gNoaaChannel;
bool gUpdateDisplay;
bool gIsFmRadioEnabled;
uint8_t gFmRadioCountdown;
uint8_t gA_Scan_Channel;
uint8_t gDebounceCounter;
uint8_t gDTMF_AUTO_RESET_TIME;

2
misc.h
View File

@ -121,7 +121,7 @@ extern bool gIsNoaaMode;
extern volatile bool gNextTimeslice;
extern uint8_t gNoaaChannel;
extern bool gUpdateDisplay;
extern bool gIsFmRadioEnabled;
extern uint8_t gFmRadioCountdown;
extern uint8_t gA_Scan_Channel;
extern uint8_t gDebounceCounter;
extern uint8_t gDTMF_AUTO_RESET_TIME;