From b00751af915c42421b2d1e7c141a890b158ba6f0 Mon Sep 17 00:00:00 2001 From: Corvus Corax Date: Wed, 19 Oct 2011 15:50:42 +0200 Subject: [PATCH] Systemmod bugfix: UAVObject used without Initialization --- flight/Modules/System/systemmod.c | 1 + 1 file changed, 1 insertion(+) diff --git a/flight/Modules/System/systemmod.c b/flight/Modules/System/systemmod.c index 168b46aa6..c95dab409 100644 --- a/flight/Modules/System/systemmod.c +++ b/flight/Modules/System/systemmod.c @@ -114,6 +114,7 @@ int32_t SystemModInitialize(void) // Must registers objects here for system thread because ObjectManager started in OpenPilotInit SystemSettingsInitialize(); SystemStatsInitialize(); + FlightStatusInitialize(); ObjectPersistenceInitialize(); #if defined(DIAGNOSTICS) TaskInfoInitialize();