/** * \file * * * \brief MCP41 hardware-specific definitions * * \author Francesco Sacchi */ #ifndef HW_MCP41_H #define HW_MCP41_H #include "hw/mcp41_map.h" #include #warning TODO:This is an example implementation, you must implement it! INLINE void SET_MCP41_DDR(Mcp41Dev dev) { /* Implement me! */ //Warning: this funtions is like avr target name, //fix it to comply for all target. //Only for test remove when implement this function (void)dev; } INLINE void MCP41_ON(Mcp41Dev i) { /* Implement me! */ //Only for test remove when implement this function (void)i; } INLINE void MCP41_OFF(Mcp41Dev i) { /* Implement me! */ //Only for test remove when implement this function (void)i; } #endif /* HW_MCP41_H */