From f7156f2ff2f29a9eab5b74520cf96890ec94a44f Mon Sep 17 00:00:00 2001 From: Aurora Date: Mon, 19 Sep 2016 17:54:11 +0200 Subject: [PATCH] Fix rebooting on firmlaunch --- source/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utils.c b/source/utils.c index b4e2d42..3addfc8 100644 --- a/source/utils.c +++ b/source/utils.c @@ -61,7 +61,7 @@ void mcuReboot(void) //Ensure that all memory transfers have completed and that the data cache has been flushed flushEntireDCache(); - i2cWriteRegister(I2C_DEV_MCU, 0x20, 1 << 2); + i2cWriteRegister(I2C_DEV_MCU, 0x20, 1 << 1); while(true); }