Fix rebooting on firmlaunch

This commit is contained in:
Aurora 2016-09-19 17:54:11 +02:00
parent e444b587cf
commit f7156f2ff2

View File

@ -61,7 +61,7 @@ void mcuReboot(void)
//Ensure that all memory transfers have completed and that the data cache has been flushed //Ensure that all memory transfers have completed and that the data cache has been flushed
flushEntireDCache(); flushEntireDCache();
i2cWriteRegister(I2C_DEV_MCU, 0x20, 1 << 2); i2cWriteRegister(I2C_DEV_MCU, 0x20, 1 << 1);
while(true); while(true);
} }