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: SoftSerial SDFileSystem mbed wave_player
MySoftSerial.cpp
- Committer:
- Thomas Cauwelier
- Date:
- 2017-05-10
- Revision:
- 15:75f9bd5d7659
- Child:
- 16:1a0589d846bf
File content as of revision 15:75f9bd5d7659:
//
// Created by thoma on 10-May-17.
//
#include "MySoftSerial.h"
MySoftSerial::MySoftSerial(PinName TX, PinName RX, const char *name = NULL) : SoftSerial(TX, RX, name) {
}
MySoftSerial::~MySoftSerial() {
}
int MySoftSerial::putc(int c) {
return _putc(c);
}
int MySoftSerial::getc() {
return _getc();
}