dac controller for EE300 project

Dependencies:   mbed MCP4725

Committer:
dzl5187
Date:
Fri Apr 04 18:48:23 2014 +0000
Revision:
1:4bd950ab8756
dac sub-system;

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