分析简述下列程序段每一条语句功能,说明整个程序段功能。1GPIO_InitTypeDef GPIO_InitStructure;
2RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
3GPIO_InitStructure.GPIO_Pin = GPIO_Pin_ALL;
4GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
5GPIO_InitStructure.GPIO_Mode = GPIO_Mode_In_FLOATING;
6GPIO_Init(GPIOB, &GPIO_InitStructure);