Amanda Butler
a02e5eecc8
Delete build_profiles.md
...
Delete page because duplicate exists in Handbook
2017-02-12 19:58:31 -06:00
Sam Grove
59c2c4bd99
Merge pull request #3693 from bulislaw/rework_build_profiles
...
[Proposal] Simplify build profiles: debug and release only
2017-02-09 09:36:14 -06:00
Bartek Szatkowski
40d3b22785
Build: Rework build profiles
...
Rename small.json to release.json, default.json to develop.json and make
it the default profile.
2017-02-07 11:41:16 +00:00
Wolfgang Betz
109faa1bb6
Improve build profiles documentation
2017-01-26 12:59:39 +01:00
Martin Kojtal
fc6848435a
Merge pull request #3630 from AnotherButler/patch-3
...
Delete mbed_targets.md
2017-01-26 10:37:24 +02:00
Amanda Butler
70b9b47eec
Delete mbed_targets.md
...
Delete page because a duplicate exists in the Handbook
2017-01-23 12:04:44 -06:00
Amanda Butler
c09857acb8
Delete testing_mbed_OS_5.md
...
Delete page because duplicate page exists in Handbook
2017-01-17 16:39:30 -06:00
Martin Kojtal
bd6ebbeb21
Merge pull request #3475 from AnotherButler/patch-3
...
Delete BUILDING.md
2016-12-30 12:33:14 +01:00
Martin Kojtal
bd2e5c697f
Merge pull request #3494 from AnotherButler/patch-10
...
Delete ignoring_files_from_build.md
2016-12-23 13:10:46 +00:00
Amanda Butler
c7d94fe004
Delete ignoring_files_from_build.md
...
Exact duplicate of page exists in Handbook
2016-12-21 11:20:41 -06:00
Amanda Butler
00769cff23
Delete events.md
...
Duplicate page exists in Handbook
2016-12-21 10:47:26 -06:00
Martin Kojtal
92fbad7876
Merge pull request #3481 from AnotherButler/patch-8
...
Delete memap.md
2016-12-21 14:47:11 +00:00
Martin Kojtal
d478bfb8b1
Merge pull request #3480 from AnotherButler/patch-7
...
Delete config_system.md
2016-12-21 14:46:42 +00:00
Martin Kojtal
ac930630de
Merge pull request #3479 from AnotherButler/patch-6
...
Delete Toolchain_Profiles.md
2016-12-21 14:46:12 +00:00
Martin Kojtal
2ee97e2d19
Merge pull request #3477 from AnotherButler/patch-4
...
Delete COMMITTERS.md
2016-12-21 14:45:31 +00:00
Amanda Butler
535562827c
Delete memap.md
...
Delete page because an exact duplicate exists in the Handbook
2016-12-20 12:10:13 -06:00
Amanda Butler
62515b4649
Delete config_system.md
...
Delete page because duplicate exists in Handbook
2016-12-20 11:51:13 -06:00
Amanda Butler
99d0ff1311
Delete Toolchain_Profiles.md
...
Delete page because duplicate exists in Handbook
2016-12-20 11:44:48 -06:00
Amanda Butler
5495318a58
Delete TESTING.md
...
Delete page because an exact duplicate exists in the Handbook
2016-12-20 11:41:09 -06:00
Amanda Butler
04126f7f95
Delete COMMITTERS.md
...
Delete page because an exact duplicate exists in the Handbook
2016-12-20 11:27:38 -06:00
Amanda Butler
702d8cf3c7
Delete BUILDING.md
...
Delete this page because an exact duplicate exists in the Handbook
2016-12-20 11:22:19 -06:00
sarahmarshy
cf4ebf56c2
[Exporter docs] index.json update instructions
2016-12-01 11:09:51 +08:00
Sarah Marsh
406ddf0674
Exporter documentation
2016-11-03 11:53:23 -05:00
Sam Grove
4e1aea4fc9
Merge pull request #2958 from bridadan/mbed-app-config-testing
...
Allowing mbed_app.json files to be discovered for tests.
2016-11-03 02:11:38 -05:00
Russ Butler
0d51f18f02
New build profile and docs
...
Add a small build profile and general docs for build profiles.
2016-10-18 09:23:01 -05:00
Brian Daniels
f3d20141a3
Allowing mbed_app.json files to be discovered for tests.
...
Before, mbed_app.json files were explicitly ignored when building tests.
This was mostly because you could have multiple mbed_app.json files in the
tree (for instance, in test case folders) and the behavior would be
undefined. Now the tools explicitly ensure that there aren't multiple
mbed_app.json files in your source files. So auto discovery of
mbed_app.json for testing is being reintroduced.
2016-10-06 17:40:25 -05:00
Sarah Marsh
9a02bfb7a3
Additional device names. mbed_targets.md update
2016-10-04 14:13:36 -05:00
andreas.larsson
1d3c63d9bb
Changed name for the target UBLOX_C029 to UBLOX_EVK_ODIN_W2
2016-10-03 12:10:50 +02:00
Sam Grove
20756cbf77
Merge pull request #2860 from ARMmbed/event_loop_mbed_events_new
...
Event loop with mbed-events
2016-09-30 15:24:24 -05:00
Bogdan Marinescu
0abd141bf9
A few improvements to the events documentation
2016-09-29 20:48:21 +03:00
Bogdan Marinescu
8545bf1212
Added initial documentation for the event loop
2016-09-29 19:47:32 +03:00
Jimmy Brisson
c86ad6646d
Add documentation of the Toolchain Profile system
2016-09-29 10:20:05 -05:00
Brian Daniels
aeca796641
Fixing constant cleaning when compiling tests
...
This addresses the issue where building tests via test.py always triggered
a clean build. This is because the mbed_config.h file was being deleted from
the shared OS build to ensure that the correct config was always being
used. However, this contanstly triggered a rebuild of the OS since the
config file was not present.
Due to the shared build, having multiple app configurations that could
override the OS settings is not possible. For this reason, we now ignore
app config files unless explicitly set via the command line option
'--app-config'. Though there will now be two mbed_config.h files in the
include path of the build, it shouldn't matter since the contents will be
the same.
2016-09-22 08:30:21 -04:00
Bogdan Marinescu
d7899b4b2b
Removed custom targets from config system
...
Custom targets were the origin of a number of issues with the mbed
tools, so it was decided that they need to be removed. This PR does just
that (and moves the "custom_targets" part of the config system tests
into a separate, per-test "targets.json" file to preserve the test
functionality).
2016-09-13 15:54:44 +03:00
kclin
4081f506ac
Fix docs/BUILDING.md error command issue
2016-08-07 00:01:19 +08:00
Brian Daniels
ebd3e0b602
Fixing typos, grammar, and general English in mbed OS 5 testing doc
2016-08-04 11:24:30 -05:00
Brian Daniels
78b9c39f9d
Adding docs for the testing process for mbed OS 5
2016-08-03 18:00:42 -05:00
Bogdan Marinescu
4d8cbdc48c
Merge pull request #2279 from geky/docs-ca
...
[docs] Added documentation over the cumulative attributes
2016-07-28 13:43:47 +03:00
Christopher Haster
38cd901b9d
[docs] Added documentation over the cumulative attributes
2016-07-27 17:40:51 -05:00
Bogdan Marinescu
a43919eafa
Documentation updates for the configuration system
...
The configuration system uses `mbed_config.h` to export configuration
data, but when this change was made, the documentation was not properly
updated. This commit updates the documentation with the correct
behaviour of the configuration system.
2016-07-27 22:47:38 +03:00
Sam Grove
542fcca670
Merge pull request #2137 from sg-/operators
...
Remove macro for operators. Enable these as default behavior
2016-07-22 19:01:24 -05:00
Seppo Takalo
a68eadd7cc
Document the .mbedignore file
2016-07-14 13:06:10 +03:00
Sam Grove
254ae0e109
Remove macro for operators. Enable these as default behavior
2016-07-10 13:47:13 -05:00
Mihail Stoyanov
b70d901ef9
Merge pull request #1984 from mbedmicro/config_system_docs
...
Added documentation for the configuration system
2016-06-30 18:00:22 +01:00
Marcelo Salazar
86aea775c4
memap doc minor fixes
2016-06-29 08:28:33 +01:00
Marcelo Salazar
2594c4946b
Minor tweaks
2016-06-27 16:59:00 +01:00
Marcelo Salazar
f1dd7c5fbd
Adding memap documentation
2016-06-27 16:45:29 +01:00
Bogdan Marinescu
3bc7d40a74
Added documentation for the configuration system
2016-06-22 11:16:57 +03:00
Mihail Stoyanov
87a978c4e8
Move private_settings.py to root mbed_settings.py. Various updates to reflect the path changes
2016-06-09 22:24:05 +01:00
Mihail Stoyanov
42c62abed1
Further changes to reflect workspace_tools to tools rename
2016-06-09 21:40:54 +01:00