-
Notifications
You must be signed in to change notification settings - Fork 0
/
rc.h
67 lines (55 loc) · 2.94 KB
/
rc.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
////////////////////////////////////////////////////////////////////////////////
/// @file
/// @brief Radio Control (RC) module.
////////////////////////////////////////////////////////////////////////////////
#ifndef RC_H_
#define RC_H_
// *****************************************************************************
// ************************** System Include Files *****************************
// *****************************************************************************
// *****************************************************************************
// ************************** User Include Files *******************************
// *****************************************************************************
#include <xc.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
// *****************************************************************************
// ************************** Macros *******************************************
// *****************************************************************************
// *****************************************************************************
// ************************** Defines ******************************************
// *****************************************************************************
// *****************************************************************************
// ************************** Declarations *************************************
// *****************************************************************************
// *****************************************************************************
// ************************** Function Prototypes ******************************
// *****************************************************************************
////////////////////////////////////////////////////////////////////////////////
/// @brief Perform the RC continuous task.
///
/// This function calls module sub-functions to perform decoding of S.Bus
/// data into channel specific values, and periodic transmission of RC data
/// over Ethernet.
////////////////////////////////////////////////////////////////////////////////
void RCTask( void );
////////////////////////////////////////////////////////////////////////////////
/// @brief Get value of RC control.
///
/// @return Value of RC control variable. (true=RC,false=Normal)
///
/// This function returns the value of RC control being commanded.
////////////////////////////////////////////////////////////////////////////////
bool RCCtrlGet( void );
////////////////////////////////////////////////////////////////////////////////
/// @brief Get commanded servo values.
///
/// @param servo_val
/// Buffer to store the commanded servo values.
///
/// This function copies the commanded servo values from module data into
/// supplied buffer \p servo_val.
////////////////////////////////////////////////////////////////////////////////
void RCServoGet( uint16_t servo_val[ 10 ] );
#endif // RC_H_