wip commenting

This commit is contained in:
hugogogo
2025-03-13 16:02:27 +01:00
parent 24158c8f4d
commit 7ca02352d9
7 changed files with 62 additions and 36 deletions

View File

@@ -34,6 +34,11 @@ void uart_printstr(const char* str) {
}
}
void uart_printstr_endl(const char* str) {
uart_printstr(str);
uart_printstr("\r\n");
}
// ISR(USART_RX_vect) { // Table 12-6 : we select the code for USART Receive
// char received_char = UDR0; // read received character
// if (received_char == '\b' || received_char == 127) { // if backspace is received