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.
Fork of ros_lib_kinetic by
Revision 2:9e5c5381d337, committed 2018-10-17
- Comitter:
- WeberYang
- Date:
- Wed Oct 17 00:51:09 2018 +0000
- Parent:
- 1:a849bf78d77f
- Commit message:
- change rate 38400->115200
Changed in this revision
| MbedHardware.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/MbedHardware.h Sat Dec 31 00:59:58 2016 +0000
+++ b/MbedHardware.h Wed Oct 17 00:51:09 2018 +0000
@@ -14,7 +14,7 @@
class MbedHardware {
public:
- MbedHardware(PinName tx, PinName rx, long baud = 57600)
+ MbedHardware(PinName tx, PinName rx, long baud = 115200)
:iostream(tx, rx){
baud_ = baud;
t.start();
@@ -22,7 +22,7 @@
MbedHardware()
:iostream(USBTX, USBRX) {
- baud_ = 57600;
+ baud_ = 115200;
t.start();
}
