diff --git a/configtool/board.py b/configtool/board.py index 1ff81b6..69fcb0d 100644 --- a/configtool/board.py +++ b/configtool/board.py @@ -448,7 +448,11 @@ class Board: fp.write("//") fp.write(defineValueFormat % (t[0], v[0])) else: - print "Value key " + t[0] + " not found in GUI." + if t[0] == 'RX_ENABLE_PIN' or t[0] == 'TX_ENABLE_PIN': + # Known to be absent in the GUI, also won't be added anytime soon. + fp.write(ln) + else: + print("Value key " + t[0] + " not found in GUI.") continue