Skip to content

Commit

Permalink
Add carriage return to UART check
Browse files Browse the repository at this point in the history
  • Loading branch information
marnovandermaas committed May 8, 2024
1 parent 36a9c62 commit 1a59633
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sw/cheri/tests/uart_check.cc
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,12 @@ extern "C" void rom_loader_entry(void *rwRoot)
uart->init();
uart->blocking_write('h');
uart->blocking_write('i');
uart->blocking_write('\r');
uart->blocking_write('\n');
while (true) {
uart->blocking_write('h');
uart->blocking_write('i');
uart->blocking_write('\r');
uart->blocking_write('\n');
}
}

0 comments on commit 1a59633

Please sign in to comment.