1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

Start CallbackScheduler last (after other modules) to reduce risk of race conditions during bootup

This commit is contained in:
Corvus Corax 2013-07-28 20:31:31 +02:00
parent 9537cac701
commit 4d9f7a72db

View File

@ -168,12 +168,13 @@ MODULE_INITCALL(SystemModInitialize, 0);
*/
static void systemTask(__attribute__((unused)) void *parameters)
{
/* start the delayed callback scheduler */
CallbackSchedulerStart();
uint8_t cycleCount = 0;
/* create all modules thread */
MODULE_TASKCREATE_ALL;
/* start the delayed callback scheduler */
CallbackSchedulerStart();
if (mallocFailed) {
/* We failed to malloc during task creation,
* system behaviour is undefined. Reset and let