Open OBC / e36obd

Dependents:   obdtest

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers E36obd.cpp Source File

E36obd.cpp

00001 #include "E36obd.h"
00002 
00003 E36obd::E36obd()
00004 {
00005     this->ds2 = new DS2(new Bus(p9, p10), new Bus(p13, p14));
00006 }
00007 
00008 E36obd::E36obd(DS2* ds2)
00009 {
00010     this->ds2 = ds2;
00011 }
00012 
00013 void E36obd::resetAirbagError()
00014 {
00015     
00016 }
00017 
00018 void E36obd::test()
00019 {
00020     ds2->testModule(0x12);
00021     ds2->snoop();
00022 }