Open OBC / e36obd

Dependents:   obdtest

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Bus.h Source File

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