37 42
47
48
extern declare all functions
on 2:10 PM Oct 21 2025
46
47
1
2
3
4
5
6
7
8
9
10
11
#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
1
2
3
4
5
6
7
8
9
10
11
#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