This commit is contained in:
Chuck McManis
2015-01-22 10:25:51 -08:00
committed by Piotr Esden-Tempski
parent d29e4d2b7c
commit b76c30cdb0
2 changed files with 5 additions and 2 deletions

View File

@@ -108,6 +108,7 @@ void console_putc(char c) {
reg = USART_SR(CONSOLE_UART);
} while ((reg & USART_SR_TXE) == 0);
USART_DR(CONSOLE_UART) = (uint16_t) c & 0xff;
ITM_Sendchar(c);
}
/*