2015-01-13 02:02:56 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "py/mpconfig.h"
|
2015-10-30 23:03:58 +00:00
|
|
|
#include "py/mphal.h"
|
2015-01-13 02:02:56 +00:00
|
|
|
|
|
|
|
/*
|
2016-07-22 17:56:27 +01:00
|
|
|
* Extra stdout functions
|
2015-11-06 21:29:08 +00:00
|
|
|
* These can be either optimized for a particular port, or reference
|
|
|
|
* implementation below can be used.
|
2015-01-13 02:02:56 +00:00
|
|
|
*/
|
|
|
|
|
2017-05-29 08:08:14 +01:00
|
|
|
// Send "cooked" string of given length, where every occurrence of
|
2015-01-13 02:02:56 +00:00
|
|
|
// LF character is replaced with CR LF.
|
2016-08-25 13:22:25 +01:00
|
|
|
void mp_hal_stdout_tx_strn_cooked(const char *str, size_t len) {
|
2015-01-13 02:02:56 +00:00
|
|
|
while (len--) {
|
|
|
|
if (*str == '\n') {
|
2015-02-13 15:26:53 +00:00
|
|
|
mp_hal_stdout_tx_strn("\r", 1);
|
2015-01-13 02:02:56 +00:00
|
|
|
}
|
2015-02-13 15:26:53 +00:00
|
|
|
mp_hal_stdout_tx_strn(str++, 1);
|
2015-01-13 02:02:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send zero-terminated string
|
2015-02-13 15:26:53 +00:00
|
|
|
void mp_hal_stdout_tx_str(const char *str) {
|
|
|
|
mp_hal_stdout_tx_strn(str, strlen(str));
|
2015-01-13 02:02:56 +00:00
|
|
|
}
|