Skip to content

Commit

Permalink
preserve configs
Browse files Browse the repository at this point in the history
  • Loading branch information
MedadRufus committed Feb 8, 2022
1 parent 395bb7c commit 0a37946
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/peripherals/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ extern "C"
#define GPS_ENABLED 1 /* Enable Ublox GPS. Init the GPS as well. Allowed values: 0 disabled , 1(default) enabled */
#define USE_LED 1 /* Enable LED blinky. Allowed values: 0 disabled , 1(default) enabled */

#define USE_NVM_STORED_LORAWAN_REGION 1 /* Use LoRaWAN region stored in EEPROm. Allowed values: 0 disabled , 1(default) enabled. If not using EEPROM location, \
#define USE_NVM_STORED_LORAWAN_REGION 0 /* Use LoRaWAN region stored in EEPROm. Allowed values: 0 disabled , 1(default) enabled. If not using EEPROM location, \
* use EU868 \
*/

Expand All @@ -51,7 +51,7 @@ extern "C"
/* GPS RELATED DEFINES */
/* ----------------------------------------------------------------------------------- */

#define GPS_LOCATION_FIX_TIMEOUT 120000
#define GPS_LOCATION_FIX_TIMEOUT 10000
#define GPS_WAKEUP_TIMEOUT 1000

/* GEOFENCE RELATED DEFINES */
Expand Down Expand Up @@ -96,13 +96,13 @@ extern "C"
* @brief Choose whether to go into Deep sleep or not
*
*/
#define DEEP_SLEEP_ENABLE true
#define DEEP_SLEEP_ENABLE false

/**
* @brief Choose weather to disable serial output to reduce peak currents
*
*/
#define DISABLE_SERIAL_OUTPUT true
#define DISABLE_SERIAL_OUTPUT false

/**
* @brief Number of past positions saved in EEPROM to printout for debugging
Expand Down

0 comments on commit 0a37946

Please sign in to comment.