From bd21ff0d3e4b61a7c2cef6f1cc335c696ccb7c05 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 14 Jun 2022 10:02:23 +0300 Subject: [PATCH] Fixed an issue when monitor_speed was ignored in configuration file // Resolve #4319 --- platformio/device/monitor/command.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platformio/device/monitor/command.py b/platformio/device/monitor/command.py index 24216b6c..ac74b336 100644 --- a/platformio/device/monitor/command.py +++ b/platformio/device/monitor/command.py @@ -32,9 +32,8 @@ from platformio.project.options import ProjectOptions "-b", "--baud", type=int, - default=ProjectOptions["env.monitor_speed"].default, show_default=True, - help="Set baud/speed", + help="Set baud/speed [default=%d]" % ProjectOptions["env.monitor_speed"].default, ) @click.option( "--parity",