Browse Source
Tested to work on an ESP32-MINI-1, which is a single core ESP32-U4DWH. Signed-off-by: Clayton Cronk <awesomecronk@gmail.com>pull/10526/head
Clayton Cronk
3 years ago
committed by
Damien George
6 changed files with 31 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||||
|
{ |
||||
|
"deploy": [ |
||||
|
"../deploy.md" |
||||
|
], |
||||
|
"docs": "", |
||||
|
"features": [ |
||||
|
"BLE", |
||||
|
"WiFi" |
||||
|
], |
||||
|
"id": "esp32-unicore", |
||||
|
"images": [ |
||||
|
"generic_unicore.jpg" |
||||
|
], |
||||
|
"mcu": "esp32", |
||||
|
"product": "ESP32 Unicore", |
||||
|
"thumbnail": "", |
||||
|
"url": "https://www.espressif.com/en/products/modules", |
||||
|
"vendor": "Espressif" |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
The following files are daily firmware for single-core ESP32-based boards without external SPIRAM. |
@ -0,0 +1,5 @@ |
|||||
|
set(SDKCONFIG_DEFAULTS |
||||
|
boards/sdkconfig.base |
||||
|
boards/sdkconfig.ble |
||||
|
boards/GENERIC_UNICORE/sdkconfig.board |
||||
|
) |
@ -0,0 +1,2 @@ |
|||||
|
#define MICROPY_HW_BOARD_NAME "ESP32 Unicore module" |
||||
|
#define MICROPY_HW_MCU_NAME "ESP32-UNICORE" |
@ -0,0 +1 @@ |
|||||
|
CONFIG_FREERTOS_UNICORE=y |
Loading…
Reference in new issue