From 4b52478caa8dac21e527818cc121874bd94d6185 Mon Sep 17 00:00:00 2001 From: Klaus K Wilting Date: Sun, 15 Jul 2018 19:56:21 +0200 Subject: [PATCH] main.cpp: bugfix printKeys --- platformio.ini | 4 ++-- src/lorawan.h | 1 + src/main.cpp | 25 ++++--------------------- 3 files changed, 7 insertions(+), 23 deletions(-) diff --git a/platformio.ini b/platformio.ini index a88571bd..16ab8b67 100644 --- a/platformio.ini +++ b/platformio.ini @@ -11,8 +11,8 @@ ; ---> SELECT TARGET PLATFORM HERE! <--- [platformio] -;env_default = generic -env_default = heltec +env_default = generic +;env_default = heltec ;env_default = ttgov1 ;env_default = ttgov2 ;env_default = ttgov21 diff --git a/src/lorawan.h b/src/lorawan.h index bef8da19..d81baad2 100644 --- a/src/lorawan.h +++ b/src/lorawan.h @@ -13,5 +13,6 @@ void get_hard_deveui(uint8_t *pdeveui); void os_getDevKey(u1_t *buf); void os_getArtEui(u1_t *buf); void os_getDevEui(u1_t *buf); +void printKeys(void); #endif \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp index ec4157b9..41e018ab 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -80,9 +80,6 @@ void reset_counters() { macs_ble = 0; } -/* begin LMIC specific parts - * ------------------------------------------------------------ */ - #ifdef HAS_LORA // LMIC enhanced Pin mapping @@ -94,10 +91,6 @@ const lmic_pinmap lmic_pins = {.mosi = PIN_SPI_MOSI, .rst = RST, .dio = {DIO0, DIO1, DIO2}}; -#ifdef VERBOSE -void printKeys(void); -#endif // VERBOSE - // Get MCP 24AA02E64 hardware DEVEUI (override default settings if found) #ifdef MCP_24AA02E64_I2C_ADDRESS get_hard_deveui(buf); @@ -117,15 +110,8 @@ void lorawan_loop(void *pvParameters) { #endif // HAS_LORA -/* end LMIC specific parts - * --------------------------------------------------------------- */ - -/* beginn hardware specific parts - * -------------------------------------------------------- */ - -// Setup IRQ handler routines for button, channel rotation, send cycle´, display -// attention, enable cache: -// https://github.com/espressif/arduino-esp32/issues/855 +// Setup IRQ handler routines +// attn see https://github.com/espressif/arduino-esp32/issues/855 void IRAM_ATTR ChannelSwitchIRQ() { portENTER_CRITICAL(&timerMux); @@ -174,9 +160,6 @@ void readButton() { } #endif -/* end hardware specific parts - * -------------------------------------------------------- */ - // Wifi channel rotation task void wifi_channel_loop(void *pvParameters) { @@ -404,8 +387,8 @@ void setup() { // join network LMIC_startJoining(); - // start lmic runloop in rtos task on core 1 (note: arduino main loop runs - // on core 1, too) + // start lmic runloop in rtos task on core 1 + // (note: arduino main loop runs on core 1, too) // https://techtutorialsx.com/2017/05/09/esp32-get-task-execution-core/ ESP_LOGI(TAG, "Starting Lora task on core 1");