Open
Description
Hi
Although it works on the Nano Connect RP2040, this code has this in HCIUartTransport.cpp
(https://github.com/arduino-libraries/ArduinoBLE/blob/master/src/utility/HCIUartTransport.cpp)
#if defined(ARDUINO_AVR_UNO_WIFI_REV2) || defined(ARDUINO_NANO_RP2040_CONNECT)
HCIUartTransportClass HCIUartTransport(SerialHCI, 119600);
#else
HCIUartTransportClass HCIUartTransport(SerialHCI, 912600);
#endif
And the NINA firmware has this in sketch.ino.cpp:
(https://github.com/arduino/nina-fw/blob/master/main/sketch.ino.cpp)
#if defined(UNO_WIFI_REV2) || defined(NANO_RP2040_CONNECT)
btControllerConfig.hci_uart_baudrate = 115200;
#else
btControllerConfig.hci_uart_baudrate = 912600;
#endif
So should it be changed to 115200?