[ion] N0101: init L1 cache after initing the external flash

This commit is contained in:
Émilie Feral
2019-04-01 10:03:56 +02:00
parent f30cbb40bf
commit edda57c334

View File

@@ -44,7 +44,6 @@ void initMPU() {
void init() {
initFPU();
initL1Cache();
initMPU();
initClocks();
@@ -65,6 +64,8 @@ void init() {
}
initPeripherals();
// Initiate L1 cache after initiating the external flash
initL1Cache();
// TODO if EPSILON_DEVICE_BENCH, run bench? See n0100
}