STM32 内部时钟输出PA.8(MCO) 如何实现 ,求大侠给例程,谢谢
发布网友
发布时间:2022-04-30 12:00
我来回答
共3个回答
热心网友
时间:2022-06-22 02:45
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
RCC_MCOConfig(RCC_MCO_PLLCLK_Div2 );
STM32F103只要这样写就OK了啊~
热心网友
时间:2022-06-22 02:46
RCC_APB2PeriphClockCmd(RCC_APB2Periph_SYSCFG, ENABLE); RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE); GPIO_PinAFConfig(GPIOA, GPIO_PinSource8, GPIO_AF_MCO); RCC_MCO1Config(RCC_MCO1Source_HSE, RCC_MCO1Div_2);
热心网友
时间:2022-06-22 02:46
void MCO_GPIO_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(MCO_GPIO_CLK | RCC_APB2Periph_AFIO,ENABLE);
GPIO_InitStructure.GPIO_Pin = MCO_GPIO_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(MCO_GPIO_PORT,&GPIO_InitStructure);
RCC_MCOConfig( RCC_MCO_PLLCLK_Div2);
}