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

Merge pull request #6682 from dkm/pr/gpio_cleanup

cpu/lm4f120: remove useless gpio_pp_t type
This commit is contained in:
Francisco Acosta 2017-03-03 17:40:02 +01:00 committed by GitHub
commit 1e8b3c8808

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
* @{