mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 11:10:14 +01:00
The ESP32-P4 currently comes in three revisions (0.0, 0.1 and 1.0) and all of them are out in the wild. Even though the IDF defaults to a minimum of 0.1 we would like to support as many as possible, so configure MicroPython to work down to revision 0.0. The firmware only grows by 32 bytes when enabling this option. Signed-off-by: Damien George <damien@micropython.org>
19 lines
420 B
Plaintext
19 lines
420 B
Plaintext
# Select the minimum chip revision to cover all possible boards.
|
|
CONFIG_ESP32P4_REV_MIN_0=y
|
|
|
|
# Flash
|
|
CONFIG_FLASHMODE_QIO=y
|
|
CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y
|
|
|
|
# Memory
|
|
CONFIG_SPIRAM=y
|
|
CONFIG_SPIRAM_MEMTEST=
|
|
CONFIG_SPIRAM_IGNORE_NOTFOUND=y
|
|
CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC=y
|
|
CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=50768
|
|
|
|
# ULP: not fixed
|
|
CONFIG_SOC_ULP_SUPPORTED=n
|
|
CONFIG_ULP_COPROC_ENABLED=n
|
|
CONFIG_ULP_COPROC_TYPE_FSM=n
|