mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 17:55:30 +03:00
Merge pull request #1194 from ProDrone/rx_sumd_32_to_16
RX - SUMD channels are received as 16 bit values instead of 32
This commit is contained in:
commit
89f7000c7a
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@
|
||||||
#define SUMD_BAUDRATE 115200
|
#define SUMD_BAUDRATE 115200
|
||||||
|
|
||||||
static bool sumdFrameDone = false;
|
static bool sumdFrameDone = false;
|
||||||
static uint32_t sumdChannels[SUMD_MAX_CHANNEL];
|
static uint16_t sumdChannels[SUMD_MAX_CHANNEL];
|
||||||
|
|
||||||
static void sumdDataReceive(uint16_t c);
|
static void sumdDataReceive(uint16_t c);
|
||||||
static uint16_t sumdReadRawRC(rxRuntimeConfig_t *rxRuntimeConfig, uint8_t chan);
|
static uint16_t sumdReadRawRC(rxRuntimeConfig_t *rxRuntimeConfig, uint8_t chan);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue