Skip to content

Commit cd061b3

Browse files
author
Amanda Butler
authored
Merge pull request #855 from kegilbert/revert-qs-naming
Revert quick-start-blinky references
2 parents b34148e + f6aa7bc commit cd061b3

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/tutorials/quickstart/cli_code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
From your command-line, import the example:
66

77
```console
8-
$ mbed import https://github.com/ARMmbed/mbed-os-quick-start-blinky
9-
$ cd mbed-os-quick-start-blinky
8+
$ mbed import https://github.com/ARMmbed/mbed-os-example-blinky
9+
$ cd mbed-os-example-blinky
1010
```
1111

1212
1. Compile and program your board:

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-quick-start-blinky` example runs at a baud rate of `115200`. You can view the [configuration options page](../reference/configuration.html) to learn more about how to configure OS-level options.</span><!--but the thing I should really do now is set a new baud rate in my terminal, right?-->
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`. You can view the [configuration options page](../reference/configuration.html) to learn more about how to configure OS-level options.</span><!--but the thing I should really do now is set a new baud rate in my terminal, right?-->
1111

1212
### Exporting to a desktop IDE
1313

docs/tutorials/quickstart/quick-start-compiler.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@
99

1010
1. Double click on the `MBED.HTML` file. This adds your Mbed board to the Online Compiler as a compilation target.
1111

12-
<span class="images">![](https://s3-us-west-2.amazonaws.com/mbed-os-docs-images/add_to_compiler2.png)</span>
12+
<span class="images">![](https://s3-us-west-2.amazonaws.com/mbed-os-docs-images/add_to_compiler.png)</span>
1313

1414
### Importing the code
1515

1616
Click the button below to automatically import the example into the Online Compiler.
1717

18-
[![View Example](https://www.mbed.com/embed/?url=https://github.com/ARMmbed/mbed-os-quick-start-blinky)](https://github.com/ARMmbed/mbed-os-quick-start-blinky/blob/master/main.cpp)
18+
[![View Example](https://www.mbed.com/embed/?url=https://github.com/ARMmbed/mbed-os-example-blinky)](https://github.com/ARMmbed/mbed-os-example-blinky/blob/master/main.cpp)
1919

20-
Alternatively, you may select the import button on the top left hand side of the Online Compiler screen and copy the [example link](https://github.com/ARMmbed/mbed-os-quick-start-blinky) into the prompt.
20+
Alternatively, you may select the import button on the top left hand side of the Online Compiler screen and copy the [example link](https://github.com/ARMmbed/mbed-os-example-blinky) into the prompt.
2121

2222
<span class="images">![](https://s3-us-west-2.amazonaws.com/mbed-os-docs-images/import_program.png)</span>
2323

2424
### Compiling and flashing (programming)
2525

2626
1. Click **Compile**. Your browser downloads the program as an executable file.
2727

28-
<span class="images">![](https://s3-us-west-2.amazonaws.com/mbed-os-docs-images/online_compile_button2.png)</span>
28+
<span class="images">![](https://s3-us-west-2.amazonaws.com/mbed-os-docs-images/online_compile_button.png)</span>
2929

3030
1. Open the folder where the executable file was downloaded, and then click and drag (or copy and paste) the file to your Mbed board's USB device folder.
3131

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-quick-start-blinky` example runs at a baud rate of `115200`. You can view the [configuration options page](../reference/configuration.html) to learn more about how to configure OS-level options.</span><!--but the thing I should really do now is set a new baud rate in my terminal, right?-->
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`. You can view the [configuration options page](../reference/configuration.html) to learn more about how to configure OS-level options.</span><!--but the thing I should really do now is set a new baud rate in my terminal, right?-->
1010

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

0 commit comments

Comments
 (0)