Introduction - If you have any usage issues, please Google them yourself
		 
void I2C_SDA_OUT(void)
{
	 GPIO_InitTypeDef GPIO_InitStructure 
	 GPIO_InitStructure.GPIO_Pin I2C_SDA 
	 GPIO_InitStructure.GPIO_Speed GPIO_Speed_50MHz 
	 GPIO_InitStructure.GPIO_Mode GPIO_Mode_Out_PP 
	 GPIO_Init(GPIOB,&GPIO_InitStructure) 
}