** ledc: 9 => Group: 1, Channel: 1, Timer: 0 ** ledc: 10 => Group: 1, Channel: 2, Timer: 1 ** ledc: 11 => Group: 1, Channel: 3, Timer: 1 ** ledc: 12 => Group: 1, Channel: 4, Timer: 2 ** ledc: 13 => Group: 1, Channel: 5, Timer: 2 ** ledc: 14 => ...
Please manually run: cd esp-idf && git submodule update --init --recursive server@vDiscovery:~/esp/esp32_AT_gitee/esp-at$ cd esp-idf/cd esp-idf && git submodule update --init --recursive bash: cd: 参数太多 server@vDiscovery:~/esp/esp32_AT_gitee/esp-at$ cd esp-idf && git submod...
timer_group: timer_init(214): HW TIMER divider outside of [2, 65536] range error Does this mean that the max freq. of clock that we can get for our timer group is 40 MHz? or am I doing something wrong? WiFive Posts:3529
// Init STM32_ISR_Timer // Each STM32_ISR_Timer can service 16 different ISR-based timers STM32_ISR_Timer ISR_Timer; #define TIMER_INTERVAL_0_5S 500L #define TIMER_INTERVAL_1S 1000L #define TIMER_INTERVAL_1_5S 1500L void TimerHandler() { ISR_Timer.run(); } // In STM32, avoid...
ESP_ERROR_CHECK(esp_netif_init()); printf("Start probem begin STEP %d\n", count++); fflush(stdout); // Create default event loop that running in background ESP_ERROR_CHECK(esp_event_loop_create_default()); printf("Start probem begin STEP %d\n", count++); fflush(stdout); I also ...
println("***"); pCharacteristic->notify(); } } }; void setupBLE() { BLEDevice::init("DFRobot_ESP32"); //Create BLE device pServer = BLEDevice::createServer(); //Create BLE server pServer->setCallbacks(new MyServerCallbacks()); //Set the server's callback function pService =...
E (101) gptimer: gptimer_disable(308): timer not in enable state E (101) gptimer: gptimer_register_event_callbacks(235): timer not in init state [ 118][E][esp32-hal-timer.c:153] timerAttachInterruptFunctionalArg(): Timer Attach Interrupt failed, error num=259 E (113) gptimer: gp...
Hi everyone, I'm working with a hw timer 0 (from TMRG0), when I set the auto_reload=false, the others task that I have in my main don't run, but when I set auto_reload=true the others task run normally. So, it looks like the hw timer 0 took the control of all aplication ...
# CONFIG_CU_DIAGNOSTICS_COLOR_NEVER is not set CONFIG_CU_DIAGNOSTICS_COLOR_ALWAYS=y # CONFIG_CU_DIAGNOSTICS_COLOR_AUTO is not set # CONFIG_CU_GCC_LTO_ENABLE is not set # CONFIG_CU_GCC_STRING_1BYTE_ALIGN is not set # end of CMake Utilities # # ESP LCD TOUCH # CONFIG...
// Init SimpleTimer SimpleTimer simpleTimer; // Here is software Timer, you can do somewhat fancy stuffs without many issues. // But always avoid // 1. Long delay() it just doing nothing and pain-without-gain wasting CPU power.Plan and design your code / strategy ahead // 2. Ver...