NXDT-related updates

This commit is contained in:
Dmitry Isaenko 2020-08-27 13:13:28 +03:00
parent ab1b5b1820
commit ba4afa0046
8 changed files with 400 additions and 45 deletions

View file

@ -50,7 +50,12 @@ public class NxdtTask extends CancellableRunnable {
DeviceHandle handler = usbConnect.getNsHandler();
new NxdtUsbAbi1(handler, logPrinter, saveToLocation, this);
try {
new NxdtUsbAbi1(handler, logPrinter, saveToLocation, this);
}
catch (Exception e){
logPrinter.print(e.getMessage(), EMsgType.FAIL);
}
logPrinter.print(".:: Complete ::.", EMsgType.PASS);