/*
/def ISR(vector [, attributes])
/ingroup avr_interrupts
/code #include <avr/interrupt.h> /endcode
Introduces an interrupt handler function (interrupt service
routine) that runs with global interrupts initially disabled
by default with no attributes specified.
The attributes are optional and alter the behaviour and resultant
generated code of the interrupt routine. Multiple attributes may
be used for a single function, with a space seperating each
attribute.
*/
# define ISR(vector, [attributes])
#else /* real code */
#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
# define __INTR_ATTRS used, externally_visible
#else /* GCC < 4.1 */
# define __INTR_ATTRS used
#endif
#ifdef __cplusplus
# define ISR(vector, ...) /
extern "C" void vector (void) __attribute__ ((signal,__INTR_ATTRS)) __VA_ARGS__; /
void vector (void)
#else
# define ISR(vector, ...) /
void vector (void) __attribute__ ((signal,__INTR_ATTRS)) __VA_ARGS__; /
void vector (void)
#endif
/*
/def SIGNAL(vector)
/ingroup avr_interrupts
/code #include <avr/interrupt.h> /endcode
Introduces an interrupt handler function that runs with global interrupts
initially disabled.
This is the same as the ISR macro without optional attributes.
/deprecated Do not use SIGNAL() in new code. Use ISR() instead.
*/
# define SIGNAL(vector)
由上可知:ISR是用SIGNAL属性写的,都是不能中断嵌套。区别是ISR(vector [, attributes])参数可变,,而SIGNAL(vector)只有一个参数vector。GCC建议使用ISR,代替SIGNAL。SIGNAL 是为了相容旧程序代码而保留下来的。
所谓不能中断嵌套,是指执行中断服务时不能再响应其他中断。因为进入中断程序后,立即会禁止总中断,而中断返回前使能总中断。
要中断嵌套,须进入中断程序后使能总中断,中断返回之前禁止总中断。响应的代码分别为:“ sei(); ” 、“ cli(); ”。

本文深入探讨了AVR中断服务函数ISR和SIGNAL的使用方法及特性,强调ISR的灵活性和GCC建议使用的场景。ISR允许指定多个属性来调整中断服务行为,而SIGNAL则提供了一个基本的中断服务入口,不支持额外属性。
934

被折叠的 条评论
为什么被折叠?



