From c358d1741d28ce1d44fde1ce2736ddb08df0f98a Mon Sep 17 00:00:00 2001 From: Brian Webb Date: Sun, 25 Jun 2017 19:03:44 -0700 Subject: [PATCH] LP-537 GPSPSystemModStart gets called from main, so it should not be called from GPSPSystemModInitialize. --- flight/modules/gpsp/gpsdsysmod.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flight/modules/gpsp/gpsdsysmod.c b/flight/modules/gpsp/gpsdsysmod.c index bd7443bdc..91480078a 100644 --- a/flight/modules/gpsp/gpsdsysmod.c +++ b/flight/modules/gpsp/gpsdsysmod.c @@ -94,8 +94,7 @@ int32_t GPSPSystemModStart(void) */ int32_t GPSPSystemModInitialize(void) { - GPSPSystemModStart(); - + // Module started in main return 0; }