Removed the use of ITM_Sendchar.

This commit is contained in:
Piotr Esden-Tempski
2015-02-04 17:03:32 -08:00
parent 0a863789b0
commit c06aba1603

View File

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