diff --git a/source/utils.c b/source/utils.c index c3f7b84..a210d6f 100644 --- a/source/utils.c +++ b/source/utils.c @@ -54,17 +54,6 @@ u32 waitInput(void) return key; } -void mcuReboot(void) -{ - if(!ISFIRMLAUNCH && ARESCREENSINITED) clearScreens(true, true, false); - - //Ensure that all memory transfers have completed and that the data cache has been flushed - flushEntireDCache(); - - i2cWriteRegister(I2C_DEV_MCU, 0x20, 1 << 2); - while(true); -} - void mcuPowerOff(void) { if(!ISFIRMLAUNCH && ARESCREENSINITED) clearScreens(true, true, false); diff --git a/source/utils.h b/source/utils.h index bf74e1c..501de67 100644 --- a/source/utils.h +++ b/source/utils.h @@ -29,7 +29,6 @@ #define REG_TIMER_VAL(i) *(vu16 *)(0x10003000 + 4 * i) u32 waitInput(void); -void mcuReboot(void); void mcuPowerOff(void); void chrono(u32 seconds); void error(const char *message); \ No newline at end of file