Skip to content

Add links to minimal printf library in tutorials section #845

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

Merged
merged 1 commit into from
Jan 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/tutorials/serial/serial_communication.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ CoolTerm should work under Linux. If for some reason it doesn't, you can try one
- [Minicom](https://help.ubuntu.com/community/Minicom).
- [GNU Screen](https://www.gnu.org/software/screen/manual/screen.html).

### Minimal Printf

For low memory devices you may optionally use the [ArmMbed minimal printf library](https://github.com/ARMmbed/minimal-printf).

### Additional examples

Use your terminal application to interact with the following examples.
Expand Down
3 changes: 3 additions & 0 deletions docs/tutorials/tutorials_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ These tutorials teach you to communicate with your development board, an essenti
<tr>
<td><a href="serial-comm.html">Board to PC communication over USB tutorial</a></td>
</tr>
<tr>
<td><a href="serial-comm.html#minimal-printf">Low memory serial printf</a></td>
Copy link
Contributor

Choose a reason for hiding this comment

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

Query: Does this belong in serial communication, debugging or both?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Hmmmm, I'd leave it in serial communication. Wouldn't be completely out of place in debugging, but people tend not to care quite as much about ROM size for debugging purposes and this falls under more of an optimization.

</tr>
</tbody>
</table>

Expand Down