完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
嗨,
我们正在使用SPC560B64控制器并且想要启动STM_0,无法启动STM计数器。请提供STM计时器启动的示例代码。 问候, Bhagyashri 以上来自于谷歌翻译 以下为原文 Hi, We are using SPC560B64 controller and want to start STM_0, unable to start STM counter. Please provide us the sample code for STM timer start. Regards, Bhagyashri |
|
相关推荐
2个回答
|
|
你好,
当前版本的SPC5Studio支持用于RLA架构的STM驱动程序。驱动程序为所有支持的平台(包括spc560b)提供了自己的测试应用程序。只需使用向导导入它,生成,您将获得所需的代码。 STM计数器启动代码位于stm_lld_enable函数中 void stm_lld_enable(STMDriver * stmd){ uint8_t i; / *设置预分频器* / stmd-&gt; stm_tagp-&gt; CR.R =(stmd-&gt; prescaler-1U)&lt;&lt; 8; / *设置比较寄存器和启用通道* / for(i = 0; i&lt; stmd-&gt; noofchannels; i ++){ if(stmd-&gt; stm_ch_config .enabled == TRUE){ / *设置比较寄存器* / stmd-&gt; stm_tagp-&gt; CH .CMP.B.CMP = stmd-&gt; stm_ch_config .counter; / *清除中断标志* / stmd-&gt; stm_tagp-&gt; CH .CIR.B.CIF = STM_CCR_CIF_CLEAR; / *启用频道* / stmd-&gt; stm_tagp-&gt; CH .CCR.B.CEN = STM_CIR_CEN_ENABLE; } } / *重置计数器* / stmd-&gt; stm_tagp-&gt; CNT.R = 0x00000000U; / *启用STM * / stmd-&gt; stm_tagp-&gt; CR.B.TEN = STM_CR_TEN_ENABLE; } 问候 以上来自于谷歌翻译 以下为原文 Hello, current version of SPC5Studio supports STM driver for RLA architecture. Driver comes with his own test application for all supported platform includind spc560b. Simply import it using the wizard, generate and you will get the code you need. the STM counter start code is located in stm_lld_enable function void stm_lld_enable (STMDriver *stmd){ uint8_t i; /* set the prescaler */ stmd->stm_tagp->CR.R = (stmd->prescaler-1U) << 8 ; /* set compare register and enable channels */ for (i=0; i if (stmd->stm_ch_config.enabled == TRUE){ /* set compare register */ stmd->stm_tagp->CH.CMP.B.CMP = stmd->stm_ch_config.counter; /* clear interrupt flag */ stmd->stm_tagp->CH.CIR.B.CIF = STM_CCR_CIF_CLEAR; /* enable channel */ stmd->stm_tagp->CH.CCR.B.CEN = STM_CIR_CEN_ENABLE; } } /* reset counter */ stmd->stm_tagp->CNT.R = 0x00000000U; /*enable STM */ stmd->stm_tagp->CR.B.TEN = STM_CR_TEN_ENABLE; } Regards |
|
|
|
|
|
|
|
只有小组成员才能发言,加入小组>>
请教:在使用UDE STK时,单片机使用SPC560D30L1,在配置文件怎么设置或选择?里面只有SPC560D40的选项
2623 浏览 1 评论
3206 浏览 1 评论
请问是否有通过UART连接的两个微处理器之间实现双向值交换的方法?
1779 浏览 1 评论
3605 浏览 6 评论
5985 浏览 21 评论
938浏览 4评论
1313浏览 4评论
在Linux上安装Atollic TRUEStudio的步骤有哪些呢?
581浏览 3评论
使用DMA激活某些外设会以导致外设无法工作的方式生成代码是怎么回事
1301浏览 3评论
1356浏览 3评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-20 16:41 , Processed in 1.173786 second(s), Total 80, Slave 64 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号