microscope-ring-light-remot.../include/systick.h

12 lines
220 B
C
Raw Permalink Normal View History

#ifndef _SYSTICK_H_
#define _SYSTICK_H_
#include <stdint.h>
2022-10-22 11:57:36 +02:00
#include <stdbool.h>
void systick_wait_ms(uint32_t ms);
uint32_t systick_get_global_tick(void);
2022-10-22 11:57:36 +02:00
bool systick_get_blink_state(void);
#endif /* _SYSTICK_H_ */