Skip to content

Add power management tutorial to power_manage.md #1095

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Aug 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/api/bluetooth/iBeacon.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The iBeacon class builds an advertising payload mimicking an iBeacon and assigns

## iBeacon class reference

[![View code](https://www.mbed.com/embed/?type=library)](https://os.mbed.com/docs/mbed-os/development/mbed-os-api-doxy/classi_beacon.html)
[![View code](https://www.mbed.com/embed/?type=library)](https://os.mbed.com/docs/mbed-os/development/mbed-os-api-doxy/i_beacon_8h_source.html)

## iBeacon example

Expand Down
2 changes: 1 addition & 1 deletion docs/api/platform/Callback.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The Callback class is what’s known in C++ as a “Concrete Type”. That is, t

## Callback class reference

[![View code](https://www.mbed.com/embed/?type=library)](https://os.mbed.com/docs/development/mbed-os-api-doxy/classmbed_1_1_callback_3_01_r_07_a0_00_01_a1_00_01_a2_00_01_a3_00_01_a4_08_4.html)
[![View code](https://www.mbed.com/embed/?type=library)](https://os.mbed.com/docs/mbed-os/development/mbed-os-api-doxy/classmbed_1_1_callback.html)

## Serial passthrough example with callbacks
[![View code](https://www.mbed.com/embed/?url=https://os.mbed.com/teams/mbed_example/code/rtos_threading_with_callback/)](https://os.mbed.com/users/mbedAustin/code/SerialPassthrough/file/96cb82af9996/main.cpp)
Expand Down
10 changes: 4 additions & 6 deletions docs/porting/target/Watchdog.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ Hardware Independent Watchdog support.

## Implementing Watchdog

You can find the API and specification for the Watchdog API in the following header file:
You can find the API and specification for the Watchdog API in its HAL API reference:

[![View code](https://www.mbed.com/embed/?type=library)](https://os.mbed.com/docs/development/feature-hal-spec-watchdog-doxy/classmbed_1_1_watchdog.html)
[![View code](https://www.mbed.com/embed/?type=library)](https://os.mbed.com/docs/mbed-os/development/mbed-os-api-doxy/group__hal__watchdog.html)

To enable Watchdog support in Mbed OS, add the `WATCHDOG` label in the `device_has` option of the target's section in the `targets.json` file.

Expand All @@ -42,8 +42,6 @@ The Mbed OS HAL provides a set of conformance tests for Watchdog. You can use th
mbed test -t <toolchain> -m <target> -n "tests-mbed_hal-watchdog*"
```

You can read more about the test cases here:
For more details, please see:

[![View code](https://www.mbed.com/embed/?type=library)](https://os.mbed.com/docs/development/feature-hal-spec-watchdog-doxy/watchdog__api__tests_8h_source.html)

[![View code](https://www.mbed.com/embed/?type=library)](https://os.mbed.com/docs/development/feature-hal-spec-watchdog-doxy/watchdog__reset__tests_8h_source.html)
[![View code](https://www.mbed.com/embed/?type=library)](https://os.mbed.com/docs/mbed-os/development/mbed-os-api-doxy/group__hal__watchdog__tests.html)
Loading