Skip to content

Commit

Permalink
Merge pull request #197 from ligenxxxx/fix-inav-uart-connection
Browse files Browse the repository at this point in the history
fix inav uart connection timeout
  • Loading branch information
ligenxxxx authored Apr 8, 2024
2 parents 5d03f35 + 3816938 commit 2543d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/msp_displayport.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void msp_set_inav_osd_canvas(void);
void parse_get_osd_canvas(void);

void msp_tx(uint8_t c) {
if (msp_tx_en)
if (msp_tx_en || seconds > 3)
RS_tx(c);
}

Expand Down

0 comments on commit 2543d13

Please sign in to comment.