47 | 48 |
|
|
| #ifndef ASLEEP_H |
| #define ASLEEP_H |
| #include <stdbool.h> |
| #include "task.h" |
|
| extern void ASleep_StartSystem(); |
| extern bool ASleep(float delay, void **value); |
| extern void ASleep_StopSystem(); |
|
| #endif |
|
|
|
|
|
| #ifndef ASLEEP_H |
| #define ASLEEP_H |
| #include <stdbool.h> |
| #include "task.h" |
|
| extern void ASleep_StartSystem(void); |
| extern bool ASleep(float delay, void **value); |
| extern void ASleep_StopSystem(void); |
|
| #endif |
|
|
|