mbed library sources(for async_print)
Fork of mbed-src by
Revision 213:cc557cb04877, committed 2014-05-26
- Comitter:
- mbed_official
- Date:
- Mon May 26 18:30:07 2014 +0100
- Parent:
- 212:34d62c0b2af6
- Child:
- 214:b6ec89a903fb
- Commit message:
- Synchronized with git revision 3cec47a2d5a7be8cf25757494272b60c1d8538d1
Full URL: https://github.com/mbedmicro/mbed/commit/3cec47a2d5a7be8cf25757494272b60c1d8538d1/
Changed in this revision
api/SerialBase.h | Show annotated file Show diff for this revision Revisions of this file |
api/can_helper.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/api/SerialBase.h Mon May 26 18:15:07 2014 +0100 +++ b/api/SerialBase.h Mon May 26 18:30:07 2014 +0100 @@ -121,7 +121,8 @@ protected: SerialBase(PinName tx, PinName rx); - virtual ~SerialBase(); + virtual ~SerialBase() { + } int _base_getc(); int _base_putc(int c);
--- a/api/can_helper.h Mon May 26 18:15:07 2014 +0100 +++ b/api/can_helper.h Mon May 26 18:30:07 2014 +0100 @@ -41,9 +41,6 @@ unsigned char len; // Length of data field in bytes CANFormat format; // 0 - STANDARD, 1- EXTENDED IDENTIFIER CANType type; // 0 - DATA FRAME, 1 - REMOTE FRAME - - virtual ~CAN_Message() { - } }; typedef struct CAN_Message CAN_Message;