ESP32-C3 RC

This commit is contained in:
2025-01-02 02:46:16 -05:00
parent 6a36afb7c3
commit e28d4cb022
5 changed files with 4 additions and 4 deletions

View File

View File

@@ -1 +1 @@
ref: refs/heads/main
c9763f62dd00c887a1a8fafe388db868a7e44069

View File

@@ -18,7 +18,7 @@ set(HEAD_HASH)
file(READ "/home/abobkov/MyProjects/ESP-Nodes/ESP-IDF_Robot/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
set(GIT_DIR "/home/abobkov/MyProjects/ESP-Nodes/.git")
set(GIT_DIR "/home/abobkov/esp/esp-idf/.git")
# handle git-worktree
if(EXISTS "${GIT_DIR}/commondir")
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)

View File

@@ -1 +1 @@
fb572f48befe9764721895ac341b20af3279b871
c9763f62dd00c887a1a8fafe388db868a7e44069

View File

@@ -793,7 +793,7 @@ void app_main(void)
gpio_reset_pin(BLINK_GPIO);
gpio_set_direction(BLINK_GPIO, GPIO_MODE_OUTPUT);
//xTaskCreate(led_task, "LED task", 1024, NULL, 5, NULL);
//xTaskCreate(led_task, "LED", 1024, NULL, 5, &led_task_handle);
xTaskCreate(led_task, "LED", 1024, NULL, 15, NULL);
// Configure on-board push button
io_conf.intr_type = GPIO_INTR_POSEDGE;