Skip to content

Commit 7357fc5

Browse files
JosipKucidpgeorge
authored andcommitted
esp32/boards/SOLDERED_NULA_MINI: Add new board definition.
Add support for the upcoming Soldered NULA Mini ESP32C6 board by Soldered Electronics. Signed-off-by: Josip Šimun Kuči <[email protected]>
1 parent bdf7613 commit 7357fc5

File tree

4 files changed

+48
-0
lines changed

4 files changed

+48
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"deploy": [
3+
"../deploy.md"
4+
],
5+
"deploy_options": {
6+
"flash_offset": "0"
7+
},
8+
"docs": "",
9+
"features": [
10+
"BLE",
11+
"WiFi",
12+
"USB-C",
13+
"JST-PH"
14+
],
15+
"images": [
16+
"soldered-nula-mini-esp32c6.jpg"
17+
],
18+
"mcu": "esp32c6",
19+
"product": "NULA Mini",
20+
"thumbnail": "",
21+
"url": "https://soldered.com/product/nula-mini-esp32-c6/",
22+
"vendor": "Soldered Electronics"
23+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
set(IDF_TARGET esp32c6)
2+
3+
set(SDKCONFIG_DEFAULTS
4+
boards/sdkconfig.base
5+
boards/sdkconfig.riscv
6+
boards/sdkconfig.c6
7+
boards/sdkconfig.ble
8+
)
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 "Soldered NULA Mini"
4+
#define MICROPY_HW_MCU_NAME "ESP32C6"
5+
6+
// Enable UART REPL for modules that have an external USB-UART and don't use native USB.
7+
#define MICROPY_HW_ENABLE_UART_REPL (1)
8+
9+
#define MICROPY_HW_I2C0_SCL (7)
10+
#define MICROPY_HW_I2C0_SDA (6)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
IO2,GPIO2
2+
IO3,GPIO3
3+
IO4,GPIO4
4+
IO5,GPIO5
5+
IO18,GPIO18
6+
IO19,GPIO19
7+
USER_BUTTON,GPIO9

0 commit comments

Comments
 (0)