mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-06-19 14:48:03 +03:00
Fixed error I made in makefile (python call now works - IF you have python installed)
This commit is contained in:
@ -168,6 +168,9 @@ void SETTINGS_SaveSettings(void)
|
||||
if (!gSetting_TX_EN) State[7] &= ~(1u << 0);
|
||||
if (!gSetting_live_DTMF_decoder) State[7] &= ~(1u << 1);
|
||||
State[7] = (State[7] & ~(3u << 2)) | ((gSetting_battery_text & 3u) << 2);
|
||||
#ifdef ENABLE_AUDIO_BAR
|
||||
if (!gSetting_mic_bar) State[7] &= ~(1u << 4);
|
||||
#endif
|
||||
EEPROM_WriteBuffer(0x0F40, State);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user