mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 21:05:35 +03:00
SUMD channels are received as 16 bit values instead of 32
Preserve 32 bytes of RAM.
This commit is contained in:
parent
26ab91687f
commit
aaa7c7c5d3
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