Clarification on Gecko bootloader baud rate. #129
|
@jnilo1 , in |
Replies: 2 comments
|
Hi @hlyi, Good catch — that README line was simply wrong, and you reading the docs that closely is appreciated. The Gecko bootloader we ship (2.4.2, The So: nothing special to handle on the G4 — both boards' bootloaders are at 115200, and the bridge baud the flash script sets for the Xmodem phase is already correct. |
Hi @hlyi,
Good catch — that README line was simply wrong, and you reading the docs that closely is appreciated.
The Gecko bootloader we ship (2.4.2,
23-Bootloader-UART-Xmodem/) runs at 115200: it is a build-time constant (SL_SERIAL_UART_BAUD_RATEinconfig/btl_uart_driver_cfg.h— committed in that directory), andflash_efr32.shhas always probedbootloader:115200. There is no auto-detection — the Gecko UART/Xmodem bootloader has no autobaud; whatever the bootloader was built with is what it listens at. 115200 is the Silabs default, which is why your Sengled stock bootloader uses it too.The
38400in the bridge README was a conflation with the other chip's console: the RTL8196E serial cons…