Fixed an issue when monitor_speed was ignored in configuration file // Resolve #4319

This commit is contained in:
Ivan Kravets
2022-06-14 10:02:23 +03:00
parent 46858fff39
commit bd21ff0d3e

View File

@ -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",