/** * \file * * * \brief DAC hardware-specific definition * * \author Daniele Basile */ #ifndef DRV_DAC_SAM3_H #define DRV_DAC_SAM3_H #include /** * DAC config define. */ #define DAC_MAXCH 2 //Max number of channel for ADC. #define DAC_BITS 12 //Bit resolution for ADC converter. #define DAC_SAM3X MAKE_ID('S', 'D', '3', 'X') #endif /* DRV_DAC_SAM3_H */