mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-02-07 06:12:56 -05:00
Merge pull request #448 from mcumings/baudrate
Set default USB baud rate to 115200 to match Meshtastic-device
This commit is contained in:
@@ -59,7 +59,7 @@ internal class SerialConnectionImpl(
|
||||
}
|
||||
|
||||
port.open(usbDeviceConnection)
|
||||
port.setParameters(921600, 8, UsbSerialPort.STOPBITS_1, UsbSerialPort.PARITY_NONE)
|
||||
port.setParameters(115200, 8, UsbSerialPort.STOPBITS_1, UsbSerialPort.PARITY_NONE)
|
||||
|
||||
debug("Starting serial reader thread")
|
||||
val io = SerialInputOutputManager(port, object : SerialInputOutputManager.Listener {
|
||||
|
||||
Reference in New Issue
Block a user