MAV'RIC
boardsupport.h
1 /*
2  * boardsupport.h
3  *
4  * Created: 20/03/2013 12:14:04
5  * Author: sfx
6  *
7  * A place for all central data structures, system-specific initialisation and access methods.
8  * To do: Maybe should be renamed - system_support.h ?
9  */
10 
11 
12 #ifndef BOARDSUPPORT_H_
13 #define BOARDSUPPORT_H_
14 
15 #include "central_data.h"
16 
17 
18 
19 void boardsupport_init(central_data_t *central_data);
20 
21 
22 #endif /* BOARDSUPPORT_H_ */
Definition: central_data.h:52