From 37600d1635f830cc0cdf7c56e586a021272c4e35 Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Wed, 8 Mar 2023 18:11:26 +0100 Subject: [PATCH] set baud to 230400 --- src/Samba.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Samba.cpp b/src/Samba.cpp index a1d6b29..bd6ee23 100644 --- a/src/Samba.cpp +++ b/src/Samba.cpp @@ -151,7 +151,7 @@ Samba::connect(SerialPort::Ptr port, int bps) _isUsb = _port->isUsb(); if (_isUsb) { - if (_port->open(921600) && init()) + if (_port->open(230400) && init()) { if (_debug) printf("Connected at 921600 baud\n");