Skip to content

Commit

Permalink
Merge pull request #2187 from 0xCCF4/master
Browse files Browse the repository at this point in the history
Fixed typo in binary declaration RP2040 hw bspw family.c
  • Loading branch information
hathach authored Aug 1, 2023
2 parents ce54984 + 8226b04 commit 5e1ed9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/bsp/rp2040/family.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void board_init(void)
#endif

#ifdef UART_DEV
bi_decl(bi_2pins_with_func(UART_TX_PIN, UART_TX_PIN, GPIO_FUNC_UART));
bi_decl(bi_2pins_with_func(UART_TX_PIN, UART_RX_PIN, GPIO_FUNC_UART));
uart_inst = uart_get_instance(UART_DEV);
stdio_uart_init_full(uart_inst, CFG_BOARD_UART_BAUDRATE, UART_TX_PIN, UART_RX_PIN);
#endif
Expand Down

0 comments on commit 5e1ed9d

Please sign in to comment.