Levent
Results
1
issues of
Levent
Does not support multiple serial ports working at the same time(Because of the singleton pattern?)
3
Serial serialPortA = await FlutterSerialPort.createSerialPort( Device("deviceNameA", "/your/device/path"), 9600); Serial serialPortB = await FlutterSerialPort.createSerialPort( Device("deviceNameB", "/your/device/path"), 115200); bool openResultA = await serialPortA.open(); print(serialPortA.isConnected) // true bool openResultB = await serialPortB.open(); print(serialPortB.isConnected)...
enhancement