MAV'RIC
mavlink_actions.h
1 /*
2  * mavlink_actions.h
3  *
4  * This file interfaces between the various parts of the system and the MAVlink downstream
5  * Put all commands here that collect data and can be scheduled for transmission
6  *
7  * Created: 21/03/2013 01:00:46
8  * Author: sfx
9  */
10 
11 
12 #ifndef MAVLINK_ACTIONS_H_
13 #define MAVLINK_ACTIONS_H_
14 
15 #include "mavlink_stream.h"
16 
17 void add_PID_parameters(void);
18 
19 void mavlink_actions_init(void);
20 
21 static inline void mavlink_actions_handle_specific_messages (mavlink_received_t* rec) {}
22 
23 void mavlink_actions_receive_message_long(mavlink_received_t* rec);
24 
25 #endif /* MAVLINK_ACTIONS_H_ */