Connector bump (#4304)
* fresh connector * daemon false good * gradle lives it's own life Co-authored-by: rusefillc <sdfsdfqsf2334234234>
This commit is contained in:
parent
e0c0a983b8
commit
7ff0f0d3e6
|
@ -21,7 +21,7 @@ dependencies {
|
|||
implementation project(':shared_io')
|
||||
implementation project(':logging')
|
||||
|
||||
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.9.0'
|
||||
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.9.2'
|
||||
implementation group: 'tel.schich', name: 'javacan-core', version: '3.2.0'
|
||||
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
||||
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
|
||||
|
|
|
@ -4,7 +4,9 @@ import com.devexperts.logging.Logging;
|
|||
import com.fazecast.jSerialComm.SerialPort;
|
||||
import com.fazecast.jSerialComm.SerialPortDataListener;
|
||||
import com.fazecast.jSerialComm.SerialPortEvent;
|
||||
import com.fazecast.jSerialComm.SerialPortThreadFactory;
|
||||
import com.opensr5.io.DataListener;
|
||||
import com.rusefi.NamedThreadFactory;
|
||||
import com.rusefi.binaryprotocol.IncomingDataBuffer;
|
||||
import com.rusefi.binaryprotocol.test.Bug3923;
|
||||
import com.rusefi.io.IoStream;
|
||||
|
@ -24,6 +26,8 @@ public class SerialIoStream extends AbstractIoStream {
|
|||
|
||||
static {
|
||||
log.info("Using com.fazecast.jSerialComm " + SerialPort.getVersion());
|
||||
// NamedThreadFactory has daemon=false by default and we like that!
|
||||
SerialPortThreadFactory.set(new NamedThreadFactory("jSerialComm"));
|
||||
}
|
||||
|
||||
public SerialIoStream(@Nullable SerialPort sp, String port) {
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue