ecf2d82159
* Synchronize the code of the rt mart branch to the master branch. * TTY device * Add lwP code from rt-smart * Add vnode in DFS, but DFS will be re-write for rt-smart * There are three libcpu for rt-smart: * arm/cortex-a, arm/aarch64 * riscv64 Co-authored-by: Rbb666 <zhangbingru@rt-thread.com> Co-authored-by: zhkag <zhkag@foxmail.com>
27 lines
396 B
C
27 lines
396 B
C
#ifndef __HAL_INTC_H
|
|
#define __HAL_INTC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#include <intc/intc.h>
|
|
#include <intc/platform-intc.h>
|
|
|
|
/* INTC HAL API return status */
|
|
typedef enum {
|
|
HAL_INTC_STATUS_OK = 0,
|
|
HAL_INTC_STATUS_FAIL = -1,
|
|
} hal_intc_status_t;
|
|
|
|
|
|
hal_intc_status_t hal_intc_init(uint32_t irq_no);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __HAL_INTC_H */
|