hw_mcp41.h

Go to the documentation of this file.
00001 
00038 #ifndef HW_MCP41_H
00039 #define HW_MCP41_H
00040 
00041 #include "hw/mcp41_map.h"
00042 
00043 #include <cfg/compiler.h>
00044 
00045 
00046 #warning TODO:This is an example implementation, you must implement it!
00047 
00048 
00049 INLINE void SET_MCP41_DDR(Mcp41Dev dev)
00050 {
00051         /* Implement me! */
00052         //Warning: this funtions is like avr target name,
00053         //fix it to comply for all target.
00054 
00055         //Only for test remove when implement this function
00056         (void)dev;
00057 }
00058 
00059 INLINE void MCP41_ON(Mcp41Dev i)
00060 {
00061         /* Implement me! */
00062 
00063         //Only for test remove when implement this function
00064         (void)i;
00065 }
00066 
00067 INLINE void MCP41_OFF(Mcp41Dev i)
00068 {
00069         /* Implement me! */
00070 
00071         //Only for test remove when implement this function
00072         (void)i;
00073 }
00074 
00075 #endif /* HW_MCP41_H */