-
Notifications
You must be signed in to change notification settings - Fork 175
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
Update serial communication and clean up duplicated & outdated info #1326
Conversation
I think we should, yes. If the content is needed, it should be in the debugging area. It would be a different matter if we had specific debugging info just for the quick start (for example, if Blinky had some commented-out broken lines that people could uncomment so we could walk them through debugging). But since it's standard printf() info we should just point to a good, single-source-of-truth page on printf(). |
@iriark01 I just removed the debugging pages in my last commit. The existing "Further reading" page of the quick start already links to debugging & serial communication docs, so I'm not adding extra links. |
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.
Minor edits. I'm also building the branch so I can check that everything renders correctly, but I'll fix rendering issues without going through engineering approval again.
It looks like Travis failed because this needs a rebase to have the json fix (#1324):
|
But it will be fine once I merge it; the fix is already on "development", right? |
True |
So I think we just need Evelyne's review |
This is an attempt - I may make further changes
20eb660
to
6a804f1
Compare
@iriark01 There were a number of merge conflicts since the (If I messed things up, please revert to 20eb660, the hash before the rebase.) Thanks. |
That commit looks fine. |
|
||
### Configuring the connection | ||
- If you have multiple boards connected: | ||
1. Run `mbedls` to find the port of the board you want to use. |
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.
It's probably worth linking to https://github.com/ARMmbed/mbed-os-tools/blob/master/packages/mbed-ls/README.md
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.
I cannot find any page for mbedls
on Mbed OS's documentation site. The info in the link seems outdated as it says "Development moved", and the steps to install this command don't apply anymore since mbedls
is now included in Mbed CLI suite.
|
||
## Minimal Printf | ||
``` | ||
mbed compile -t <TOOLCHAIN> -m <TARGET> --flash --sterm |
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.
You could also show usage of -m detect
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.
It's a nice tip. But -m detect
seems like an undocumented feature (not shown in mbed compile --help
), so I'm not sure if we should suggest it.
|
||
<span class="notes">**Notes:** | ||
- If your application uses a baud rate other than 9600, specify it with `-b <BAUDRATE>` in the command above. | ||
- This method only works if _one_ board of the TARGET you specify is connected. To work with multiple boards, open a serial terminal manually as described below.</span> |
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.
- This method only works if _one_ board of the TARGET you specify is connected. To work with multiple boards, open a serial terminal manually as described below.</span> | |
<br/>- This method only works for a single board. To work with multiple boards, open a serial terminal manually as described below.</div> |
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.
I removed the bit about the target because it implied you could make this work for multiple boards of different targets, and we don't explain that.
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.
As a user this will annoy me. You send me to "Manually opening a serial terminal" which then sends me to "Additional options" which explains how to connect multiple boards. Is there a way we can make this smoother? Since the two things explained in "Additional options" are how to use multiple boards and how to specify a baud rate (which you explained above), I think we can maybe we can do away with that bit. The --help
bit can then have its own title or just be mentioned as a tip (we don't have to show output for --help
).
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.
I agree we drop the "Additional options" section and replace it with a tip which is more compact.
Co-authored-by: Irit Arkin <irit.arkin@arm.com>
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.
Just some tidying of the note - a DIV makes it HTML instead of Markdown so it needs more manual handling
Co-authored-by: Irit Arkin <irit.arkin@arm.com>
@iriark01 Thanks, the format looks better now |
Let's merge it and I'll clean it up after, because it's a bit funny in the preview. Is that okay? |
Sure, sounds good to me |
Thank you very much for this PR! |
Thanks for your help too! |
This replaces #1317.
This PR is created to
replace third party serial software with the simple mbed sterm command
use printf() (instead of serial classes) for debug printing
clarify that buffered/unbuffered serial classes can capture keyboard inputs
remove/refactor duplicated information in multiple documents
The following files are refactored:
serial_communication.md - This is the guide for serial communication (mbed sterm, ...) with updated information.
quick-start-cli-debug.md, quick-start-online-debug.md - In the quick start guides, replace third-party serial software with mbed sterm.
debug_intro.md - As a guide for exporting project to IDE, mbed sterm does not really belong there.
debug_with_printf.md - This is now a pure printf guide that does not duplicate info in serial communication.
Note: minimal-printf is linked in debug_with_printf.md as before. Also, it's now the default printf implementation (ARMmbed/mbed-os#12233) so we shouldn't need to reiterate much in my opinion