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

Committer:
pangsk
Date:
Tue Dec 30 10:10:02 2014 +0000
Revision:
6:41a4ad385daa
Parent:
3:05bb8f0bd7a4
Initial version.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pangsk 0:908be729d27c 1 #ifndef GLOBALS_H
pangsk 0:908be729d27c 2 #define GLOBALS_H
pangsk 0:908be729d27c 3
pangsk 0:908be729d27c 4 #include "mbed.h"
pangsk 0:908be729d27c 5
pangsk 0:908be729d27c 6 extern DigitalOut led1;
pangsk 0:908be729d27c 7 extern DigitalOut led2;
pangsk 0:908be729d27c 8 extern DigitalOut led3;
pangsk 0:908be729d27c 9 extern DigitalOut led4;
pangsk 0:908be729d27c 10
pangsk 0:908be729d27c 11 extern CAN can2;
pangsk 0:908be729d27c 12 extern CANMessage can_MsgRx;
pangsk 6:41a4ad385daa 13 extern Serial pc;
pangsk 0:908be729d27c 14 #endif