blescan.cpp: removed delay in bt_loop task

This commit is contained in:
Klaus K Wilting 2018-04-15 14:06:25 +02:00
parent 34d32df248
commit 77dc71ed13
2 changed files with 3 additions and 3 deletions

View File

@ -75,9 +75,9 @@ lib_deps =
U8g2
build_flags =
;set log level, we need build_flag for this, otherwise we can't use ESP_LOGx in arduino framework
-DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_INFO
; -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_INFO
; -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE
; -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_NONE
-DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_NONE
; -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
;override lora settings from LMiC library in lmic/config.h and use main.h instead
-D_lmic_config_h_

View File

@ -280,7 +280,7 @@ void bt_loop(void *ignore)
while(1)
{
vTaskDelay(500);
//vTaskDelay(500);
yield();
}