SDRAM test updates.

* Make SDRAM test cache-aware.
* Add flag to control SDRAM test.
* Re-enable test for all boards.
This commit is contained in:
iabdalkader 2020-11-16 00:44:26 +02:00
parent 11d7cde25b
commit 04c25f94ca
2 changed files with 5 additions and 1 deletions

@ -1 +1 @@
Subproject commit 80d8cb56882a3e723f71258f2dc782919091c239
Subproject commit 66ef64e97712a80d02f072706c2e88513379a0f3

View File

@ -444,6 +444,10 @@ int main(void)
sdram_ok = sdram_init();
#endif
#if MICROPY_HW_SDRAM_STARTUP_TEST
sdram_test(MICROPY_HW_SDRAM_TEST_EXHAUSTIVE);
#endif
// Basic sub-system init
led_init();
pendsv_init();