13 lines
137 B
C
13 lines
137 B
C
|
|
||
|
#ifndef _DELAY__H_
|
||
|
#define _DELAY__H_
|
||
|
|
||
|
#include "main.h"
|
||
|
#include "tim.h"
|
||
|
|
||
|
void delay_init(void);
|
||
|
|
||
|
void delay_us(uint32_t us);
|
||
|
|
||
|
#endif
|