basic hw in the loop - pwm self validation #2028

This commit is contained in:
rusefillc 2020-12-12 17:30:59 -05:00
parent aaef77fd8a
commit 6cedf61971
1 changed files with 1 additions and 2 deletions

View File

@ -266,8 +266,7 @@ public class StartupFrame {
}
private void runFunctionalHardwareTest() {
String autoDetectedPort = PortDetector.autoDetectPort(null);
boolean isSuccess = RealHwTest.runHardwareTest(autoDetectedPort);
boolean isSuccess = RealHwTest.runHardwareTest();
JOptionPane.showMessageDialog(null, "Function test passed: " + isSuccess + "\nSee log folder for details.");
}
};