STM32--GPIO初始化

under 单片机  嵌入式开发  tag     Published on January 1st , 2021 at 02:00 pm

特殊端口

串口1:PA9 PA10

GPIOA

void init(void)
{
    /*-------------------配置使用的端口------------------*/
    GPIO_InitTypeDef  GPIO_InitStruct;
    
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE); //使能GPIOA时钟
    
    GPIO_InitStruct.GPIO_Pin     = GPIO_Pin_1;           //配置哪个IO口
    GPIO_InitStruct.GPIO_Mode    = GPIO_Mode_Out_PP;     //配置模式
    GPIO_InitStruct.GPIO_Speed   = GPIO_Speed_50MHz;     //配置IO口速度,仅输出有效
    GPIO_Init(GPIOA,&GPIO_InitStruct);                   //初始化GPIOA的参数为以上结构体
    
    GPIO_InitStruct.GPIO_Pin     = GPIO_Pin_2;           //配置哪个IO口
    GPIO_Init(GPIOA,&GPIO_InitStruct);                   //初始化GPIOA的参数为以上结构体
    
    GPIO_WriteBit(GPIOA,GPIO_Pin_1,0) ;
    GPIO_WriteBit(GPIOA,GPIO_Pin_2,0) ;
}

GPIOB

void init(void)
{
    GPIO_InitTypeDef  GPIO_InitStruct;
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
  
    GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_6;
    GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_InitStruct.GPIO_Mode = GPIO_Mode_Out_PP;
    GPIO_Init(GPIOB, &GPIO_InitStruct);
}

GPIOC


本文由simyng创作, 采用知识共享署名4.0 国际许可协议进行许可,转载前请务必署名
  文章最后更新时间为:December 31st , 2020 at 11:18 pm