aboutsummaryrefslogtreecommitdiff
path: root/src/stm32/main.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-04-03 16:07:28 +0200
committerlonkaars <loek@pipeframe.xyz>2023-04-03 16:07:28 +0200
commit0545586aacc06add477b6df38cd50900698f6d9a (patch)
treeefb8d86dc1343cb093ec7f7828270830cea81499 /src/stm32/main.c
parent46bf4306575fa31fccaff19f0a592f8b40dd46cb (diff)
worky but janky integration done
Diffstat (limited to 'src/stm32/main.c')
-rw-r--r--src/stm32/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stm32/main.c b/src/stm32/main.c
index d815154..fb548d8 100644
--- a/src/stm32/main.c
+++ b/src/stm32/main.c
@@ -6,8 +6,9 @@
void hh_ppu_load_tilemap() {}
void hh_loop() {
+ // TODO: call hh_ppu_vblank_interrupt on interrupt instead of manually
while (1) {
hh_ppu_vblank_interrupt();
- HAL_Delay(1e3);
+ HAL_Delay(16);
}
}