Bug STMF1x CubeMX I2C Slave Address
When setting the primary slave address for I2C in cubeMX for the STM32F1xx
The generated code will be the address * 2.
This created address is incorrect. The address should not be multiplied by 2.
for example:
Set I2c Slave address to 0x50
Generated code sets the OwnAddress to : 160. which is (0x50 * 2)
The st does not response to the address 0x50, because the ownAddress is set to another value.
