Lines Matching +full:int +full:- +full:pin
4 * SPDX-License-Identifier: Apache-2.0
11 * @brief Enable interrupt for specific port_id and pin combination
14 * @param pin pin Pin the port
21 * @retval -ENOTSUP If the specific port_id/pin combination is not supported or
23 * @retval -EBUSY If the interrupt line is already used by a different port_id/pin
24 * @retval -EINVAL If the trigger combination is invalid
28 int intc_xmc4xxx_gpio_enable_interrupt(int port_id, int pin, enum gpio_int_mode mode,
29 enum gpio_int_trig trig, void(*fn)(const struct device*, int), void *user_data);
32 * @brief Disable interrupt for specific port_id and pin combination
35 * @param pin pin Pin the port
37 * @retval -EINVAL If the specific port_id and pin combination has no interrupt
41 int intc_xmc4xxx_gpio_disable_interrupt(int port_id, int pin);