-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3033eff
commit 64c6593
Showing
6 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"deploy": [ | ||
"../deploy.md" | ||
], | ||
"docs": "", | ||
"features": [ | ||
"BLE", | ||
"WiFi" | ||
], | ||
"id": "esp32", | ||
"images": [ | ||
"esp32_devkitc.jpg" | ||
], | ||
"mcu": "esp32", | ||
"product": "ESP32", | ||
"thumbnail": "", | ||
"url": "https://www.espressif.com/en/products/modules", | ||
"variants": { | ||
"idf3": "Compiled with IDF 3.x" | ||
}, | ||
"vendor": "Espressif" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
The following files are daily firmware for ESP32-based boards without external SPIRAM. | ||
|
||
This firmware is compiled using ESP-IDF v4.x. Some older releases are also provided that are compiled with ESP-IDF v3.x. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
set(SDKCONFIG_DEFAULTS | ||
boards/sdkconfig.base | ||
boards/sdkconfig.ble | ||
boards/GENERIC_16M/sdkconfig.board | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#define MICROPY_HW_BOARD_NAME "ESP32 module" | ||
#define MICROPY_HW_MCU_NAME "ESP32" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# 16 MB flash | ||
|
||
CONFIG_ESPTOOLPY_FLASHSIZE_4MB= | ||
CONFIG_ESPTOOLPY_FLASHSIZE_8MB= | ||
CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y | ||
CONFIG_ESPTOOLPY_FLASHSIZE="16MB" | ||
|
||
# Fast flash | ||
|
||
CONFIG_FLASHMODE_QIO=y | ||
CONFIG_ESPTOOLPY_FLASHFREQ_80M=y | ||
CONFIG_ESP32_REV_MIN_1=y | ||
|
||
# OTA | ||
|
||
CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE=y | ||
CONFIG_PARTITION_TABLE_CUSTOM=y | ||
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions-16MiB-ota.csv" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters