下你所需,载你所想!
汇集开发技术源码资料

PWM输出(实验)

:4.497MB :1 :2022-09-29 14:35:05

部分简介

PWM输出(实验)如果开发者对于本文件有需要的可以参考。
在PA6持续输出pwm,占空比为50%
GPIO_InitTypeDef GPIO_InitStructure;
TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure;
TIM_OCInitTypeDef TIM_OCInitStructure;

RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM3,ENABLE); //TIM3ê±?óê1?ü
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE); //ê1?üPORTAê±?ó

GPIO_PinAFConfig(GPIOA,GPIO_PinSource6,GPIO_AF_TIM3); //GPIOA6?′ó??a?¨ê±?÷3
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 |GPIO_Pin_7; //GPIOFA
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF; //?′ó?1|?ü
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz; //?ù?è100MHz
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //í?íì?′ó?ê?3?
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; //é?à-
GPIO_Init(GPIOA,&GPIO_InitStructure); //3?ê??ˉPA6

PWM输出(实验)

热门推荐

相关文章