25 lines
182 B
C
25 lines
182 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);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __CORE_DELAY_H */
|
|
|