diff options
Diffstat (limited to 'project/Core/Src/System')
| -rw-r--r-- | project/Core/Src/System/systick.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/project/Core/Src/System/systick.c b/project/Core/Src/System/systick.c index c18707e..f9e2470 100644 --- a/project/Core/Src/System/systick.c +++ b/project/Core/Src/System/systick.c @@ -1,4 +1,5 @@ #include "systick.h" +#include "player_actions.h" systick_t *get_systick() { return (systick_t *) 0xE000E010; @@ -59,7 +60,7 @@ int check_systick() { static uint32_t count = 0; void SysTick_Handler() { - SysTick_Handler2(count++); + player_action_tick(count++); } uint32_t systick_get_count() { |
