Development mbed library for MAX32630FTHR
Dependents: blinky_max32630fthr
Diff: docs/build_profiles.md
- Revision:
- 0:5c4d7b2438d3
diff -r 000000000000 -r 5c4d7b2438d3 docs/build_profiles.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/build_profiles.md Fri Nov 11 20:59:50 2016 +0000 @@ -0,0 +1,21 @@ +# Build Profiles +Mbed 5.0 supports three primary build profiles, *default*, *debug* and *small*. When using +the online compiler the *default* profile is used. When building from the command line +the desired profile can be can be selected by adding the ```--profile <profile>``` +command line flag. Custom user defined profiles can also be specific by giving the path +the the profile. + +## Default profile +* Small and fast code +* Full error information - e.x. asserts have filename and line number +* Hard to follow code flow when using a debugger + +## Debug profile +* Easy to step through code with a debugger +* Full error information - e.x. asserts have filename and line number +* Largest and slowest profile + +## Small profile +* Smallest profile and still fast +* Minimal error information +* Hard to follow code flow when using a debugger