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.
Bus.h
00001 #ifndef BUS_H 00002 #define BUS_H 00003 00004 #include "mbed.h" 00005 00006 extern Serial dbg; 00007 00008 class Bus: public Serial 00009 { 00010 PinName txPin; 00011 PinName rxPin; 00012 00013 public: 00014 Bus(PinName tx, PinName rx); 00015 00016 int send(char* data, int length); 00017 int get(char* data, int length); 00018 bool test(); 00019 00020 00021 }; 00022 00023 #endif //BUS_H
Generated on Fri Jul 22 2022 12:21:05 by
1.7.2