From 3ed3272fa3df2471cb753c1a8a40d83a15f5a7fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Thu, 5 Oct 2017 09:12:50 +0200 Subject: [PATCH] Write the validated user config area to the EEPROM, not the staging area. --- right/src/usb_protocol_handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/right/src/usb_protocol_handler.c b/right/src/usb_protocol_handler.c index 55caf16..d7e4e7e 100644 --- a/right/src/usb_protocol_handler.c +++ b/right/src/usb_protocol_handler.c @@ -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; } }