summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/projects/embed/esp32/blink/boards/esp32s3/board.h8
-rw-r--r--tests/projects/embed/esp32/blink/src/main.c2
2 files changed, 1 insertions, 9 deletions
diff --git a/tests/projects/embed/esp32/blink/boards/esp32s3/board.h b/tests/projects/embed/esp32/blink/boards/esp32s3/board.h
deleted file mode 100644
index 91e7617cc..000000000
--- a/tests/projects/embed/esp32/blink/boards/esp32s3/board.h
+++ /dev/null
@@ -1,8 +0,0 @@
-// the board configuration of esp32s3, it's selected by the `board` option
-//
-// @note it's the addressable rgb led (ws2812) on the devkit, a plain gpio toggle
-// does not light it up, set it to a real led pin of your board
-//
-#pragma once
-
-#define LED_GPIO 48
diff --git a/tests/projects/embed/esp32/blink/src/main.c b/tests/projects/embed/esp32/blink/src/main.c
index 5f384985e..b51e3b67b 100644
--- a/tests/projects/embed/esp32/blink/src/main.c
+++ b/tests/projects/embed/esp32/blink/src/main.c
@@ -1,7 +1,7 @@
// blink the led of the board and print a heartbeat
//
// the led pin comes from `boards/<board>/board.h`, it's selected by the board option,
-// e.g. xmake f --board=esp32s3
+// e.g. xmake f --board=esp32c3
//
// @note the entry is the esp-idf native `void app_main(void)`, and we print with
// `esp_rom_printf`, it writes to the rom console, which is the usb port on the