/** * \file * * * * \brief PWM map device. * * * \author Daniele Basile */ #ifndef HW_PWM_MAP_H #define HW_PWM_MAP_H #warning TODO:This is an example implentation, you must implement it! typedef enum { PWM_CH0 = 0, PWM_CH1, PWM_CH2, PWM_CH3, /* * add other PWM channel or * change above. */ PWM_CNT } PwmDev; #endif /* HW_PWM_MAP_H */