This is Ben and I's final project for Embedded Systems. Our goal was to create a car diagnostic system that interfaces with the CAN bus in all US sold cars newer than 2008. We aimed to request data such as RPM, Vehicle speed, engine temp, etc and then display our findings. This software was succussful in communicating with the car and reading and writing, however it fails to accomplish it's task when dealing with certain makes of cars, specifically Honda. Included are various PID codes, functions, and files that interface with a car's CAN bus system.

Dependencies:   UniGraphic mbed

globals.h

Committer:
Nrode17
Date:
2016-01-27
Revision:
0:bb9076ae4c4a

File content as of revision 0:bb9076ae4c4a:

#ifndef GLOBALS_H
#define GLOBALS_H

#include "mbed.h"

extern Serial pc;

// Using mbed pins 29(CAN_TXD) and 30(CAN_RXD).
extern CAN can2;
extern CANMessage can_MsgRx;
#endif