1个回答
展开全部
这是GPIO的配置
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE);
GPIO_InitStructure.GPIO_Pin = 【GPIO_Pin_x | GPIO_Pin_y】;
GPIO_InitStructure.GPIO_Mode = 【GPIO_Mode_OUT】;
GPIO_InitStructure.GPIO_OType = 【GPIO_OType_PP】;
GPIO_InitStructure.GPIO_PuPd = 【GPIO_PuPd_UP】;
GPIO_InitStructure.GPIO_Speed = 【GPIO_Speed_50MHz】;
GPIO_Init(GPIOB, &GPIO_InitStructure);
括号中是你需要修改的,看你用到的是哪几个引脚。。
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE);
GPIO_InitStructure.GPIO_Pin = 【GPIO_Pin_x | GPIO_Pin_y】;
GPIO_InitStructure.GPIO_Mode = 【GPIO_Mode_OUT】;
GPIO_InitStructure.GPIO_OType = 【GPIO_OType_PP】;
GPIO_InitStructure.GPIO_PuPd = 【GPIO_PuPd_UP】;
GPIO_InitStructure.GPIO_Speed = 【GPIO_Speed_50MHz】;
GPIO_Init(GPIOB, &GPIO_InitStructure);
括号中是你需要修改的,看你用到的是哪几个引脚。。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询