27 lines
255 B
C
27 lines
255 B
C
#ifndef __CORE_DELAY_H
|
|
#define __CORE_DELAY_H
|
|
|
|
#include "stdint.h"
|
|
#include "stdbool.h"
|
|
|
|
|
|
|
|
|
|
|
|
int delay_init(void);
|
|
|
|
void delay_us(uint32_t us);
|
|
|
|
uint32_t delay_get_us(void);
|
|
|
|
int delay_check(uint32_t old,uint32_t wnd);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __CORE_DELAY_H */
|
|
|