v0.8 GoldLeaf v0.5 support. Optional. Updated since v0.5.2.

This commit is contained in:
Dmitry Isaenko 2019-09-26 05:15:37 +03:00
parent 1d0a6086de
commit bdb91b0e0a
13 changed files with 614 additions and 9 deletions

View file

@ -54,8 +54,10 @@ public class UsbCommunications extends Task<Void> {
if (protocol.equals("TinFoil"))
module = new TinFoil(handler, nspMap, this, logPrinter);
else
else if (protocol.equals("GoldLeaf"))
module = new GoldLeaf(handler, nspMap, this, logPrinter, nspFilterForGl);
else
module = new GoldLeaf_05(handler, nspMap, this, logPrinter);
usbConnect.close();