Merge pull request #1470 from thinkyhead/fix_eeprom_typo

Fix bad typo in ConfigurationStore.cpp
This commit is contained in:
Scott Lahteine 2015-02-06 14:44:28 -08:00
commit 1a3c7d91f1

View File

@ -160,7 +160,7 @@ void Config_StoreSettings() {
EEPROM_WRITE_VAR(i, PID_PARAM(Kc, e));
#else
dummy = 1.0f; // 1.0 = default kc
EEPROM_WRITE_VAR(dummmy);
EEPROM_WRITE_VAR(i, dummy);
#endif
}
else {