mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 20:43:30 +08:00
8 lines
124 B
C
8 lines
124 B
C
|
#ifndef INTERRUPT_H__
|
||
|
#define INTERRUPT_H__
|
||
|
|
||
|
void rt_hw_irq_enable(int vector);
|
||
|
void rt_hw_irq_disable(int vector);
|
||
|
|
||
|
#endif
|