Skip to content

Commit

Permalink
idata
Browse files Browse the repository at this point in the history
  • Loading branch information
h11g committed Dec 21, 2020
1 parent d12ed38 commit bfac387
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class SupporterManager<T extends IScannerManager> {
public enum ScannerSupporter {
SUNMI("SUNMI"), alps("alps"), SEUIC("SEUIC"), UBX("UBX"), OTHER("OTHER"), idata("idata"),
SG6900("SG6900"), HT380K("HT380K"), MT6210("NLS-MT6210"), MT9210("NLS-MT9210"),
MT90("NLS-MT90"), MT66("NLS-MT66"), PDA("PDA"), PDT90F("PDT-90F");
MT90("NLS-MT90"), MT66("NLS-MT66"), PDA("PDA"), PDT90F("PDT-90F"), T1("T1");

private String name;

Expand Down Expand Up @@ -85,6 +85,7 @@ public SupporterManager(Context context, @NonNull IScanListener listener) {
scannerManager = (T) UBXScannerManager.getInstance(context);
break;
case idata:
case T1:
scannerManager = (T) IDataScannerManager.getInstance(context);
break;
case SG6900:
Expand Down

0 comments on commit bfac387

Please sign in to comment.