Skip to content

Commit

Permalink
armedSTate init change
Browse files Browse the repository at this point in the history
armed state should be initialized as 0
  • Loading branch information
MiguelFAlvarez authored Sep 5, 2019
1 parent 8598fd1 commit 57fe245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void SystemClock_Config(void);

/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */
uint8_t armedState = 1; //TODO DEFAULT THIS BACK TO 0!!! ONLY 1 FOR DEBUGGING DATA LOGGING
uint8_t armedState = 0;
uint8_t baroState = 0;
uint8_t imuState = 0;
uint8_t magState = 0;
Expand Down

0 comments on commit 57fe245

Please sign in to comment.