Stefan Mueller
/
RS485
Allows RS485 communication using MAX485 chip
RS485.cpp
- Committer:
- NeoBelerophon
- Date:
- 2015-11-13
- Revision:
- 0:10a8f9128f73
- Child:
- 1:916e1dd538ce
File content as of revision 0:10a8f9128f73:
#include "RS485.h" RS485::RS485(PinName tx, PinName rx, PinName mode, const char *name) : Serial( tx, rx, name), m_modePin(mode) { } int RS485::_getc() { return _base_getc(); } int RS485::_putc(int c) { m_modePin = 1; int ret = _base_putc(c); m_modePin = 0; return ret; }