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 iSerial by
Diff: iSerial.h
- Revision:
- 5:d83fc550ccbc
- Parent:
- 4:b38ef9675d39
- Child:
- 6:8d4b95b90c3b
diff -r b38ef9675d39 -r d83fc550ccbc iSerial.h
--- a/iSerial.h Mon Sep 03 09:15:34 2012 +0000
+++ b/iSerial.h Mon Sep 03 11:18:05 2012 +0000
@@ -16,6 +16,8 @@
class iSerial : public Serial {
protected:
+ PinName tx;
+ PinName rx;
const int txbufsize;
const int rxbufsize;
RingBuffer txbuf;
@@ -24,6 +26,7 @@
void tx_handler(void);
void rx_handler(void);
+ void enable_uart_irq(void);
public:
