1 contributor
11 lines196 bytes
1#ifndef ASLEEP_H
2#define ASLEEP_H
3#include <stdbool.h>
4#include "task.h"
5
6extern void ASleep_StartSystem();
7extern bool ASleep(float delay, void **value);
8extern void ASleep_StopSystem();
9
10#endif
11