1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-24 00:35:34 +03:00

Always use rxGetChannelValue instead of rxGetRawChannelValue

This commit is contained in:
Pawel Spychalski (DzikuVx) 2020-11-25 21:33:42 +01:00
parent cb1dd8d039
commit f98f5292da
4 changed files with 3 additions and 13 deletions

View file

@ -571,7 +571,7 @@ static bool mspFcProcessOutCommand(uint16_t cmdMSP, sbuf_t *dst, mspPostProcessF
case MSP_RC:
for (int i = 0; i < rxRuntimeConfig.channelCount; i++) {
sbufWriteU16(dst, rxGetRawChannelValue(i));
sbufWriteU16(dst, rxGetChannelValue(i));
}
break;