修复warning

This commit is contained in:
wu58430 2024-01-11 21:38:35 +08:00
parent c3c3cf15ed
commit 00747f7ed5
2 changed files with 2 additions and 1 deletions

View file

@ -269,6 +269,7 @@ switch (gCurrentFunction)
#ifdef ENABLE_AM_FIX_SHOW_DATA
counter = display_update_rate; // queue up a display update as soon as we switch to RX mode
#endif
default:
return;

View file

@ -693,7 +693,7 @@ void SETTINGS_SaveChannelName(uint8_t channel, const char * name)
{
uint16_t offset = channel * 16;
uint8_t buf[16] = {0};
memcpy(buf, name, MIN(strlen(name), MAX_EDIT_INDEX));
memcpy(buf, name, MIN(( int)strlen(name), MAX_EDIT_INDEX));
EEPROM_WriteBuffer(0x0F50 + offset, buf,8);
EEPROM_WriteBuffer(0x0F58 + offset, buf + 8,8);
}