Skip to content
Snippets Groups Projects
Commit 8bfa11b1 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

minimal: Clarify comments.

parent 8cee03b1
No related branches found
No related tags found
No related merge requests found
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
/* /*
* Extra UART functions * Extra UART functions
* These can be either optimized for a particular port, or reference, * These can be either optimized for a particular port, or reference
* not very optimal implementation below can be used. * implementation below can be used.
*/ */
// Send "cooked" string of length, where every occurance of // Send "cooked" string of given length, where every occurance of
// LF character is replaced with CR LF. // LF character is replaced with CR LF.
void mp_hal_stdout_tx_strn_cooked(const char *str, mp_uint_t len) { void mp_hal_stdout_tx_strn_cooked(const char *str, mp_uint_t len) {
while (len--) { while (len--) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment