Skip to content

Commit

Permalink
Merge pull request #175 from ligenxxxx/disable-betaflight-colored-osd…
Browse files Browse the repository at this point in the history
…-temporarily

disable betaflight colored osd temporarily
  • Loading branch information
ligenxxxx authored Nov 6, 2023
2 parents d2224ea + 84973ff commit 7b8ae5e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/msp_displayport.c
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,10 @@ uint8_t parse_displayport(uint8_t len) {
if (len == 0)
return 0;
else {
page_extend = msp_rx_buf[3] & 0x01;
if (msp_cmp_fc_variant("BTFL"))
page_extend = 0;
else
page_extend = msp_rx_buf[3] & 0x01;
state_osd = MSP_OSD_WRITE;
}
break;
Expand Down

0 comments on commit 7b8ae5e

Please sign in to comment.