12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
-
- #ifndef MBED_SLEEP_API_H
- #define MBED_SLEEP_API_H
-
- #include "device.h"
-
- #if DEVICE_SLEEP
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void sleep(void);
-
-
- void deepsleep(void);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-
- #endif
|