Skip to content

Commit f03649a

Browse files
author
Amanda Butler
authored
Merge pull request #140 from bulislaw/debug_sleep
Build profile docs change related to sleep
2 parents 2462082 + 8eacd82 commit f03649a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/dev_tools/build_profiles.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,19 @@ mbed OS 5 supports three primary build profiles: *develop*, *debug* and *release
55
* Small and fast code.
66
* Full error information. For example, asserts have file name and line number.
77
* Hard to follow code flow when using a debugger.
8+
* Chip goes to sleep when idle:
9+
* Debugger is likely to drop connection.
10+
* Breaks the local file system on the [mbed interface](https://docs.mbed.com/docs/mbed-os-handbook/en/latest/getting_started/mbed_interface/) on some boards.
811

912
## Debug profile
1013
* Largest and slowest profile.
1114
* Full error information. For example, asserts have file name and line number.
1215
* Easy to step through code with a debugger.
16+
* Disabled sleep mode.
1317

1418
## Release profile
1519
* Smallest profile and still fast.
1620
* Minimal error information.
17-
* Chip is put to sleep when going idle:
21+
* Chip goes to sleep when idle:
1822
* Debugger is likely to drop connection.
1923
* Breaks the local file system on the [mbed interface](https://docs.mbed.com/docs/mbed-os-handbook/en/latest/getting_started/mbed_interface/) on some boards.

0 commit comments

Comments
 (0)