ESP32-C3 RC

This commit is contained in:
2025-01-02 02:48:38 -05:00
parent feced714f7
commit 9cc189b7b9
7 changed files with 6545 additions and 6537 deletions

View File

@@ -741,7 +741,7 @@ static void led_task (void *arg) {
while(1)
{
ESP_LOGI(TAG, "Turning the LED %s!", s_led_state == true ? "ON" : "OFF");
gpio_set_level(BLINK_GPIO, s_led_state);//s_led_state);
gpio_set_level(BLINK_GPIO, s_led_state);
vTaskDelay(CONFIG_BLINK_PERIOD / portTICK_PERIOD_MS);
s_led_state = !s_led_state;
}