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

Merge pull request #9992 from haukepetersen/fix_periph_gpiofeaturesscope

periph/gpio: fix scope of GPIO_IRQ submodule
This commit is contained in:
Martine Lenders 2018-10-09 15:10:39 +02:00 committed by GitHub
commit a95957e513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,8 +172,6 @@ int gpio_init(gpio_t pin, gpio_mode_t mode);
int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank,
gpio_cb_t cb, void *arg);
#endif /* MODULE_PERIPH_GPIO_IRQ */
/**
* @brief Enable pin interrupt if configured as interrupt source
*
@ -194,6 +192,8 @@ void gpio_irq_enable(gpio_t pin);
*/
void gpio_irq_disable(gpio_t pin);
#endif /* MODULE_PERIPH_GPIO_IRQ */
/**
* @brief Get the current value of the given pin
*