implement uart connection for logger
This commit is contained in:
@ -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++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user