46 | 47 |
|
|
| #ifndef ASLEEP_H |
| #define ASLEEP_H |
| #include <stdbool.h> |
| #include "task.h" |
|
| void ASleep_StartSystem(); |
| bool ASleep(float delay, void **value); |
| void ASleep_StopSystem(); |
|
| #endif |
|
|
|
|
|
| #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 |
|
|
|