//HINT: on windows you need to (for example) use COM1, com1 will not work! (case sensitive)
String serialPort = OutputHelper.getSerialPortName(ph.getTpm2Device().toUpperCase());
this.initialized = false;
this.supportConnectionState = true;
try {
tpm2 = new Tpm2Serial(serialPort, baud);
this.initialized = true;
LOG.log(Level.INFO, "Initialized TPM2 serial device v{0}, target port: {1}, Resolution: {2}/{3}",
new Object[] { VERSION, serialPort, this.matrixData.getDeviceXSize(), this.matrixData.getDeviceYSize()}
);