소스 검색

BlueSCSI_platform_RP2040: re-apply f895a6d to set uart to 115200

This got reverted in the initiator commits.
joshua stein 1 년 전
부모
커밋
28f6de1bae
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/BlueSCSI_platform_RP2040/BlueSCSI_platform.cpp

+ 1 - 1
lib/BlueSCSI_platform_RP2040/BlueSCSI_platform.cpp

@@ -175,7 +175,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;
     #ifdef MBED
         mbed_set_error_hook(mbed_error_hook);