We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46eb924 commit 50affa6Copy full SHA for 50affa6
1 file changed
src/cdc_uart.c
@@ -53,6 +53,8 @@ void cdc_uart_init(void) {
53
gpio_set_function(PICOPROBE_UART_RX, GPIO_FUNC_UART);
54
gpio_set_pulls(PICOPROBE_UART_TX, 1, 0);
55
gpio_set_pulls(PICOPROBE_UART_RX, 1, 0);
56
+ gpio_set_outover(PICOPROBE_UART_TX, GPIO_OVERRIDE_INVERT);
57
+ gpio_set_inover(PICOPROBE_UART_RX, GPIO_OVERRIDE_INVERT);
58
uart_init(PICOPROBE_UART_INTERFACE, PICOPROBE_UART_BAUDRATE);
59
}
60
0 commit comments