STM32定時器重映射
void TIM3_GPIOB5_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO , ENABLE);
GPIO_AFIODeInit(); //將重映射恢復為初始值 //在程序中只可以調用一次,不然之前的設置就取消了
GPIO_PinRemapConfig(GPIO_PartialRemap_TIM3 ,ENABLE ); //重映射相應的外設
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5; //配置引腳
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
編輯:admin 最后修改時間:2018-05-18