-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask.h
46 lines (31 loc) · 1.33 KB
/
task.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
38
39
40
41
42
43
/******************************************************************************
* Copyright (C) 2017 by LNLS - Brazilian Synchrotron Light Laboratory
*
* Redistribution, modification or use of this software in source or binary
* forms is permitted as long as the files maintain this copyright. LNLS and
* the Brazilian Center for Research in Energy and Materials (CNPEM) are not
* liable for any misuse of this material.
*
*****************************************************************************/
/**
* @file task.h
* @brief Brief description of module
*
* Detailed description
*
* @author joao.rosa
* @date 6 de nov de 2017
*
*/
/////////////////////////////////////////////////////////////////////////////////////////////
#ifndef TASK_H_
#define TASK_H_
/////////////////////////////////////////////////////////////////////////////////////////////
extern void task_100_us(void);
/////////////////////////////////////////////////////////////////////////////////////////////
void task_1_ms(void);
/////////////////////////////////////////////////////////////////////////////////////////////
extern void BoardTask(void);
/////////////////////////////////////////////////////////////////////////////////////////////
#endif /* TASK_H_ */
/////////////////////////////////////////////////////////////////////////////////////////////