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.
Dependents: Multiple_7SegDisplays
Fork of RS485 by
RS485.h
00001 #include <mbed.h> 00002 class RS485 : public Serial 00003 { 00004 public: 00005 00006 RS485(PinName tx, PinName rx, PinName mode, const char *name=NULL); 00007 00008 protected: 00009 virtual int _putc(int c); 00010 virtual int _getc(); 00011 00012 private: 00013 DigitalOut m_modePin; 00014 00015 };
Generated on Wed Jul 13 2022 02:46:13 by
1.7.2
