can version

Dependencies:   mbed MCP4725

Fork of dac_controller by Johnny Bravo

Committer:
erichill44
Date:
Fri Apr 11 19:53:01 2014 +0000
Revision:
2:c0287d9c2226
Parent:
1:4bd950ab8756
implemented CAN

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dzl5187 1:4bd950ab8756 1
dzl5187 1:4bd950ab8756 2 #ifndef LOG_H
dzl5187 1:4bd950ab8756 3 #define LOG_H
dzl5187 1:4bd950ab8756 4 #include "mbed.h"
dzl5187 1:4bd950ab8756 5
dzl5187 1:4bd950ab8756 6
dzl5187 1:4bd950ab8756 7 extern Timer programTimer;
dzl5187 1:4bd950ab8756 8
dzl5187 1:4bd950ab8756 9 /**
dzl5187 1:4bd950ab8756 10 Function: logMessage
dzl5187 1:4bd950ab8756 11 Description: output the message(can be formatted string) to PC
dzl5187 1:4bd950ab8756 12 */
dzl5187 1:4bd950ab8756 13 void logMessage(const char *fmt,...);
dzl5187 1:4bd950ab8756 14 #endif