#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
