bmw ds2 for e36
Embed:
(wiki syntax)
Show/hide line numbers
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