mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
OP-1050: Moves LED configuration above settings erase in OPLink pios_board.c to prevent crashing when settings are erased.
This commit is contained in:
parent
fb5a24b1cc
commit
2340f4f0d9
@ -124,6 +124,10 @@ void PIOS_Board_Init(void)
|
|||||||
PIOS_RTC_Init(&pios_rtc_main_cfg);
|
PIOS_RTC_Init(&pios_rtc_main_cfg);
|
||||||
#endif /* PIOS_INCLUDE_RTC */
|
#endif /* PIOS_INCLUDE_RTC */
|
||||||
|
|
||||||
|
#if defined(PIOS_INCLUDE_LED)
|
||||||
|
PIOS_LED_Init(&pios_led_cfg);
|
||||||
|
#endif /* PIOS_INCLUDE_LED */
|
||||||
|
|
||||||
/* IAP System Setup */
|
/* IAP System Setup */
|
||||||
PIOS_IAP_Init();
|
PIOS_IAP_Init();
|
||||||
// check for safe mode commands from gcs
|
// check for safe mode commands from gcs
|
||||||
@ -141,10 +145,6 @@ void PIOS_Board_Init(void)
|
|||||||
OPLinkStatusInitialize();
|
OPLinkStatusInitialize();
|
||||||
#endif /* PIOS_INCLUDE_RFM22B */
|
#endif /* PIOS_INCLUDE_RFM22B */
|
||||||
|
|
||||||
#if defined(PIOS_INCLUDE_LED)
|
|
||||||
PIOS_LED_Init(&pios_led_cfg);
|
|
||||||
#endif /* PIOS_INCLUDE_LED */
|
|
||||||
|
|
||||||
/* Initialize the delayed callback library */
|
/* Initialize the delayed callback library */
|
||||||
CallbackSchedulerInitialize();
|
CallbackSchedulerInitialize();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user