You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
262 B
7 lines
262 B
extern volatile uint32_t sys_tick_counter;
|
|
|
|
void sys_tick_init(void);
|
|
void SysTick_Handler(void);
|
|
void sys_tick_delay_ms(uint32_t delay_ms);
|
|
void sys_tick_wait_at_least(uint32_t stc, uint32_t delay_ms);
|
|
bool sys_tick_has_passed(uint32_t stc, uint32_t delay_ms);
|
|
|