Skip to content

Commit c06aba1

Browse files
committed
Removed the use of ITM_Sendchar.
1 parent 0a86378 commit c06aba1

File tree

1 file changed

+0
-1
lines changed
  • examples/stm32/f4/stm32f429i-discovery/spi

1 file changed

+0
-1
lines changed

examples/stm32/f4/stm32f429i-discovery/spi/console.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ void console_putc(char c) {
108108
reg = USART_SR(CONSOLE_UART);
109109
} while ((reg & USART_SR_TXE) == 0);
110110
USART_DR(CONSOLE_UART) = (uint16_t) c & 0xff;
111-
ITM_Sendchar(c);
112111
}
113112

114113
/*

0 commit comments

Comments
 (0)