Skip to content
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

Merged
merged 11 commits into from
May 27, 2020

Conversation

LDong-Arm
Copy link
Contributor

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

@LDong-Arm
Copy link
Contributor Author

Hi @iriark01 I created this to replace #1317 so we can preview the code. I also addressed some comments from there, please review.

Continuing our discussions, shall we remove debugging & exporting to IDEs from quick start?

@iriark01
Copy link
Contributor

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().

@LDong-Arm
Copy link
Contributor Author

@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.

Copy link
Contributor

@iriark01 iriark01 left a 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.

@LDong-Arm LDong-Arm requested a review from iriark01 May 22, 2020 09:32
@LDong-Arm
Copy link
Contributor Author

It looks like Travis failed because this needs a rebase to have the json fix (#1324):

Validating json ./docs/bare_metal/using_bare_metal.md:57 ...
Expecting property name: line 5 column 13 (char 90)
The command "./check_tools/find_bad_code_snippets.sh" exited with 1.

@iriark01
Copy link
Contributor

But it will be fine once I merge it; the fix is already on "development", right?

@LDong-Arm
Copy link
Contributor Author

But it will be fine once I merge it; the fix is already on "development", right?

True

@iriark01
Copy link
Contributor

So I think we just need Evelyne's review

@LDong-Arm LDong-Arm force-pushed the serial_comm_cleanup branch from 20eb660 to 6a804f1 Compare May 26, 2020 13:49
@LDong-Arm
Copy link
Contributor Author

LDong-Arm commented May 26, 2020

@iriark01 There were a number of merge conflicts since the development branch changed. I tried to rebase this PR myself but I'm not sure if I did it correctly. Could you double check, especially the links/redirect, etc.?

(If I messed things up, please revert to 20eb660, the hash before the rebase.)

Thanks.

@LDong-Arm LDong-Arm requested a review from iriark01 May 26, 2020 14:09
@iriark01
Copy link
Contributor

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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

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
Copy link
Contributor

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

Copy link
Contributor Author

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.

@LDong-Arm
Copy link
Contributor Author

LDong-Arm commented May 26, 2020

Hi @evedon, @iriark01, I just addressed latest comments from @evedon, please review the last three commits. Thanks.


<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>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- 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>

Copy link
Contributor

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.

Copy link
Contributor

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).

Copy link
Contributor Author

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.

LDong-Arm and others added 2 commits May 27, 2020 11:14
Co-authored-by: Irit Arkin <irit.arkin@arm.com>
Copy link
Contributor

@iriark01 iriark01 left a 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

LDong-Arm and others added 2 commits May 27, 2020 11:54
@LDong-Arm
Copy link
Contributor Author

@iriark01 Thanks, the format looks better now

@iriark01
Copy link
Contributor

Let's merge it and I'll clean it up after, because it's a bit funny in the preview. Is that okay?

@LDong-Arm
Copy link
Contributor Author

Sure, sounds good to me

@iriark01 iriark01 merged commit 4138d04 into development May 27, 2020
@iriark01
Copy link
Contributor

Thank you very much for this PR!

@LDong-Arm
Copy link
Contributor Author

Thanks for your help too!

@LDong-Arm LDong-Arm deleted the serial_comm_cleanup branch May 27, 2020 13:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants