Default Native trackball to NC

This commit is contained in:
Jonathan Bennett 2025-06-12 15:25:34 -05:00
parent a9e072d74f
commit df2f70df8f

View File

@ -175,6 +175,11 @@ void portduinoSetup()
settingsMap[ascii_logs] = !isatty(1); settingsMap[ascii_logs] = !isatty(1);
settingsMap[displayPanel] = no_screen; settingsMap[displayPanel] = no_screen;
settingsMap[touchscreenModule] = no_touchscreen; settingsMap[touchscreenModule] = no_touchscreen;
settingsMap[tbUpPin] = RADIOLIB_NC;
settingsMap[tbDownPin] = RADIOLIB_NC;
settingsMap[tbLeftPin] = RADIOLIB_NC;
settingsMap[tbRightPin] = RADIOLIB_NC;
settingsMap[tbPressPin] = RADIOLIB_NC;
YAML::Node yamlConfig; YAML::Node yamlConfig;