14 lines
241 B
C
14 lines
241 B
C
|
#ifndef _SLEEP_H_
|
||
|
#define _SLEEP_H_
|
||
|
|
||
|
#include <util/delay.h>
|
||
|
|
||
|
void usleep(char ms); //8bit
|
||
|
void usleep_long(unsigned short int ms); //16bit
|
||
|
|
||
|
void sleep(char ms); //8bit
|
||
|
void sleep_long(uint16_t ms); //16bit
|
||
|
|
||
|
|
||
|
#endif
|