mirror of
https://github.com/RfidResearchGroup/ChameleonUltra.git
synced 2026-05-12 11:22:59 -07:00
Fix wrong storage space
This commit is contained in:
@@ -34,7 +34,7 @@ uint8_t settings_save_config(void)
|
||||
calc_14a_crc_lut((uint8_t *)&config, sizeof(config), (uint8_t *)&new_calc_crc);
|
||||
if (new_calc_crc != m_config_crc) { // Before saving, make sure that the configuration has changed
|
||||
NRF_LOG_INFO("Save tag slot config start.");
|
||||
bool ret = fds_write_sync(FDS_CONFIG_RECORD_FILE_ID, FDS_CONFIG_RECORD_FILE_KEY, sizeof(config) / 4, (uint8_t *)&config);
|
||||
bool ret = fds_write_sync(FDS_SETTINGS_ID, FDS_SETTINGS_KEY, sizeof(config) / 4, (uint8_t *)&config);
|
||||
if (ret) {
|
||||
NRF_LOG_INFO("Save tag slot config success.");
|
||||
m_config_crc = new_calc_crc; // store new CRC so we know that we've updated the configuration
|
||||
|
||||
Reference in New Issue
Block a user