(GCC)SIGNAL与ISR的区别

                        (GCC)SIGNAL与ISR的区别

 

        在 interrupt.h中(Copyright (c) 2007)有:

/*

   /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(); ”。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值