打印

IO不能翻转

[复制链接]
176|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
冰糖炖雪梨|  楼主 | 2018-7-15 19:36 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
IO, pi, gp, GPIO, ni
void AD_GPIO_Config(void)
{               
                /*定义一个GPIO_InitTypeDef类型的结构体*/
                GPIO_InitTypeDef GPIO_InitStructure;
    /*开启LED相关的GPIO外设时钟*/
                RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
                /*选择要控制的GPIO引脚*/                                                                                                                           
                GPIO_InitStructure.GPIO_Pin =GPIO_Pin_7;         
                /*设置引脚模式为输出模式*/
                GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;   

    /*设置引脚的输出类型为推挽输出*/
    GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;

    /*设置引脚为上拉模式,默认LED亮*/
    GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;

                /*设置引脚速率为50MHz */   
                GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;

                /*调用库函数,使用上面配置的GPIO_InitStructure初始化GPIO*/
                GPIO_Init(GPIOA, &GPIO_InitStructure);         

    GPIO_InitStructure.GPIO_Pin =GPIO_Pin_1;        
    GPIO_Init(GPIOA, &GPIO_InitStructure);         

                RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE);                 
    /*选择要控制的GPIO引脚*/                                                                                                                           
                GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;        
    GPIO_Init(GPIOB, &GPIO_InitStructure);        
                  
}


PA1 IO口时能翻转的,为什么 PA7和PB11就不能IO翻转

使用特权

评论回复

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

430

主题

436

帖子

0

粉丝