-
Notifications
You must be signed in to change notification settings - Fork 0
/
vn100.h
42 lines (33 loc) · 1.88 KB
/
vn100.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
////////////////////////////////////////////////////////////////////////////////
/// @file
/// @brief Vector Navigation 100 (VN-100) driver.
////////////////////////////////////////////////////////////////////////////////
#ifndef VN100_H_
#define VN100_H_
// *****************************************************************************
// ************************** System Include Files *****************************
// *****************************************************************************
#include <xc.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
// *****************************************************************************
// ************************** User Include Files *******************************
// *****************************************************************************
// *****************************************************************************
// ************************** Defines ******************************************
// *****************************************************************************
// *****************************************************************************
// ************************** Declarations *************************************
// *****************************************************************************
// *****************************************************************************
// ************************** Function Prototypes ******************************
// *****************************************************************************
////////////////////////////////////////////////////////////////////////////////
/// @brief VN100 periodic task.
///
/// This function manages tasks to initialize the VN100, read VN100 registers,
/// and transmit the read VN100 data over Ethernet.
////////////////////////////////////////////////////////////////////////////////
void VN100Task( void );
#endif // VN100_H_