Skip to content

Commit 69d1be8

Browse files
author
Amanda Butler
authored
Apply new 5.5 changes to build_profiles.md
Apply changes from merged PR #140
1 parent 7711879 commit 69d1be8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/compile/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 going 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)