-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscheduler.h
37 lines (27 loc) · 1.14 KB
/
scheduler.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* @file scheduler.h
* @date 2/11/20
* @brief
* scheduler.h sets up functions for scheduling
*/
//***********************************************************************************
// Include files
//***********************************************************************************
#ifndef SCHEDULER_GUARD_H
#define SCHEDULER_GUARD_H
#include <stdint.h>
#include "em_assert.h"
#endif
//***********************************************************************************
// defined files
//***********************************************************************************
//***********************************************************************************
// global variables
//***********************************************************************************
//***********************************************************************************
// function prototypes
//***********************************************************************************
void scheduler_open(void);
void add_scheduled_event(uint32_t event);
void remove_scheduled_event(uint32_t event);
uint32_t get_scheduled_events(void);