高等继续教育 / 嵌入式系统导论
题型描述: 编程题
观察下面函数,回答下列问题。
void Funtion(void){
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOB, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
GPIO_SetBits(GPIOB, GPIO_Pin_5);
}
(1)该函数的功能是什么?
(2)该函数中哪个变量是结构体变量?
(3)该函数中的结构体变量有哪些成员变量?
(4)该函数中调用的STM32库函数有哪些?各函数的功能是什么?
参考答案:
佳题速递: