From c40f6bcc77eaea4c91b6813ed5567bc9661c3ce9 Mon Sep 17 00:00:00 2001 From: Klaus K Wilting Date: Sun, 15 Jul 2018 22:47:20 +0200 Subject: [PATCH] configmanager.cpp: bugfix double antenna_select --- platformio.ini | 8 ++++---- src/configmanager.cpp | 7 +------ 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/platformio.ini b/platformio.ini index f51f3aba..074074a9 100644 --- a/platformio.ini +++ b/platformio.ini @@ -17,12 +17,12 @@ ;env_default = ttgov2 ;env_default = ttgov21 ;env_default = ttgobeam -;env_default = lopy +env_default = lopy ;env_default = lopy4 ;env_default = fipy ;env_default = lolin32litelora ;env_default = lolin32lora -env_default = lolin32lite +;env_default = lolin32lite ; description = Paxcounter is a proof-of-concept ESP32 device for metering passenger flows in realtime. It counts how many mobile devices are around. @@ -47,8 +47,8 @@ build_flags = ; otherwise device may crash in dense environments due to serial buffer overflow ; ; -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_NONE -; -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_INFO - -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG + -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_INFO +; -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG ; -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE ; ; override lora settings from LMiC library in lmic/config.h and use main.h instead diff --git a/src/configmanager.cpp b/src/configmanager.cpp index 66936b8f..00005e4a 100644 --- a/src/configmanager.cpp +++ b/src/configmanager.cpp @@ -316,10 +316,5 @@ void loadConfig() { nvs_close(my_handle); ESP_LOGI(TAG, "Done"); - // put actions to be triggered after config loaded here - -#ifdef HAS_ANTENNA_SWITCH // set antenna type - antenna_select(cfg.wifiant); -#endif } -} +} // loadConfig()