mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-23 16:25:26 +03:00
equal instead >=
This commit is contained in:
parent
a1509a7bf6
commit
fa8550f6ab
1 changed files with 1 additions and 1 deletions
|
@ -2328,7 +2328,7 @@ static mspResult_e mspFcProcessInCommand(uint16_t cmdMSP, sbuf_t *src)
|
|||
#ifdef USE_BLACKBOX
|
||||
case MSP2_SET_BLACKBOX_CONFIG:
|
||||
// Don't allow config to be updated while Blackbox is logging
|
||||
if ((dataSize >= 9) && blackboxMayEditConfig()) {
|
||||
if ((dataSize == 9) && blackboxMayEditConfig()) {
|
||||
blackboxConfigMutable()->device = sbufReadU8(src);
|
||||
blackboxConfigMutable()->rate_num = sbufReadU16(src);
|
||||
blackboxConfigMutable()->rate_denom = sbufReadU16(src);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue