Skip to content

Commit

Permalink
disable betaflight colored osd temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
ligenxxxx committed Nov 6, 2023
1 parent d2224ea commit 84973ff
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 84973ff

Please sign in to comment.