Write the validated user config area to the EEPROM, not the staging area.

This commit is contained in:
László Monda
2017-10-05 09:12:50 +02:00
parent 377fe4a2b2
commit 3ed3272fa3

View File

@@ -172,7 +172,7 @@ void legacyLaunchEepromTransfer(void)
EEPROM_LaunchTransfer(EepromOperation_Read, ConfigBufferId_ValidatedUserConfig, NULL);
break;
case 3:
EEPROM_LaunchTransfer(EepromOperation_Write, ConfigBufferId_StagingUserConfig, NULL);
EEPROM_LaunchTransfer(EepromOperation_Write, ConfigBufferId_ValidatedUserConfig, NULL);
break;
}
}