如何使用 PlatformIO 在 VSCode 中更改串口监视器的默认波特率?

How to change default baud rate of serial monitor in VSCode with PlatformIO?

我有 VSCode 和 PlatformIO 插件。 当我启动串行监视器时,它总是以 9600 波特率启动。我想更改它,因此它始终以 115200 开头。

我可以通过按 CTRL+T、b、115200 来更改已经 运行 串口监视器的波特率,但我不想每次启动串口监视器时都这样做。

我在任何地方都找不到该设置。我尝试在 platformio.ini 中添加一行 speed = 115200 但这并没有改变任何东西。

您需要在 platformio.ini

中为您的目标添加选项 monitor_baud = 115200

我刚刚补充:

monitor_speed = 115200

到 platformio.ini 文件并且它有效

monitor_speed = 115200 必须在 [env]

我在platformio中开了两个项目。如果您继续在 platformio 中获得默认波特率 9600,即使您在 platform.ini 文件中设置了 monitor_speed=115200,请选中 [中的“Serial Monitor”按钮旁边的按钮“Switch PlatformIO Project Environment” =14=] 确保您在正确的项目上的代码。这将为您省去很多麻烦。