boards/esp32-devkitc: substitute `ramtest` to `mm` on defconfigs
The defconfigs that test PSRAM on ESP32 contain the `ramtest` app, but it doesn't test the memory correctly as it try to access the memory directly. The memory, however, is being used by the system's heap and `ramtest` can mess with it. Therefore, it makes sense to test using `mm` testing app.
This commit is contained in:
parent
a49a367226
commit
f7d64fec9f
|
@ -51,5 +51,5 @@ CONFIG_START_DAY=6
|
|||
CONFIG_START_MONTH=12
|
||||
CONFIG_START_YEAR=2011
|
||||
CONFIG_SYSTEM_NSH=y
|
||||
CONFIG_SYSTEM_RAMTEST=y
|
||||
CONFIG_TESTING_MM=y
|
||||
CONFIG_UART0_SERIAL_CONSOLE=y
|
||||
|
|
|
@ -53,7 +53,7 @@ CONFIG_START_DAY=6
|
|||
CONFIG_START_MONTH=12
|
||||
CONFIG_START_YEAR=2011
|
||||
CONFIG_SYSTEM_NSH=y
|
||||
CONFIG_SYSTEM_RAMTEST=y
|
||||
CONFIG_TESTING_GETPRIME=y
|
||||
CONFIG_TESTING_MM=y
|
||||
CONFIG_TESTING_OSTEST=y
|
||||
CONFIG_UART0_SERIAL_CONSOLE=y
|
||||
|
|
Loading…
Reference in New Issue