Skip to content

Commit acf5f7f

Browse files
committed
Remove deprecated bootloader examples
Remove mentions of mbed-os-example-bootloader and mbed-os-example-bootloader-blinky, both of which are deprecated examples.
1 parent 9039027 commit acf5f7f

File tree

4 files changed

+1
-11
lines changed

4 files changed

+1
-11
lines changed

deprecated/examples.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ A few micro:bit How To videos:
4545

4646
[Get the FAT file system working on an Mbed OS platform](https://os.mbed.com/teams/mbed-os-examples/code/mbed-os-example-fat-filesystem/).
4747

48-
#### Bootloader
49-
50-
- [Create a bootloader](https://os.mbed.com/teams/mbed-os-examples/code/mbed-os-example-bootloader/).
51-
- [Use a blinky application with a prebuilt bootloader](https://os.mbed.com/teams/mbed-os-examples/code/mbed-os-example-bootloader-blinky/).
52-
5348
### mbed Client
5449

5550
[Getting started](https://os.mbed.com/teams/mbed-os-examples/code/mbed-os-example-client/): a basic example of mbed Client for Mbed OS. It demonstrates how to register a device with Mbed Device Connector, how to read and write values and how to deregister.

docs/api/drivers/FlashIAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ View the full C++ API:
2828

2929
## Flash IAP example
3030

31-
For an example that uses the `FlashIAP` driver, please see the [bootloader example](https://github.com/ARMmbed/mbed-os-example-bootloader).
31+
For a program that uses the `FlashIAP` driver, please see the [Mbed Stress Test](https://github.com/ARMmbed/mbed-stress-test).

docs/introduction/tutorials_intro.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ These tutorials show you how to install, export a project to and start a debuggi
4949
## Bootloader
5050

5151
- [A tutorial for creating and using a bootloader](../program-setup/creating-and-using-a-bootloader.html).
52-
- [An official example of bootloader implementation](https://github.com/ARMmbed/mbed-os-example-bootloader).
5352

5453
## Connecting to the cloud
5554

docs/program-setup/concepts/managed-unmanaged-bootloader.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ Call the bootloader to start the main program:
7878
mbed_start_application(POST_APPLICATION_ADDR);
7979
```
8080

81-
For an example showing how to create a bootloader, see the [mbed-os-example-bootloader](https://github.com/armmbed/mbed-os-example-bootloader) repository.
82-
8381
### Creating the main program
8482

8583
To create an application using a bootloader, you must first have created the bootloader binary and added it to the current project. You must then specify the bootloader image in `mbed_app.json` in the `target_override` section:
@@ -182,8 +180,6 @@ You can add the BOOTLOADER feature into `mbed_app.json` located in the root appl
182180

183181
Alternatively, you can add `-C 'target.features_add=["BOOTLOADER"]'` to your `mbed compile` command-line arguments.
184182

185-
Please see the [bootloader example](https://github.com/ARMmbed/mbed-os-example-bootloader) for an example on how to use the bootloader feature.
186-
187183
There are two ways to add support for new targets:
188184

189185
You can place the prebuilt binary bootloader in `mbed-os/feature/FEATURE_BOOTLOADER`, and add the fields below with values corresponding to your binary:

0 commit comments

Comments
 (0)