implement uart connection for logger

This commit is contained in:
2020-10-29 15:44:13 +01:00
parent e5a77ccc00
commit 3ce69c0a64
9 changed files with 73 additions and 27 deletions

View File

@ -846,7 +846,7 @@ void testLogger0() {
memset(buffer, 0, 128);
i = 0;
while (0 < (c = logExecute())) {
while (0 < (c = logExec())) {
buffer[i] = (uint8_t) c;
i++;
}
@ -881,7 +881,7 @@ void testLogger1() {
memset(buffer, 0, 128);
i = 0;
while (0 < (c = logExecute())) {
while (0 < (c = logExec())) {
buffer[i] = (uint8_t) c;
i++;
}
@ -932,7 +932,7 @@ void testLogger2() {
memset(buffer, 0, 128);
i = 0;
while (0 < (c = logExecute())) {
while (0 < (c = logExec())) {
buffer[i] = (uint8_t) c;
i++;
}