Introduction - If you have any usage issues, please Google them yourself
		 
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8 // AdDrdy
 
	GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU //PC8配置成上拉输入
 
	GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz 
 
	GPIO_Init(GPIOA, &GPIO_InitStructure) 		
 
 	 GPIO_SetBits(GPIOA,GPIO_Pin_8)