mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-15 14:54:40 +00:00
信道长度
This commit is contained in:
parent
367a162ffa
commit
50d8cdbf3b
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ void SETTINGS_SaveChannelName(uint8_t channel, const char * name)
|
||||||
{
|
{
|
||||||
uint16_t offset = channel * 16;
|
uint16_t offset = channel * 16;
|
||||||
uint8_t buf[16] = {0};
|
uint8_t buf[16] = {0};
|
||||||
memcpy(buf, name, MIN(strlen(name), 10u));
|
memcpy(buf, name, MIN(strlen(name), MAX_EDIT_INDEX));
|
||||||
EEPROM_WriteBuffer(0x0F50 + offset, buf,8);
|
EEPROM_WriteBuffer(0x0F50 + offset, buf,8);
|
||||||
EEPROM_WriteBuffer(0x0F58 + offset, buf + 8,8);
|
EEPROM_WriteBuffer(0x0F58 + offset, buf + 8,8);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue