1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 21:05:35 +03:00

Fix MSP code in switch for MSP_SET_TX_INFO

Case was handling MSP_TX_INFO which is an out command and already
handled in mspProcessOutCommand. This case should handle MSP_SET_TX_INFO
This commit is contained in:
Alberto García Hierro 2017-11-28 13:15:33 +00:00
parent a0c672ba69
commit 59f8ee0d15

View file

@ -1993,7 +1993,7 @@ static mspResult_e mspProcessInCommand(uint8_t cmdMSP, sbuf_t *src)
break;
#endif
case MSP_TX_INFO:
case MSP_SET_TX_INFO:
setRssiMsp(sbufReadU8(src));
break;