Skip to content

Commit

Permalink
BlueSCSI_platform_RP2040: uart_init to 115200 to work through picoprobe
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs committed Oct 12, 2023
1 parent 826a371 commit f895a6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/BlueSCSI_platform_RP2040/BlueSCSI_platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void platform_init()

/* Initialize logging to SWO pin (UART0) */
gpio_conf(SWO_PIN, GPIO_FUNC_UART,false,false, true, false, true);
uart_init(uart0, 1000000);
uart_init(uart0, 115200);
g_uart_initialized = true;
mbed_set_error_hook(mbed_error_hook);

Expand Down

0 comments on commit f895a6d

Please sign in to comment.