mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-21 18:06:16 +01:00
11 lines
167 B
C
11 lines
167 B
C
#ifndef _SLEEP_H_
|
|
#define _SLEEP_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
void sleepForMsec(uint32_t msec);
|
|
void sleepTillInt(void); //assumes you left only one int enabled!
|
|
|
|
#endif
|