2015-01-25 12:45 AM
when use i2c and remap pin , __HAL_AFIO_REMAP_I2C1_ENABLE(); function must be run before
__HAL_AFIO_REMAP_I2C1_ENABLE(); /**I2C1 GPIO Configuration PB8 ------> I2C1_SCL PB9 ------> I2C1_SDA */ GPIO_InitStruct.Pin = GPIO_PIN_8|GPIO_PIN_9; GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; GPIO_InitStruct.Speed = GPIO_SPEED_LOW; HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);2015-01-26 10:17 AM
Does that mean that there is a stm32f1cube now?
2015-01-26 12:36 PM
Does that mean that there is a stm32f1cube now?
I'd assume it's at beta sites.2015-01-26 02:33 PM
STM32CubeF1 version 1.0.0 is downloadable from within CubeMX.
It is dated 17-December-2014.