Skip to content

Commit

Permalink
Fix backward logic displaying settingIgnoreRX
Browse files Browse the repository at this point in the history
  • Loading branch information
ALittleSlow authored Mar 17, 2019
1 parent 34a4e98 commit dce3483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/OpenLCD/Setting_Control.ino
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void changeIgnore()

SerLCD.print(F("Ignore RX O"));

if (settingIgnoreRX == true)
if (settingIgnoreRX == false)
SerLCD.print(F("FF"));
else
SerLCD.print(F("N"));
Expand Down

0 comments on commit dce3483

Please sign in to comment.