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