1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

drivers/pwm: removed deprecated PWM_x defines

This commit is contained in:
Hauke Petersen 2016-12-15 22:35:39 +01:00
parent 20089be486
commit 3f259eaaf9
2 changed files with 0 additions and 21 deletions

View File

@ -95,25 +95,6 @@ enum {
UART_UNDEFINED /**< Deprecated symbol, use UART_UNDEF instead */
};
/**
* @brief Legacy definitions of PWM devices
*/
enum {
#if PWM_0_EN
PWM_0, /*< 1st PWM device */
#endif
#if PWM_1_EN
PWM_1, /*< 2nd PWM device */
#endif
#if PWM_2_EN
PWM_2, /*< 3rd PWM device */
#endif
#if PWM_3_EN
PWM_3, /*< 4th PWM device */
#endif
PWM_UNDEFINED /**< Deprecated symbol, use PWM_UNDEF instead */
};
#ifdef __cplusplus
}
#endif

View File

@ -26,8 +26,6 @@
#include "periph_cpu.h"
#include "periph_conf.h"
/* TODO: remove once all platforms are ported to this interface */
#include "periph/dev_enums.h"
#ifdef __cplusplus
extern "C" {