PX4 Firmware
PX4 Autopilot Software http://px4.io
tap_esc_common.h
Go to the documentation of this file.
1 /****************************************************************************
2  *
3  * Copyright (c) 2017 PX4 Development Team. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in
13  * the documentation and/or other materials provided with the
14  * distribution.
15  * 3. Neither the name PX4 nor the names of its contributors may be
16  * used to endorse or promote products derived from this software
17  * without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  *
32  ****************************************************************************/
33 
34 /*
35  * tap_esc_common.h
36  *
37  */
38 
39 #pragma once
40 
41 #include <stdint.h>
42 
43 #include "drv_tap_esc.h"
44 
45 namespace tap_esc_common
46 {
47 /**
48  * Select tap esc responder data for serial interface by 74hct151. GPIOs to be
49  * defined in board_config.h
50  * @param sel ID of the ESC (responder) of which feedback is requested
51  */
52 void select_responder(uint8_t sel);
53 
54 /**
55  * Opens a device for use as UART.
56  * @param device UNIX path of UART device
57  * @param uart_fd file-descriptor of UART device
58  * @return 0 on success, -1 on error
59  */
60 int initialise_uart(const char *const device, int &uart_fd);
61 
62 /**
63  * Closes a device previously opened with initialise_uart().
64  * @param uart_fd file-descriptor of UART device as provided by initialise_uart()
65  * @return 0 on success, -1 on error
66  */
67 int deinitialise_uart(int &uart_fd);
68 
69 /**
70  * Enables/disables flow control for open UART device.
71  * @param uart_fd file-descriptor of UART device
72  * @param enabled Set true for enabling and false for disabling flow control
73  * @return 0 on success, -1 on error
74  */
75 int enable_flow_control(int uart_fd, bool enabled);
76 
77 /**
78  * Sends a packet to all ESCs and requests a specific ESC to respond
79  * @param uart_fd file-descriptor of UART device
80  * @param packet Packet to be sent to ESCs. CRC information will be added.
81  * @param responder ID of the ESC (responder) that should return feedback
82  * @return On success number of bytes written, on error -1
83  */
84 int send_packet(int uart_fd, EscPacket &packet, int responder);
85 
86 /**
87  * Read data from the UART into a buffer
88  * @param uart_fd file-descriptor of UART device
89  * @param uart_buf Buffer where incoming data will be stored
90  * @return 0 on success, -1 on error
91  */
92 int read_data_from_uart(int uart_fd, ESC_UART_BUF *const uart_buf);
93 
94 /**
95  * Parse feedback from an ESC
96  * @param serial_buf Buffer where incoming data will be stored
97  * @param packetdata Packet that will be populated with information from buffer
98  * @return 0 on success, -1 on error
99  */
100 int parse_tap_esc_feedback(ESC_UART_BUF *const serial_buf, EscPacket *const packetdata);
101 
102 /**
103  * Lookup-table for faster CRC computation when sending ESC packets.
104  */
105 extern const uint8_t crc_table[];
106 } /* tap_esc_common */
int send_packet(int uart_fd, EscPacket &packet, int responder)
Sends a packet to all ESCs and requests a specific ESC to respond.
int read_data_from_uart(int uart_fd, ESC_UART_BUF *const uart_buf)
Read data from the UART into a buffer.
int deinitialise_uart(int &uart_fd)
Closes a device previously opened with initialise_uart().
Namespace encapsulating all device framework classes, functions and data.
Definition: CDev.cpp:47
int enable_flow_control(int uart_fd, bool enabled)
Enables/disables flow control for open UART device.
const uint8_t crc_table[256]
Lookup-table for faster CRC computation when sending ESC packets.
int parse_tap_esc_feedback(ESC_UART_BUF *const serial_buf, EscPacket *const packetdata)
Parse feedback from an ESC.
void select_responder(uint8_t sel)
Select tap esc responder data for serial interface by 74hct151.
int initialise_uart(const char *const device, int &uart_fd)
Opens a device for use as UART.