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:
commit
a95957e513
@ -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,
|
int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank,
|
||||||
gpio_cb_t cb, void *arg);
|
gpio_cb_t cb, void *arg);
|
||||||
|
|
||||||
#endif /* MODULE_PERIPH_GPIO_IRQ */
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Enable pin interrupt if configured as interrupt source
|
* @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);
|
void gpio_irq_disable(gpio_t pin);
|
||||||
|
|
||||||
|
#endif /* MODULE_PERIPH_GPIO_IRQ */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the current value of the given pin
|
* @brief Get the current value of the given pin
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user