Thomas Cauwelier / Mbed 2 deprecated visible_light_communication

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();
}