亚洲春色中文字幕久久久-三上亚,一吻二脱三床四吻胸,国产真实伦对白视频全集,在线毛片观看,精品成品入口黄网,国产毛aⅴ片久久久,亚洲AV色香蕉一区二区三区老师,萧皇后A级艳片,色情日本视频更新,99久久亚洲精品日本无码

標題: 關于單片機與編碼器的問題求教 [打印本頁]

作者: gaoyan    時間: 2020-9-1 09:41
標題: 關于單片機與編碼器的問題求教
你好,我在STM32中把TIM1配置為編碼器模式,編碼器的AB兩項連到了TIM1的CH1和CH2,為什么沒有讀數啊
下邊是我找的代碼,麻煩大神看看哪里不對,謝謝

#include "decoder.h"
#include <stm32f4xx_tim.h>
#include <stm32f4xx_gpio.h>
#include <stm32f4xx_rcc.h>


uint16_t con_speed_period=20;

float Decoder_GetSpeed(void)
{
        static int16_t tmp;
        static float re_dat=0;
        tmp=(int16_t)Decoder_GetCnt();
        if(tmp>20000)tmp=20000;  
        else if(tmp<-20000)tmp=-20000;
        
     
        re_dat=(float)((((int16_t)tmp)*1000/(1024.0*con_speed_period))*60);
        return re_dat;
}


void Decoder_Init(void)
{
        Decoder_GPIO_Init();
        Decoder_TIM_Init();
}


void Decoder_GPIO_Init(void)
{
        GPIO_InitTypeDef GPIO_InitStructure;
          RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE , ENABLE);/////////////////3333
        

         GPIO_InitStructure.GPIO_Pin =  GPIO_Pin_11|GPIO_Pin_9;
          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
        GPIO_InitStructure.GPIO_OType = GPIO_OType_OD;        
        GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;        
          GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
          GPIO_Init(GPIOE, &GPIO_InitStructure);
        
        GPIO_PinAFConfig(GPIOE, GPIO_PinSource11, GPIO_AF_TIM1);
        GPIO_PinAFConfig(GPIOE, GPIO_PinSource9, GPIO_AF_TIM1);
}

void Decoder_TIM_Init(void)
{        
        TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure;
        TIM_ICInitTypeDef TIM_ICInitStructure;

        RCC_APB2PeriphClockCmd(RCC_APB2Periph_TIM1 , ENABLE);        /////////////123

        TIM_DeInit(TIM1);
        TIM_TimeBaseStructInit(&TIM_TimeBaseStructure);
        
        TIM_TimeBaseStructure.TIM_Period = ENCODER_TIM_PERIOD-1;
        TIM_TimeBaseStructure.TIM_Prescaler = 0x00;
        TIM_TimeBaseStructure.TIM_ClockDivision = TIM_CKD_DIV1;
        TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;
        TIM_TimeBaseInit(TIM1, &TIM_TimeBaseStructure);
        TIM_EncoderInterfaceConfig(TIM1, TIM_EncoderMode_TI12, TIM_ICPolarity_Falling, TIM_ICPolarity_Falling);
        
        TIM_ICStructInit(&TIM_ICInitStructure);
        TIM_SetCounter(TIM1, 0);
        TIM_Cmd(TIM1, ENABLE);               
}


int Decoder_GetCnt()
{
        static int Decoder_cnt=0;
        Decoder_cnt=(short)(TIM1 -> CNT);
        TIM1 -> CNT=0;        
        return Decoder_cnt;
}

IMG_1592.JPG (1.28 MB, 下載次數: 68)

這是編碼器

這是編碼器





歡迎光臨 (http://www.denmoz.com/bbs/) Powered by Discuz! X3.1