* Added NVS test sketch + test script * Added cfg.json with multiple fqbns * cfg.json missing commas fix * Changed OPI PSRAM to QSPI accordind to new HW setup. * disabled PSRAM for ESP32S3 * Reverting PSRAM changes * Remove Octal flash test Octal flash needs to be tested locally before each release.
7 lines
No EOL
282 B
Python
7 lines
No EOL
282 B
Python
def test_nvs(dut):
|
|
dut.expect('Current counter value: 0')
|
|
dut.expect('Current counter value: 1')
|
|
dut.expect('Current counter value: 2')
|
|
dut.expect('Current counter value: 3')
|
|
dut.expect('Current counter value: 4')
|
|
dut.expect('Current counter value: 5') |