ESP32-C3 RC

This commit is contained in:
2025-01-02 02:27:23 -05:00
parent d30c3e4c25
commit cd220a9bf2

View File

@@ -790,7 +790,7 @@ void app_main(void)
io_conf.pull_down_en = 0; io_conf.pull_down_en = 0;
io_conf.pull_up_en = 0; io_conf.pull_up_en = 0;
gpio_config(&io_conf); gpio_config(&io_conf);
xTaskCreate(&led_task, "LED task", 512, NULL, 5, NULL); xTaskCreate(led_task, "LED task", 512, NULL, 5, NULL);
// Configure on-board push button // Configure on-board push button
io_conf.intr_type = GPIO_INTR_POSEDGE; io_conf.intr_type = GPIO_INTR_POSEDGE;