1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

adjust the buffer size of parse context

This commit is contained in:
azol 2020-09-30 14:06:36 +08:00
parent 420764490a
commit 365ed0a228

View file

@ -154,7 +154,7 @@ typedef struct {
typedef struct {
uint8_t command;
uint8_t data[255];
uint8_t data[RCDEVICE_PROTOCOL_MAX_DATA_SIZE - 1];
uint8_t dataLength;
} runcamDeviceRequest_t;