Skip to content

Commit

Permalink
Fix radio.c file
Browse files Browse the repository at this point in the history
  • Loading branch information
spm81 committed Feb 21, 2024
1 parent e2395eb commit 6d1d928
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ENABLE_DTMF_SIDETONES := 1
ENABLE_TX1750 := 0
# Keep this in stock options, and add option in mods for extra rogers
ENABLE_ROGERBEEP := 1
ENABLE_MDC := 0
ENABLE_MDC := 1

#============== MODIFICATIONS =============#
# AM Modulation Fix - 544 bytes
Expand All @@ -33,7 +33,7 @@ ENABLE_SQUELCH_MORE_SENSITIVE := 0
# Restore FM in 1 second after RX - 0 bytes
ENABLE_FMRADIO_FAST_RESTORE := 1
# Battery percentage - 296 bytes
ENABLE_STATUS_BATTERY_PERC := 0
ENABLE_STATUS_BATTERY_PERC := 1
# Show current while charging - 136 bytes Thanks Tunas1337
ENABLE_BATTERY_CHARGING := 0
# Invert LCD Colors
Expand Down
6 changes: 1 addition & 5 deletions radio.c
Original file line number Diff line number Diff line change
Expand Up @@ -927,11 +927,7 @@ void RADIO_SendEndOfTransmission(void) {
} else if (gEeprom.ROGER == ROGER_MODE_MDC) {
BK4819_PlayRogerMDC();
}



ROGER_MODE_UV5RC,


#elif defined (ENABLE_ROGERBEEP) && !defined (ENABLE_MDC)
if (gEeprom.ROGER == ROGER_MODE_DEFAULT) {
BK4819_PlayRoger(0);
Expand Down

0 comments on commit 6d1d928

Please sign in to comment.