From 1ac4c63fa7b3ee28af07c7727bb88ef85da5756b Mon Sep 17 00:00:00 2001 From: Richard von Lehe Date: Sun, 12 Apr 2015 22:05:05 -0500 Subject: [PATCH] OP-1740: UAVObjects use enums --- flight/modules/System/systemmod.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flight/modules/System/systemmod.c b/flight/modules/System/systemmod.c index 33567d827..8ee248eb9 100644 --- a/flight/modules/System/systemmod.c +++ b/flight/modules/System/systemmod.c @@ -101,7 +101,9 @@ static enum { STACKOVERFLOW_NONE = 0, STACKOVERFLOW_WARNING = 1, STACKOVERFLOW_C static bool mallocFailed; static HwSettingsData bootHwSettings; static FrameType_t bootFrameType; +#if !defined(ARCH_POSIX) && !defined(ARCH_WIN32) static struct PIOS_FLASHFS_Stats fsStats; +#endif // Private functions static void objectUpdatedCb(UAVObjEvent *ev);