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

tested and working

increase crsf frame timeout and msp tlm buffer sizes

addresses comments
This commit is contained in:
AlessandroAU 2022-01-03 09:39:40 +10:00 committed by Alessandro Carcione
parent a253fe414e
commit 401d052748
5 changed files with 9 additions and 4 deletions

View file

@ -20,8 +20,8 @@
#pragma once
#define MSP_TLM_INBUF_SIZE 128
#define MSP_TLM_OUTBUF_SIZE 128
#define MSP_TLM_INBUF_SIZE MSP_PORT_INBUF_SIZE
#define MSP_TLM_OUTBUF_SIZE MSP_PORT_OUTBUF_SIZE_MIN
// type of function to send MSP response chunk over telemetry.
typedef void (*mspResponseFnPtr)(uint8_t *payload, const uint8_t payloadSize);