Skip to content

Commit

Permalink
Remove the echo for now. We don't need to pipe all the data from the …
Browse files Browse the repository at this point in the history
…rp2040 though the stm32.
  • Loading branch information
o7-machinehum committed Apr 29, 2024
1 parent b64fbc3 commit 6a15bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stm32-app/uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void usart2_lpuart2_isr(void)
{
static uint8_t data = 0x00;
data = usart_recv(USART2);
usart_send(USART1, data);
// usart_send(USART1, data);

// @ is the special shutdown char
if (data == '@') {
Expand Down

0 comments on commit 6a15bbd

Please sign in to comment.