GPIO_InitTypeDef GPIO_InitStructure的意思简单 GPIO_InitTypeDef 是结构体名 GPIO_InitStructure是结构体变...
如果你RCC_APB2PeriphClockCmd()这个函数没有调用GPIO_InitStruct结构体的话,放哪都没关系,如果调用了,最好放他前面,否则就会提示GPIO_InitStruct没有定义,如果没掉用那就没什么关系了 00分享举报您可能感兴趣的内容广告 传奇超变单职业官方首页——传奇游戏官网 传奇超变单职业《战online》2023传奇游戏经典重现,经...
校长 千言万语,尽在不言中……!!! HAL_GPIO_WritePin(GPIOA,GPIO_PIN_2|GPIO_PIN_10,GPIO_PIN_SET);HAL_GPIO_WritePin(GPIOC,GPIO_PIN_13,GPIO_PIN_RESET); /*Configure GPIO pin : PC13 */ GPIO_InitTypeDef GPIO_InitStruct = {0}; GPIO_InitStruct.Pin = GPIO_PIN_13; GPIO_InitStruct.Mode=...
定义结构体 typedef struct { uint32_t Pin; uint32_t Mode; uint32_t Pull; uint32_t Speed; } GPIO_InitTypeDef; GPIO_InitTypeDef GPIO_Init 对结构体元素Speed读取到 uint32_t config变量操作正确的语句( ) 答案:config=GPIO_Init.Speed 手机看题 你可能感兴趣的试题 单项选择题 哪一项不是相关...