码迷,mamicode.com
首页 > 其他好文 > 详细

ISR中断服务程序

时间:2018-09-23 11:28:48      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:err   参数   工作   紧急   rup   示例   void   this   com   

__Interrupt

作用:执行紧急中断事件

要点:

1. 无参数

2. 无返回值

3. 短而高效,由中断置位标志位或发出信号由应用层去处理其他工作

4. 不应该有重入和性能上的问题,用puts而不是printf。

正确示例:

void interrupt int60()

{    

  puts("This is an example");

}

错误示例:

__interrupt double compute_area (double radius) 

double area = PI * radius * radius; 
printf(" Area = %f", area); 
return area; 
}

 

ISR中断服务程序

标签:err   参数   工作   紧急   rup   示例   void   this   com   

原文地址:https://www.cnblogs.com/embeddedking/p/9691919.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!