Skip to content

Commit

Permalink
Update SerialMAVLINK.ino
Browse files Browse the repository at this point in the history
default settings:
Use raw throttle value when disarmed
Use mavlink throttle when armed
  • Loading branch information
ShikOfTheRa committed Feb 8, 2019
1 parent 7c61351 commit ba252a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MW_OSD/SerialMAVLINK.ino
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@ void serialMAVCheck() {
reverseChannels();
#endif // TX_PRYT
#ifdef MAV_ALT_THROTTLE
MwRcData[THROTTLESTICK] = mw_mav.throttle;
if (armed)
MwRcData[THROTTLESTICK] = mw_mav.throttle;
#endif // MAV_ALT_THROTTLE
handleRawRC();
break;
Expand Down

0 comments on commit ba252a9

Please sign in to comment.