interrupt.h 729 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2013-07-06 Bernard first version
  9. */
  10. #ifndef __INTERRUPT_H__
  11. #define __INTERRUPT_H__
  12. #include <rthw.h>
  13. #include <platform.h>
  14. #define INT_IRQ 0x00
  15. #define INT_FIQ 0x01
  16. void rt_hw_interrupt_control(int vector, int priority, int route);
  17. void rt_hw_interrupt_init(void);
  18. void rt_hw_interrupt_mask(int vector);
  19. void rt_hw_interrupt_umask(int vector);
  20. int rt_hw_interrupt_get_irq(void);
  21. void rt_hw_interrupt_ack(int vector);
  22. rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler,
  23. void *param, const char *name);
  24. #endif