From bd77d47215acc4173ddd88ca7c3470b40c2f0f89 Mon Sep 17 00:00:00 2001 From: geeksville Date: Wed, 22 Apr 2020 14:58:35 -0700 Subject: [PATCH] change serial baud rate to 921600 --- bin/start-terminal0.sh | 2 +- bin/start-terminal1.sh | 2 +- platformio.ini | 2 +- src/configuration.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/start-terminal0.sh b/bin/start-terminal0.sh index 895fb94b5..3ad4e7822 100755 --- a/bin/start-terminal0.sh +++ b/bin/start-terminal0.sh @@ -1 +1 @@ -pio device monitor -b 115200 +pio device monitor -b 921600 diff --git a/bin/start-terminal1.sh b/bin/start-terminal1.sh index c5236bbe3..3433501ea 100755 --- a/bin/start-terminal1.sh +++ b/bin/start-terminal1.sh @@ -1 +1 @@ -pio device monitor -p /dev/ttyUSB1 -b 115200 +pio device monitor -p /dev/ttyUSB1 -b 921600 diff --git a/platformio.ini b/platformio.ini index fbfb3a459..d4b105129 100644 --- a/platformio.ini +++ b/platformio.ini @@ -51,7 +51,7 @@ build_flags = -Wno-missing-field-initializers -Isrc -Isrc/rf95 -Os -Wl,-Map,.pio ; the default is esptool ; upload_protocol = esp-prog -monitor_speed = 115200 +monitor_speed = 921600 # debug_tool = esp-prog # debug_port = /dev/ttyACM0 diff --git a/src/configuration.h b/src/configuration.h index 4ef859aa3..733e40a76 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -47,7 +47,7 @@ along with this program. If not, see . #endif #define DEBUG_PORT Serial // Serial debug port -#define SERIAL_BAUD 115200 // Serial debug baud rate +#define SERIAL_BAUD 921600 // Serial debug baud rate #define REQUIRE_RADIO true // If true, we will fail to start if the radio is not found