STM32F1 I2C1 Alt Functions Drive Low
I am running into an issue with I2C on an STM32F103 that is driving me crazy. The code worked on the same processor with the normal pin mapping, however on new hardware with the alternate pin mapping for I2C1 (PortB 8 and 9) the I2C bus drives SCL and SDA low and no data is written to the bus. I have the SCL and SDA lines pulled out to a external breadboard where I have 10K pull-ups to 3.3v and a logic analyser attached to the lines to see the signals. There is no slave device connected to the lines. With a breakpoint at the start of the application, the SCL and SDA lines are high. Once I start start configuring the GPIO lines and call HAL_GPIO_Init() they drop low and never change states. Here is the configuration for the pins:
// Configure pins for I2C GPIO_InitStruct.Pin = GPIO_PIN_8|GPIO_PIN_9; GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; GPIO_InitStruct.Pull = GPIO_NOPULL; HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); We are using the HAL provided by ST: http://www.st.com/en/embedded-software/stm32cubef1.htmlThe HAL_GPIO_Init function is here: http://pastebin.com/eFjJe1K8It appears setting them to AltFunction Open Drain really drives them low.The project is open source and the full code repo can be found here: https://github.com/PaxInstruments/PaxInstruments-LabWiz-firmware/tree/hardware_v3_update/trunk-labwiz/LabWizFirmwareConfiguration starts in the src/labwiz/labwiz_entry.c file, main function with the MX_GPIO_Init() function. The HAL_Init() function before the GPIO setup calls HAL_MspInit(void) which is in the stm3f1xx_hal_msp.c file in the labwiz folder.I have no idea why the lines are driving low. Am I missing something obvious? Has anyone else used the Alternate Function for I2C1 on an STM32F1 successfully?Thank you.