File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed
ports/esp32/boards/ESP32_GENERIC_C6 Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
1
+ set (IDF_TARGET esp32c6 )
2
+
3
+ set (SDKCONFIG_DEFAULTS
4
+ boards/sdkconfig.base
5
+ ${SDKCONFIG_IDF_VERSION_SPECIFIC}
6
+ boards/sdkconfig.ble
7
+ )
Original file line number Diff line number Diff line change
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)
You can’t perform that action at this time.
0 commit comments