Zephyr Project API 4.1.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
intc_rz_ext_irq.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Renesas Electronics Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_DRIVERS_INTERRUPT_CONTROLLER_INTC_RZ_EXT_IRQ_H_
8#define ZEPHYR_DRIVERS_INTERRUPT_CONTROLLER_INTC_RZ_EXT_IRQ_H_
9
11typedef void (*intc_rz_ext_irq_callback_t)(void *arg);
12
19int intc_rz_ext_irq_enable(const struct device *dev);
20
27int intc_rz_ext_irq_disable(const struct device *dev);
28
38 void *arg);
39
40#endif /* ZEPHYR_DRIVERS_INTERRUPT_CONTROLLER_INTC_RZ_EXT_IRQ_H_ */
int intc_rz_ext_irq_enable(const struct device *dev)
Enable external interrupt for specified channel at NVIC.
void(* intc_rz_ext_irq_callback_t)(void *arg)
RZ external interrupt callback.
Definition intc_rz_ext_irq.h:11
int intc_rz_ext_irq_disable(const struct device *dev)
Disable external interrupt for specified channel at NVIC.
int intc_rz_ext_irq_set_callback(const struct device *dev, intc_rz_ext_irq_callback_t cb, void *arg)
Updates the user callback.
Runtime device structure (in ROM) per driver instance.
Definition device.h:453