我可以为STM32F103ZE芯片上的GPIO引脚配置中断吗?
STM32F103ZE有可用的GPIO中断吗? 我浏览了数据表,但没有找到任何与之相关的内容。 我是这款处理器的新手,但最近使用了 TI 的 MSP430。 在 MSP430 中,我们可以使用一些 GPIO 寄存器来配置中断。 谁能告诉我我该怎么做?
Is there any GPIO interrupt available for STM32F103ZE?
I went through the datasheet but didn't find anything related to that.
I am new to this processor but recently used TI's MSP430.
In MSP430 we can configure interrupts using some GPIO registers.
Can anybody tell me how can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
请参阅数据表:
第 8.1.3 节规定:
如果查看第 9.2.5 节,您会发现必须设置外部 中断/事件控制器(EXTI)。中断外设(EXTI),以便将您想要观察的引脚映射到正确的中断中。
重新阅读数据表的第 8 节和第 9 节,并确保您了解需要如何设置每个 EXTI 寄存器才能侦听正确的 GPIO 线路,并触发正确的转换类型。
Yes.
Please refer to the datasheet:
Section 8.1.3 states:
If you check out section 9.2.5 you'll find that you have to set up the external interrupt peripheral (EXTI) in order to map the pins you want to observe into the correct interrupt.
Re-read sections 8 and 9 of the data sheet, and make certain you understand how each EXTI register needs to be setup to listen on the correct GPIO lines, and to trigger on the correct type of transition.