Added systick handler so lock screen works.

This commit is contained in:
Dual Tachyon 2023-08-13 23:54:34 +01:00
parent 4a6962e41d
commit 9220893a96

View File

@ -16,6 +16,7 @@
#include "ARMCM0.h"
#include "driver/systick.h"
#include "misc.h"
// 0x20000324
static uint32_t gTickMultiplier;
@ -51,3 +52,8 @@ void SYSTICK_DelayUs(uint32_t Delay)
} while (i < Delay * gTickMultiplier);
}
void SystickHandler(void)
{
gMaybeVsync = 1;
}