1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/lm4f120: remove useless gpio_pp_t type

Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
This commit is contained in:
Marc Poulhiès 2016-04-08 13:20:12 +02:00
parent 1af1727759
commit b3307e1e1a

View File

@ -57,18 +57,6 @@ typedef enum {
/** @} */
#endif /* ndef DOXYGEN */
/**
* @brief Override values for pull register configuration
* @{
*/
#define HAVE_GPIO_PP_T
typedef enum {
GPIO_NOPULL = GPIO_PIN_TYPE_STD, /**< do not use internal pull resistors */
GPIO_PULLUP = GPIO_PIN_TYPE_STD_WPU, /**< enable internal pull-up resistor */
GPIO_PULLDOWN = GPIO_PIN_TYPE_STD_WPD /**< enable internal pull-down resistor */
} gpio_pp_t;
/** @} */
/**
* @brief Override values for pin direction configuration
* @{