From 32a42dda2d0c012debf4d2de14ee635a66b0b581 Mon Sep 17 00:00:00 2001 From: Klaus K Wilting Date: Sun, 14 Oct 2018 15:17:50 +0200 Subject: [PATCH] fixed issue #160 --- src/macsniff.cpp | 2 +- src/main.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/macsniff.cpp b/src/macsniff.cpp index 52056753..b3e723ae 100644 --- a/src/macsniff.cpp +++ b/src/macsniff.cpp @@ -114,7 +114,7 @@ bool mac_add(uint8_t *paddr, int8_t rssi, bool sniff_type) { } // added // Log scan result - ESP_LOGD(TAG, + ESP_LOGV(TAG, "%s %s RSSI %ddBi -> MAC %s -> Hash %04X -> WiFi:%d BLTH:%d -> " "%d Bytes left", added ? "new " : "known", diff --git a/src/main.cpp b/src/main.cpp index 6346a71f..c1648a8a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -29,12 +29,12 @@ Task Core Prio Purpose ==================================================================================== wifiloop 0 4 rotates wifi channels ledloop 0 3 blinks LEDs -gpsloop 0 2 reads data from GPS over serial or i2c spiloop 0 2 reads/writes data on spi interface IDLE 0 0 ESP32 arduino scheduler -> runs wifi sniffer looptask 1 1 arduino core -> runs the LMIC LoRa stack irqhandler 1 1 executes tasks triggered by irq +gpsloop 1 2 reads data from GPS over serial or i2c IDLE 1 0 ESP32 arduino scheduler ESP32 hardware timers @@ -289,7 +289,7 @@ void setup() { (void *)1, // parameter of the task 2, // priority of the task &GpsTask, // task handle - 0); // CPU core + 1); // CPU core #endif #ifdef HAS_SPI