/** * \file * * * \brief TLV5816 DAC hardware-specific definitions * * * \author Francesco Sacchi */ #ifndef HW_TLV5816_H #define HW_TLV5816_H #warning TODO:This is an example implementation, you must implement it! #define TLV5618_CSINIT(pin) \ do \ { \ (void)pin; \ /* Implement me! */ \ TLV5618_CSHIGH(pin); \ } while(0) #define TLV5618_CSLOW(pin) \ do \ { \ (void)pin; \ /* Implement me! */ \ } while(0) #define TLV5618_CSHIGH(pin) \ do \ { \ (void)pin; \ /* Implement me! */ \ } while(0) #endif /* HW_TLV5816_H */