10 lines
163 B
C
10 lines
163 B
C
#ifndef _SYSTICK_H_
|
|
#define _SYSTICK_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void systick_wait_ms(uint32_t ms);
|
|
uint32_t systick_get_global_tick(void);
|
|
|
|
#endif /* _SYSTICK_H_ */
|