Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/OneOfEleven/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
egzumer committed Oct 2, 2023
2 parents e64bf6b + e0aa1a8 commit d826ecb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ ifeq ($(ENABLE_TX1750),1)
CFLAGS += -DENABLE_TX1750
endif
ifeq ($(ENABLE_KEEP_MEM_NAME),1)
CFLAGS += -DKEEP_MEM_NAME
CFLAGS += -DENABLE_KEEP_MEM_NAME
endif
ifeq ($(ENABLE_WIDE_RX),1)
CFLAGS += -DENABLE_WIDE_RX
Expand Down
2 changes: 1 addition & 1 deletion app/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ void MENU_AcceptSetting(void)
break;

case MENU_F_CALI:
if (gF_LOCK)
//if (gF_LOCK)
writeXtalFreqCal(gSubMenuSelection);
return;

Expand Down
Binary file modified firmware.bin
Binary file not shown.
Binary file modified firmware.packed.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ void SETTINGS_SaveChannel(uint8_t Channel, uint8_t VFO, const VFO_Info_t *pVFO,

if (IS_MR_CHANNEL(Channel))
{
#ifndef KEEP_MEM_NAME
#ifndef ENABLE_KEEP_MEM_NAME
// clear/reset the channel name
//memset(&State, 0xFF, sizeof(State));
memset(&State, 0x00, sizeof(State)); // follow the QS way
Expand Down Expand Up @@ -277,7 +277,7 @@ void SETTINGS_UpdateChannel(uint8_t Channel, const VFO_Info_t *pVFO, bool keep)

gMR_ChannelAttributes[Channel] = Attributes;

// #ifndef KEEP_MEM_NAME
// #ifndef ENABLE_KEEP_MEM_NAME
if (IS_MR_CHANNEL(Channel))
{
const uint16_t OffsetMR = Channel * 16;
Expand Down

0 comments on commit d826ecb

Please sign in to comment.