Files
player/Project/Src/MyApp/irq_vector.h
2025-06-27 00:32:57 +08:00

18 lines
225 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef IRQ_VECTOR_H__
#define IRQ_VECTOR_H__
void irq_vector_init(void);
//设置中断函数,同时返回旧的中断函数irq_fun==0时不做修改
void *irq_vector_set_irq(int irq_num,void *irq_fun);
#endif