dac subsystem

Dependencies:   mbed MCP4725

Committer:
dzl5187
Date:
Tue Apr 01 04:45:24 2014 +0000
Revision:
0:c7adfe979a5b
first commit;

Who changed what in which revision?

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