本帖最后由 出来逛逛 于 2018-3-9 14:04 编辑
用库函数GPIO口配置时RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB,ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_Init(GPIOB,&GPIO_InitStructure);
上面方式和下面方式配置结果有什么不同吗
GPIO_Init(GPIOB,GPIO_PIN_9,GPIO_MODE_OUT_PP_LOW_FAST)
这两种方式用在什么地方合适
|