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.
Diff: BaudSerial/BaudSerial.cpp
- Revision:
- 2:21b2552c3724
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/BaudSerial/BaudSerial.cpp Thu Nov 27 07:23:10 2014 +0000
@@ -0,0 +1,7 @@
+#include "BaudSerial.h"
+
+BaudSerial::BaudSerial(int baudrate, PinName tx, PinName rx, const char* name)
+ : Serial(tx,rx,name)
+{
+ this->baud(baudrate);
+}
\ No newline at end of file