2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
22 * Driver for IBUS (Flysky) receiver
23 * - initial implementation for MultiWii by Cesco/Pl¸schi
24 * - implementation for BaseFlight by Andreas (fiendie) Tacke
25 * - ported to CleanFlight by Konstantin (digitalentity) Sharlaimov
34 #ifdef USE_SERIALRX_IBUS
38 #include "common/utils.h"
40 #include "drivers/serial.h"
41 #include "drivers/serial_uart.h"
42 #include "drivers/time.h"
44 #include "io/serial.h"
47 #include "telemetry/telemetry.h"
52 #include "telemetry/ibus.h"
53 #include "telemetry/ibus_shared.h"
55 #define IBUS_MAX_CHANNEL 18
56 //In AFHDS there is 18 channels encoded in 14 slots (each slot is 2 byte long)
57 #define IBUS_MAX_SLOTS 14
58 #define IBUS_BUFFSIZE 32
59 #define IBUS_MODEL_IA6B 0
60 #define IBUS_MODEL_IA6 1
61 #define IBUS_FRAME_GAP 500
63 #define IBUS_BAUDRATE 115200
64 #define IBUS_TELEMETRY_PACKET_LENGTH (4)
65 #define IBUS_SERIAL_RX_PACKET_LENGTH (32)
67 static uint8_t ibusModel
;
68 static uint8_t ibusSyncByte
;
69 static uint8_t ibusFrameSize
;
70 static uint8_t ibusChannelOffset
;
71 static uint8_t rxBytesToIgnore
;
72 static uint16_t ibusChecksum
;
74 static bool ibusFrameDone
= false;
75 static uint32_t ibusChannelData
[IBUS_MAX_CHANNEL
];
77 static uint8_t ibus
[IBUS_BUFFSIZE
] = { 0, };
78 static timeUs_t lastFrameTimeUs
= 0;
80 static bool isValidIa6bIbusPacketLength(uint8_t length
)
82 return (length
== IBUS_TELEMETRY_PACKET_LENGTH
) || (length
== IBUS_SERIAL_RX_PACKET_LENGTH
);
86 // Receive ISR callback
87 static void ibusDataReceive(uint16_t c
, void *data
)
91 static timeUs_t ibusTimeLast
;
92 static uint8_t ibusFramePosition
;
94 const timeUs_t now
= microsISR();
96 if (cmpTimeUs(now
, ibusTimeLast
) > IBUS_FRAME_GAP
) {
97 ibusFramePosition
= 0;
99 } else if (rxBytesToIgnore
) {
106 if (ibusFramePosition
== 0) {
107 if (isValidIa6bIbusPacketLength(c
)) {
108 ibusModel
= IBUS_MODEL_IA6B
;
111 ibusChannelOffset
= 2;
112 ibusChecksum
= 0xFFFF;
113 } else if ((ibusSyncByte
== 0) && (c
== 0x55)) {
114 ibusModel
= IBUS_MODEL_IA6
;
117 ibusChecksum
= 0x0000;
118 ibusChannelOffset
= 1;
119 } else if (ibusSyncByte
!= c
) {
124 ibus
[ibusFramePosition
] = (uint8_t)c
;
126 if (ibusFramePosition
== ibusFrameSize
- 1) {
127 lastFrameTimeUs
= now
;
128 ibusFrameDone
= true;
135 static bool isChecksumOkIa6(void)
139 uint16_t chksum
, rxsum
;
140 chksum
= ibusChecksum
;
141 rxsum
= ibus
[ibusFrameSize
- 2] + (ibus
[ibusFrameSize
- 1] << 8);
142 for (i
= 0, offset
= ibusChannelOffset
; i
< IBUS_MAX_SLOTS
; i
++, offset
+= 2) {
143 chksum
+= ibus
[offset
] + (ibus
[offset
+ 1] << 8);
145 return chksum
== rxsum
;
149 static bool checksumIsOk(void) {
150 if (ibusModel
== IBUS_MODEL_IA6
) {
151 return isChecksumOkIa6();
153 return isChecksumOkIa6b(ibus
, ibusFrameSize
);
158 static void updateChannelData(void) {
161 for (i
= 0, offset
= ibusChannelOffset
; i
< IBUS_MAX_SLOTS
; i
++, offset
+= 2) {
162 ibusChannelData
[i
] = ibus
[offset
] + ((ibus
[offset
+ 1] & 0x0F) << 8);
164 //latest IBUS recievers are using prviously not used 4 bits on every channel to incresse total channel count
165 for (i
= IBUS_MAX_SLOTS
, offset
= ibusChannelOffset
+ 1; i
< IBUS_MAX_CHANNEL
; i
++, offset
+= 6) {
166 ibusChannelData
[i
] = ((ibus
[offset
] & 0xF0) >> 4) | (ibus
[offset
+ 2] & 0xF0) | ((ibus
[offset
+ 4] & 0xF0) << 4);
170 static uint8_t ibusFrameStatus(rxRuntimeState_t
*rxRuntimeState
)
172 UNUSED(rxRuntimeState
);
174 uint8_t frameStatus
= RX_FRAME_PENDING
;
176 if (!ibusFrameDone
) {
180 ibusFrameDone
= false;
182 if (checksumIsOk()) {
183 if (ibusModel
== IBUS_MODEL_IA6
|| ibusSyncByte
== IBUS_SERIAL_RX_PACKET_LENGTH
) {
185 frameStatus
= RX_FRAME_COMPLETE
;
186 rxRuntimeState
->lastRcFrameTimeUs
= lastFrameTimeUs
;
187 #if defined(USE_TELEMETRY) && defined(USE_TELEMETRY_IBUS)
189 rxBytesToIgnore
= respondToIbusRequest(ibus
);
198 static float ibusReadRawRC(const rxRuntimeState_t
*rxRuntimeState
, uint8_t chan
)
200 UNUSED(rxRuntimeState
);
201 return ibusChannelData
[chan
];
204 bool ibusInit(const rxConfig_t
*rxConfig
, rxRuntimeState_t
*rxRuntimeState
)
209 rxRuntimeState
->channelCount
= IBUS_MAX_CHANNEL
;
210 rxRuntimeState
->rxRefreshRate
= 20000; // TODO - Verify speed
212 rxRuntimeState
->rcReadRawFn
= ibusReadRawRC
;
213 rxRuntimeState
->rcFrameStatusFn
= ibusFrameStatus
;
214 rxRuntimeState
->rcFrameTimeUsFn
= rxFrameTimeUs
;
216 const serialPortConfig_t
*portConfig
= findSerialPortConfig(FUNCTION_RX_SERIAL
);
222 bool portShared
= isSerialPortShared(portConfig
, FUNCTION_RX_SERIAL
, FUNCTION_TELEMETRY_IBUS
);
224 bool portShared
= false;
229 serialPort_t
*ibusPort
= openSerialPort(portConfig
->identifier
,
234 portShared
? MODE_RXTX
: MODE_RX
,
235 (rxConfig
->serialrx_inverted
? SERIAL_INVERTED
: 0) | (rxConfig
->halfDuplex
|| portShared
? SERIAL_BIDIR
: 0)
238 #if defined(USE_TELEMETRY) && defined(USE_TELEMETRY_IBUS)
240 initSharedIbusTelemetry(ibusPort
);
244 return ibusPort
!= NULL
;