13 lines
138 B
C
13 lines
138 B
C
|
|
#ifndef __DELAY_H__
|
|
#define __DELAY_H__
|
|
|
|
#include "config.h"
|
|
|
|
void DelayNs(u32 ns);
|
|
void DelayUs(u32 us);
|
|
void DelayMs(u32 ms);
|
|
|
|
|
|
#endif
|