9#include "stm32f446xx.h"
uint32_t systickGetMillis(void)
Get the current system uptime in milliseconds.
Definition systick.c:65
void systickDelayMs(int delay)
Busy-wait delay for a specified number of milliseconds.
Definition systick.c:79
void SysTick_Handler(void)
SysTick interrupt handler called every 1 millisecond.
Definition systick.c:37
void systick_init(void)
Initialize the SysTick timer for 1ms tick interrupts.
Definition systick.c:49