Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BufferedSerial mbed
You are viewing an older revision! See the latest version
Homepage
Serial Bridge between USB and UART3(PTC17, PTC16)
Why I share such a simple project?
There's an issue in serial format function of FRDM64K mbed library. Setting stop bit to 1 ends up stop bit 2 in serial controller register. See line 13 in main.cpp
uart3.format(8, Serial::None, 1>>1);
To set stop bit as 1, third parameter should be 0.
Hope this issue will be fixed future release.