diff --git a/gpio.c b/gpio.c --- a/gpio.c +++ b/gpio.c @@ -23,7 +23,7 @@ void user_input(uint16_t* to_modify) void init_gpio(void) { - GPIO_InitTypeDef GPIO_InitStruct; + GPIO_InitTypeDef GPIO_InitStruct; // Enable SPI clocks RCC_APB2PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE); @@ -97,7 +97,7 @@ void init_gpio(void) { /*Enable or disable the AHB peripheral clock */ RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOB, ENABLE); -// SPI PINSSS + // SPI PINSSS /*Configure GPIO pin : PB, MOSI, SCK */ GPIO_InitStruct.GPIO_Pin = GPIO_Pin_13|GPIO_Pin_15; @@ -106,8 +106,8 @@ void init_gpio(void) { GPIO_InitStruct.GPIO_Speed = GPIO_Speed_10MHz; GPIO_Init(GPIOB, &GPIO_InitStruct); - GPIO_InitTypeDef GPIO_InitStruct2; -// MISO + GPIO_InitTypeDef GPIO_InitStruct2; + // MISO GPIO_InitStruct2.GPIO_Pin = GPIO_Pin_14; GPIO_InitStruct2.GPIO_Mode = GPIO_Mode_AF; GPIO_InitStruct2.GPIO_PuPd = GPIO_PuPd_NOPULL; @@ -127,20 +127,20 @@ void init_gpio(void) { */ /*Enable or disable the AHB peripheral clock */ - RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); + //RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); - GPIO_InitTypeDef GPIO_InitStruct3; + //GPIO_InitTypeDef GPIO_InitStruct3; /*Configure GPIO pin : PA */ - GPIO_InitStruct3.GPIO_Pin = GPIO_Pin_11|GPIO_Pin_12; - GPIO_InitStruct3.GPIO_Mode = GPIO_Mode_AF; - GPIO_InitStruct3.GPIO_PuPd = GPIO_PuPd_NOPULL; - GPIO_InitStruct3.GPIO_Speed = GPIO_Speed_10MHz; - GPIO_InitStruct3.GPIO_OType = GPIO_OType_PP; - GPIO_Init(GPIOA, &GPIO_InitStruct3); - GPIO_SetBits(GPIOA, GPIO_Pin_12); // emz test - GPIO_PinAFConfig(GPIOA, GPIO_PinSource11, GPIO_AF_USB); - GPIO_PinAFConfig(GPIOA, GPIO_PinSource12, GPIO_AF_USB); + //GPIO_InitStruct3.GPIO_Pin = GPIO_Pin_11|GPIO_Pin_12; + //GPIO_InitStruct3.GPIO_Mode = GPIO_Mode_AF; + //GPIO_InitStruct3.GPIO_PuPd = GPIO_PuPd_NOPULL; + //GPIO_InitStruct3.GPIO_Speed = GPIO_Speed_10MHz; + //GPIO_InitStruct3.GPIO_OType = GPIO_OType_PP; + //GPIO_Init(GPIOA, &GPIO_InitStruct3); + //GPIO_SetBits(GPIOA, GPIO_Pin_12); // emz test + //GPIO_PinAFConfig(GPIOA, GPIO_PinSource11, GPIO_AF_USB); + //GPIO_PinAFConfig(GPIOA, GPIO_PinSource12, GPIO_AF_USB); } // vim:softtabstop=4 shiftwidth=4 expandtab