Skip to content

Commit 1bd312d

Browse files
pi-anldpgeorge
authored andcommitted
esp32/boards/ESP32_GENERIC_C6: Add new generic esp32c6 board.
Signed-off-by: Andrew Leech <[email protected]>
1 parent 2f79854 commit 1bd312d

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"deploy": [
3+
"../deploy_c6.md"
4+
],
5+
"docs": "",
6+
"features": [
7+
"BLE",
8+
"WiFi"
9+
],
10+
"id": "esp32c6",
11+
"images": [
12+
"esp32c6_devkitmini.jpg"
13+
],
14+
"mcu": "esp32c6",
15+
"product": "ESP32-C6",
16+
"thumbnail": "",
17+
"url": "https://www.espressif.com/en/products/modules",
18+
"vendor": "Espressif"
19+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
set(IDF_TARGET esp32c6)
2+
3+
set(SDKCONFIG_DEFAULTS
4+
boards/sdkconfig.base
5+
${SDKCONFIG_IDF_VERSION_SPECIFIC}
6+
boards/sdkconfig.ble
7+
)
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// This configuration is for a generic ESP32C6 board with 4MiB (or more) of flash.
2+
3+
#define MICROPY_HW_BOARD_NAME "ESP32C6 module"
4+
#define MICROPY_HW_MCU_NAME "ESP32C6"
5+
6+
#define MICROPY_HW_ENABLE_SDCARD (0)
7+
#define MICROPY_PY_MACHINE_I2S (0)
8+
9+
// Enable UART REPL for modules that have an external USB-UART and don't use native USB.
10+
#define MICROPY_HW_ENABLE_UART_REPL (1)

0 commit comments

Comments
 (0)