1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-25 01:05:15 +03:00

adding more user-notify messages

This commit is contained in:
cTn 2014-02-04 18:52:21 +01:00
parent 60dbffd1ba
commit 8686a45831
7 changed files with 26 additions and 3 deletions

View file

@ -276,7 +276,9 @@ function configuration_upload() {
// Send ove the new MISC
send_message(MSP_codes.MSP_SET_MISC, buffer_out, false, function() {
// Save changes to EEPROM
send_message(MSP_codes.MSP_EEPROM_WRITE, MSP_codes.MSP_EEPROM_WRITE);
send_message(MSP_codes.MSP_EEPROM_WRITE, MSP_codes.MSP_EEPROM_WRITE, false, function() {
GUI.log('EEPROM <span style="color: green">saved</span>');
});
});
};
}