Skip to content

Commit

Permalink
uart-bridge: avoid CR/LF conversion
Browse files Browse the repository at this point in the history
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
  • Loading branch information
Noltari committed Nov 4, 2022
1 parent 3aa5d05 commit 9d05ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uart-bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ void uart_write_bytes(uint8_t itf)

while (uart_is_writable(ui->inst) &&
count < ud->usb_pos) {
uart_putc(ui->inst, ud->usb_buffer[count]);
uart_putc_raw(ui->inst, ud->usb_buffer[count]);
count++;
}

Expand Down

0 comments on commit 9d05ed4

Please sign in to comment.