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

globals.h

Committer:
pangsk
Date:
2014-12-30
Revision:
6:41a4ad385daa
Parent:
3:05bb8f0bd7a4

File content as of revision 6:41a4ad385daa:

#ifndef GLOBALS_H
#define GLOBALS_H

#include "mbed.h"

extern DigitalOut led1;
extern DigitalOut led2;
extern DigitalOut led3;
extern DigitalOut led4;

extern CAN can2;
extern CANMessage can_MsgRx;
extern Serial pc;
#endif