Browse Source
For rev 7+ boards with 16MB of flash. Partition table allocates 2.4 MiB for MicroPython, 11 MiB for the filesystem.pull/7611/head
Patrick Van Oosterwijck
3 years ago
committed by
Damien George
4 changed files with 44 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
set(SDKCONFIG_DEFAULTS |
|||
boards/sdkconfig.base |
|||
boards/sdkconfig.ble |
|||
boards/sdkconfig.240mhz |
|||
boards/SIL_WESP32/sdkconfig.board |
|||
) |
|||
|
|||
if(NOT MICROPY_FROZEN_MANIFEST) |
|||
set(MICROPY_FROZEN_MANIFEST ${MICROPY_PORT_DIR}/boards/manifest.py) |
|||
endif() |
@ -0,0 +1,2 @@ |
|||
#define MICROPY_HW_BOARD_NAME "Silicognition wESP32" |
|||
#define MICROPY_HW_MCU_NAME "ESP32" |
@ -0,0 +1,22 @@ |
|||
# 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" |
|||
|
|||
# Network name |
|||
|
|||
CONFIG_LWIP_LOCAL_HOSTNAME="wESP32" |
Can't render this file because it has a wrong number of fields in line 4.
|
Loading…
Reference in new issue