void readEEPROM(void) { // Sanity check if (!isEEPROMContentValid()) failureMode(FAILURE_INVALID_EEPROM_CONTENTS); suspendRxSignal(); // Read flash memcpy(&masterConfig, (char *) CONFIG_START_FLASH_ADDRESS, sizeof(master_t)); if (masterConfig.current_profile_index > MAX_PROFILE_COUNT - 1) // sanity check masterConfig.current_profile_index = 0; setProfile(masterConfig.current_profile_index); if (currentProfile->defaultRateProfileIndex > MAX_CONTROL_RATE_PROFILE_COUNT - 1) // sanity check currentProfile->defaultRateProfileIndex = 0; setControlRateProfile(currentProfile->defaultRateProfileIndex); validateAndFixConfig(); activateConfig(); resumeRxSignal(); }
void readEEPROM(void) { // Sanity check if (!isEEPROMContentValid()) failureMode(10); // Read flash memcpy(&masterConfig, (char *) FLASH_WRITE_ADDR, sizeof(master_t)); // Copy current profile if (masterConfig.current_profile_index > 2) // sanity check masterConfig.current_profile_index = 0; memcpy(¤tProfile, &masterConfig.profile[masterConfig.current_profile_index], sizeof(profile_t)); validateAndFixConfig(); activateConfig();
void readEEPROM(void) { // Sanity check if (!isEEPROMContentValid()) failureMode(10); // Read flash memcpy(&masterConfig, (char *) flashWriteAddress, sizeof(master_t)); // Copy current profile if (masterConfig.current_profile_index > 2) // sanity check masterConfig.current_profile_index = 0; setProfile(masterConfig.current_profile_index); validateAndFixConfig(); activateConfig(); }
void readEEPROM(void) { suspendRxSignal(); // Sanity check, read flash if (!loadEEPROM()) { failureMode(FAILURE_INVALID_EEPROM_CONTENTS); } pgActivateProfile(getCurrentProfile()); setControlRateProfile(rateProfileSelection()->defaultRateProfileIndex); validateAndFixConfig(); activateConfig(); resumeRxSignal(); }
void readEEPROM(void) { #ifndef USE_OSD_SLAVE suspendRxSignal(); #endif // Sanity check, read flash if (!loadEEPROM()) { failureMode(FAILURE_INVALID_EEPROM_CONTENTS); } validateAndFixConfig(); activateConfig(); #ifndef USE_OSD_SLAVE resumeRxSignal(); #endif }
void readEEPROM(void) { suspendRxSignal(); // Sanity check // Read flash if (!scanEEPROM(true)) { failureMode(FAILURE_INVALID_EEPROM_CONTENTS); } pgActivateProfile(getCurrentProfile()); if (rateProfileSelection()->defaultRateProfileIndex > MAX_CONTROL_RATE_PROFILE_COUNT - 1) // sanity check rateProfileSelection()->defaultRateProfileIndex = 0; setControlRateProfile(rateProfileSelection()->defaultRateProfileIndex); validateAndFixConfig(); activateConfig(); resumeRxSignal(); }