Browse Source

add rt_hw_interrupt_uninstall declare in rthw

zhao maosheng 1 year ago
parent
commit
eb6591ddee
1 changed files with 3 additions and 0 deletions
  1. 3 0
      include/rthw.h

+ 3 - 0
include/rthw.h

@@ -132,6 +132,9 @@ rt_isr_handler_t rt_hw_interrupt_install(int              vector,
                                          rt_isr_handler_t handler,
                                          void            *param,
                                          const char      *name);
+void rt_hw_interrupt_uninstall(int              vector,
+                               rt_isr_handler_t handler,
+                               void            *param);
 
 #ifdef RT_USING_SMP
 rt_base_t rt_hw_local_irq_disable(void);