CAN-Bus ECU simulator. Only part of the SAE J1979 are implemented. Uses CAN-Bus demo board as hardware platform. http://skpang.co.uk/catalog/canbus-ecu-simulator-with-lpc1768-module-p-1400.html Useful for testing diagnostic tools.

Dependencies:   TextLCD mbed

Fork of ecu_reader by Sukkin Pang

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers globals.h Source File

globals.h

00001 #ifndef GLOBALS_H
00002 #define GLOBALS_H
00003 
00004 #include "mbed.h"
00005 
00006 extern DigitalOut led1;
00007 extern DigitalOut led2;
00008 extern DigitalOut led3;
00009 extern DigitalOut led4;
00010 
00011 extern CAN can2;
00012 extern CANMessage can_MsgRx;
00013 extern Serial pc;
00014 #endif