-
Notifications
You must be signed in to change notification settings - Fork 178
Update boot sequence docs #662
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
Conversation
Add content for the updated Mbed 5 boot sequence.
This has a code dependency on ARMmbed/mbed-os#7794 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That boot sequence diagram is fantastic! Nice work!
docs/reference/runtime/Bootstrap.md
Outdated
@@ -7,13 +7,32 @@ Mbed OS provides two entry points for developers to hook into: | |||
- `main(void)` - Default entry point. All the standard application code goes here. | |||
- `mbed_main(void)` - Executed directly before `main`. The user can define this. | |||
|
|||
When execution reaches the entry points, a user can expect a fully initialized system that is ready to execute application code. For this to happen, the following must have occurred prior to this point: | |||
When execution reaches the entry points, a user can expect a fully initialized system that is ready to execute application code. The Mbed OS boot sequence consists of four phases, target setup, toolchain setup, starting the RTOS and starting the Mbed application. These phases can be seen below: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Mbed OS boot sequence consists of four phases,
@AnotherButler would this be a better place for a colon (:
) instead of a comma (,
)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Yes, I like that. Neither one is wrong, but I think a colon is nicer here.
ping @mprse |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Update punctuation, as requested.
Copy edit for active voice and formatting.
Standardize person and audience across documentation.
Add content for the updated Mbed 5 boot sequence.