完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
各位大大安安,想请问PWM_EnablePeriodInt这函数的用法,里面参数PWM_PERIOD_INT_UNDERFLOW和PWM_PERIOD_INT_MATCH_CNR各代表什么意思,谢谢!
/** * @brief Enable period interrupt of selected channel * @param[in] pwm The pointer of the specified PWM module * @param[in] u32ChannelNum PWM channel number. Valid values are between 0~3 * @param[in] u32IntPeriodType Period interrupt type, could be either * - \ref PWM_PERIOD_INT_UNDERFLOW * - \ref PWM_PERIOD_INT_MATCH_CNR * @return None * @details This function is used to enable period interrupt of selected channel. * Every two channels, (0 1), (2 3), shares the period interrupt type setting. */ void PWM_EnablePeriodInt(PWM_T *pwm, uint32_t u32ChannelNum, uint32_t u32IntPeriodType) { (pwm)->PIER = ((pwm)->PIER ~(PWM_PIER_INT01TYPE_Msk << (u32ChannelNum >> 1))) | \ (PWM_PIER_PWMIE0_Msk << u32ChannelNum) | (u32IntPeriodType << (u32ChannelNum >> 1)); } |
|
相关推荐
1个回答
|
|
PWM_PERIOD_INT_UNDERFLOW 下计数时,计数值和CMRx匹配产生中断 PWM_PERIOD_INT_MATCH_CNR:上计数时,计数值和CMRx匹配产生中断
|
|
|
|
只有小组成员才能发言,加入小组>>
627浏览 3评论
511浏览 2评论
362浏览 1评论
381浏览 1评论
348浏览 1评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-23 07:40 , Processed in 0.775066 second(s), Total 79, Slave 62 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号