我是靠谱客的博主 小巧煎蛋,最近开发中收集的这篇文章主要介绍51单片机的跳变方式触发外部中断,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

External Interrupts

The external sources can be programmed to be level-activated or transition-activated by setting or clearing bit IT1 or IT0 in Register TCON.
If ITx = 0, external interrupt x is triggered by a detected low at the INTx pin.
If ITx = 1, external interrupt x is edge-triggered.In this mode if successive samples of the INTx pin show a high in one cycle and a low in the next cycle ,interrupt requeatflag IEx in TCON is set. Flag bit IEx then requests the interrupt.


Since the external interrupt pins are sampled once each machine cycle,an input high or low should hold for at least 12 oscillator periods to ensure sampling. If the external interrupt is transition-activated,the external source has to hold the request pin high for at least one machine cycle, and then hold it low for at least one machine cycle to ensure that the transition is seen so that interrupt request flag IEx will be set. IEx will be automatically cleared by the CPU when the service
routine is called.


If the external interrupt is level-activated,the external source has to hold the request active until the requested interrupt is actually generated.Then it has to deactivate the request before the interrupt service routine is completed, or else another interrupt will be generated.

最后

以上就是小巧煎蛋为你收集整理的51单片机的跳变方式触发外部中断的全部内容,希望文章能够帮你解决51单片机的跳变方式触发外部中断所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部