完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
本帖最后由 一只耳朵怪 于 2018-6-8 11:15 编辑
Hi, 芯片规格书和timer.h文件中,能够看出通用timer能够支持TIMER_TIMA_MATCH和TIMER_TIMB_MATCH中断,为什么驱动文件timer.c的函数TimerIntEnable()却没有列出TIMER_TIMA_MATCH和TIMER_TIMB_MATCH?我的库版本是1.1。 实际测试TIMER_TIMA_MATCH是正常的。 //***************************************************************************** // //! Enables individual timer interrupt sources. //! //! param ui32Base is the base address of the timer module. //! param ui32IntFlags is the bit mask of the interrupt sources to be enabled. //! //! This function enables the indicated timer interrupt sources. Only the //! sources that are enabled can be reflected to the processor interrupt; //! disabled sources have no effect on the processor. //! //! The e ui32IntFlags parameter must be the logical OR of any combination of //! the following: //! //! - b TIMER_CAPB_EVENT - Capture B event interrupt //! - b TIMER_CAPB_MATCH - Capture B match interrupt //! - b TIMER_TIMB_TIMEOUT - Timer B timeout interrupt //! - b TIMER_RTC_MATCH - RTC interrupt mask //! - b TIMER_CAPA_EVENT - Capture A event interrupt //! - b TIMER_CAPA_MATCH - Capture A match interrupt //! - b TIMER_TIMA_TIMEOUT - Timer A timeout interrupt //! //! return None. // //***************************************************************************** void TimerIntEnable(uint32_t ui32Base, uint32_t ui32IntFlags) [ // // Check the arguments. // ASSERT(_TimerBaseValid(ui32Base)); // // Enable the specified interrupts. // HWREG(ui32Base + TIMER_O_IMR) |= ui32IntFlags; ] |
|
相关推荐
1个回答
|
|
Bruce
感谢你的反馈,user's guide 并没有完全标明所有已经define的宏定义。Timer中断的宏如下所示: //***************************************************************************** // // Values that can be passed to TimerIntEnable, TimerIntDisable, and // TimerIntClear as the ui32IntFlags parameter, and returned from // TimerIntStatus. // //***************************************************************************** #define TIMER_TIMB_MATCH 0x00000800 // TimerB match interrupt #define TIMER_CAPB_EVENT 0x00000400 // CaptureB event interrupt #define TIMER_CAPB_MATCH 0x00000200 // CaptureB match interrupt #define TIMER_TIMB_TIMEOUT 0x00000100 // TimerB time out interrupt #define TIMER_TIMA_MATCH 0x00000010 // TimerA match interrupt #define TIMER_RTC_MATCH 0x00000008 // RTC interrupt mask #define TIMER_CAPA_EVENT 0x00000004 // CaptureA event interrupt #define TIMER_CAPA_MATCH 0x00000002 // CaptureA match interrupt #define TIMER_TIMA_TIMEOUT 0x00000001 // TimerA time out interrupt 实际使用中,请以timer.h中定义的为准。 Wellin |
|
|
|
只有小组成员才能发言,加入小组>>
332 浏览 1 评论
528 浏览 2 评论
NA555DR VCC最低电压需要在5V供电,为什么用3.3V供电搭了个单稳态触发器也使用正常?
772 浏览 3 评论
MSP430F249TPMR出现高温存储后失效了的情况,怎么解决?
649 浏览 1 评论
对于多级放大电路板,在PCB布局中,电源摆放的位置应该注意什么?
1124 浏览 1 评论
AT32F407在USART2 DMA发送数据时,接包接到了要发送的数据,程序还是处于等待传输完成的标识判断中,为什么?
54浏览 29评论
92浏览 23评论
请问下tpa3220实际测试引脚功能和官方资料不符,哪位大佬可以帮忙解答下
248浏览 20评论
请教下关于TAS5825PEVM评估模块原理图中不太明白的地方,寻求答疑
196浏览 14评论
两个TMP117传感器一个可以正常读取温度值,一个读取的值一直是0,为什么?
54浏览 13评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-21 21:27 , Processed in 0.768981 second(s), Total 75, Slave 59 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号