ddllxxrr 发表于 2019-7-22 21:24

【ufun学习】定时器时钟的研究

<div class='showpostmsg'><p><br />
对于定时器,勾引我要研究的只是一句话,而这句话老让我范合计。</p>

<p><br />
</p>

<p>有的看官觉得说的没有争议。但实践引来就不一样了。</p>

<p>下边的代码是初使化的通用代码:</p>

<pre>
<code>TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure;
    RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE);
    //???????
    TIM_ClearITPendingBit(TIM2,TIM_IT_Update);//TIM_ClearFlag(TIM2,TIM_FLAG_Update);//??????

    //????????0-0xffff,72M/36000=2000
    TIM_TimeBaseStructure.TIM_Period = arr;
    //????????0-oxffff,???36000??
    TIM_TimeBaseStructure.TIM_Prescaler = psc;
    ////???????????
    //????,???0,??????
    TIM_TimeBaseStructure.TIM_ClockDivision = TIM_CKD_DIV1;</code></pre>

<p>TIM_CKD_DIV1 是预分频吗?????</p>

<p>我查了下书:</p>

<p></p>

<p>&nbsp;</p>

<p>&nbsp;</p>

<p>显然,它不是预分频。那么只有prescaler是了。有的看官说了,这不费话么,写着预分频么????</p>

<p>本人对英语不是十分精通。</p>

<p>&nbsp;</p>

<p>疑问又来了,谁没有事会把预分频设为1呢????</p>

<p>我想这块之所以到现在没有范病,是因为大家都抄来抄去,哪家例程也不会设为1。那么,设为1果真是36MHZ么????</p>

<p>&nbsp;</p>

<p>我用下边的证明:</p>

<pre>
<code>#include "stm32f10x.h"
#include "stdio.h"
#include "main.h"
#include "stdlib.h"

#define B_ON GPIO_ResetBits(GPIOA,GPIO_Pin_0)
#define B_OFF GPIO_SetBits(GPIOA,GPIO_Pin_0)

void GPIO_Config(void);
void TIM2_Config(u16 arr,u16 psc);
void NVIC_Config(void);

uint32_t count;
//???
int main(void)
{
    GPIO_Config();
    //((1+arr )/72M)*(1+psc )=((1+1999)/72M)*(1+35999)=1?
    //TIM2_Config(1999,35999);
          TIM2_Config(35999,1);
    NVIC_Config();
    while(1);

}

//???GPIO
void GPIO_Config(void)
{
    GPIO_InitTypeDef GPIO_InitStructure;
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);

    //PC13?
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
    GPIO_Init(GPIOA,&amp;GPIO_InitStructure);
    GPIO_ResetBits(GPIOA,GPIO_Pin_0); //??LED
}


void TIM2_Config(u16 arr,u16 psc)
{
   
    TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure;
    RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE);
    TIM_ClearITPendingBit(TIM2,TIM_IT_Update);//TIM_ClearFlag(TIM2,TIM_FLAG_Update);//??????

   
    TIM_TimeBaseStructure.TIM_Period = arr;

    TIM_TimeBaseStructure.TIM_Prescaler = psc;
   
    TIM_TimeBaseStructure.TIM_ClockDivision = TIM_CKD_DIV1;
   
   
    TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;

    TIM_TimeBaseInit(TIM2,&amp;TIM_TimeBaseStructure);

   
    TIM_ITConfig(TIM2,TIM_IT_Update,ENABLE);
   
    TIM_Cmd(TIM2,ENABLE);
}



void NVIC_Config(void)
{
    NVIC_InitTypeDef NVIC_InitStructure;
    NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);
    NVIC_InitStructure.NVIC_IRQChannel = TIM2_IRQn;
    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3;
    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    NVIC_Init(&amp;NVIC_InitStructure);
}



//--------------------stm32f10x_it.c------------------------

void TIM2_IRQHandler(void)
{
   
    if(TIM_GetITStatus(TIM2,TIM_IT_Update)!=RESET)
    {
      
      count++;
                        TIM_ClearITPendingBit(TIM2,TIM_IT_Update);
                        if(count &gt;= 1000)
                        {       
   
    GPIO_WriteBit(GPIOA,GPIO_Pin_0,(BitAction)(!GPIO_ReadOutputDataBit(GPIOA,GPIO_Pin_0)));
                        count = 0;
                        }
    }

}

















</code></pre>

<p>它和不用1时的时间是一样的。这就证明了,只要我们在预分频不用1,定时器的时钟就是APB时钟的两倍即72MHZ。</p>

<p>话又说回来了,谁平时有病才把第二个参数设为1。</p>

<p><br />
<b><font color="#5E7384">此内容由EEWORLD论坛网友<font size="3">ddllxxrr</font>原创,如需转载或用于商业用途需征得作者同意并注明出处</font></b></p>
</div><script>                                        var loginstr = '<div class="locked">查看本帖全部内容,请<a href="javascript:;"   style="color:#e60000" class="loginf">登录</a>或者<a href="https://bbs.eeworld.com.cn/member.php?mod=register_eeworld.php&action=wechat" style="color:#e60000" target="_blank">注册</a></div>';
                                       
                                        if(parseInt(discuz_uid)==0){
                                                                                                (function($){
                                                        var postHeight = getTextHeight(400);
                                                        $(".showpostmsg").html($(".showpostmsg").html());
                                                        $(".showpostmsg").after(loginstr);
                                                        $(".showpostmsg").css({height:postHeight,overflow:"hidden"});
                                                })(jQuery);
                                        }                </script><script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script"),eewurl="//counter.eeworld.com.cn/pv/count/";a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,523)</script>

desk1983 发表于 2019-7-23 08:29

<p>非常好的资料,感谢分享;<br />
共享精神万岁。<br />
希望楼主以后多多分享资料,帮助更多的电子爱好者。</p>
页: [1]
查看完整版本: 【ufun学习】定时器时钟的研究