You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the uart bitrate used for console or basic stdout via printf etc is hard coded to 2000000 bit/s in the board config like bsp/board/bl616dk/board.c:
Not all serial uart adapters work at this rate, and e.g. some cheap cp2102 based devices I have won't cope with that rate. Instead, 921600 bit/s works fine, so I need to patch the SDK to get this working.
It would be nice to have some place to adjust this setting on a per-project basis, so I can leave the SDK untouched when changing the bit rate.
The text was updated successfully, but these errors were encountered:
Currently, the uart bitrate used for console or basic stdout via printf etc is hard coded to 2000000 bit/s in the board config like bsp/board/bl616dk/board.c:
bouffalo_sdk/bsp/board/bl616dk/board.c
Line 204 in 302e017
and
bouffalo_sdk/bsp/board/bl616dk/board.c
Line 214 in 302e017
Not all serial uart adapters work at this rate, and e.g. some cheap cp2102 based devices I have won't cope with that rate. Instead, 921600 bit/s works fine, so I need to patch the SDK to get this working.
It would be nice to have some place to adjust this setting on a per-project basis, so I can leave the SDK untouched when changing the bit rate.
The text was updated successfully, but these errors were encountered: