中断测试程序-最新西门子mes汽车解决方案

时间:2024-06-23 11:54:41
【文件属性】:

文件名称:中断测试程序-最新西门子mes汽车解决方案

文件大小:5.62MB

文件格式:PDF

更新时间:2024-06-23 11:54:41

STC12c5608ad单片机资料

6.6 中断测试程序 6.6.1 外部中断0(INT0)的测试程序 1. 程序�——演示外部中断�的下降沿中断 C程序: /*------------------------------------------------------------------------------------*/ /* --- STC MCU International Limited ---------------------------------------*/ /* --- 演示STC �T 系列单片机外部中断0((下降沿) -----------------------*/ /* --- Mobile: (86)�3922805�90 -----------------------------------------------*/ /* --- Fax: 86-755-82905966 ---------------------------------------------------*/ /* --- Tel: 86-755-829484�2 ----------------------------------------------------*/ /* --- Web: www.STCMCU.com -----------------------------------------------*/ /* 如果要在程序中使用或在文章中引用该程序, -------------------- ---*/ /* 请在程序中或文章中注明使用了STC的资料及程序 -----------*/ /*-------------------------------------------------------------------------------------*/ #include "reg5�.h" //External interrupt0 service routine void exint0() interrupt 0 //INT0, interrupt 0 (location at 0003H) { } void main() { IT0 = �; //set INT0 interrupt type (�:Falling 0:Low level) EX0 = �; //enable INT0 interrupt EA = �; //open global interrupt switch while (�); }


网友评论