X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fhw%2Fhw_mcp41.h;h=b31a7dd8b3d124452cdf27c09af03dac08b1d16b;hb=8973c9fd922de49b3c0cdcd23610641ee1cbd4f2;hp=1289d60d6bed841a4fd3d820c48df55f4e2fc3ca;hpb=107743ef422de7a4c926a20ff87eee1515eb1987;p=bertos.git diff --git a/bertos/hw/hw_mcp41.h b/bertos/hw/hw_mcp41.h index 1289d60d..b31a7dd8 100644 --- a/bertos/hw/hw_mcp41.h +++ b/bertos/hw/hw_mcp41.h @@ -31,19 +31,18 @@ * * \brief MCP41 hardware-specific definitions * - * \version $Id$ * \author Francesco Sacchi */ #ifndef HW_MCP41_H #define HW_MCP41_H -#include "mcp41_map.h" +#include "hw/mcp41_map.h" #include -#warning TODO: This is example implementation, you must implement it! +#warning TODO:This is an example implementation, you must implement it! INLINE void SET_MCP41_DDR(Mcp41Dev dev) @@ -51,16 +50,25 @@ 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 */