Skip to content

Commit 598dbdd

Browse files
author
Amanda Butler
authored
Merge pull request #891 from kegilbert/qs-baudrate-update
Change 115200 baudrate notes for quickstart to 9600
2 parents ffc1f8e + a3cebca commit 598dbdd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/tutorials/quickstart/example_walkthrough.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The quick start example blinks the LED on your board on and off. The main thread
66

77
To view the serial output use any terminal client, such as [PuTTY](http://www.putty.org/) or [CoolTerm](http://freeware.the-meiers.org/).
88

9-
The default baud rate, or speed, for this application is set to `115200`. You can modify it in the `mbed_app.json` file. To configure your terminal client to this baud rate, change the speed option when selecting the port.
9+
The default baud rate, or speed, for this application is set to `9600`. You can modify it in the `mbed_app.json` file. To configure your terminal client to this baud rate, change the speed option when selecting the port.
1010

1111
<span class="tips">**Tip:** You can find more information on the Mbed OS configuration tools and serial communication in Mbed OS in the [related links section](#related-links).</span>
1212

docs/tutorials/quickstart/quick-start-cli-debug.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The easiest way to do basic debugging is to use the `printf` command in your cod
77

88
For example, add `printf("Hello World!\n\r");` to the top of your main function, and then recompile the program and flash it to your device.
99

10-
<span class="notes">**Note:** Unless otherwise specified, `printf` defaults to a baud rate of `9600` on Mbed OS. The `mbed-os-example-blinky` example runs at a baud rate of `115200` and can be modified in the `mbed_app.json` file. To configure your terminal client to this baud rate, change the speed option when selecting the port. You can view the [configuration options page](../reference/configuration.html) to learn more about how to configure OS-level options.</span>
10+
<span class="notes">**Note:** Unless otherwise specified, `printf` defaults to a baud rate of `9600` on Mbed OS. You can modify this value in the `mbed_app.json` file. To configure your terminal client to this baud rate, change the speed option when selecting the port. You can view the [configuration options page](../reference/configuration.html) to learn more about how to configure OS-level options.</span>
1111

1212
### Exporting to a desktop IDE
1313

docs/tutorials/quickstart/quick-start-online-debug.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The easiest way to do basic debugging is to use the `printf` command in your cod
66

77
For example, add `printf("Hello World!\n\r");` to the top of your main function, and then recompile the program and flash it to your device.
88

9-
<span class="notes">**Note:** Unless otherwise specified, `printf` defaults to a baud rate of `9600` on Mbed OS. The `mbed-os-example-blinky` example runs at a baud rate of `115200` and can be modified in the `mbed_app.json` file. To configure your terminal client to this baud rate, change the speed option when selecting the port. You can view the [configuration options page](../reference/configuration.html) to learn more about how to configure OS-level options.</span>
9+
<span class="notes">**Note:** Unless otherwise specified, `printf` defaults to a baud rate of `9600` on Mbed OS. You can modify this value in the `mbed_app.json` file. To configure your terminal client to this baud rate, change the speed option when selecting the port. You can view the [configuration options page](../reference/configuration.html) to learn more about how to configure OS-level options.</span>
1010

1111
To determine which communication port your board connects to:
1212

0 commit comments

Comments
 (0)