What I2C device address to use for STM32 slave bootloader?
AN2606, page 268, for STM32H7B3I I2C bootloader, says "Slave 7-bit address: 0b10101111x
(where x = 0 for write and x = 1 for read)".
Unfortunately, "10101111" is eight not seven bits.
I have two STM32H7B3I EVAL systems successfully communicating via I2C, 7-bit addressing, where each device is identified by a 7-bit value which is left shifted one bit before calling HAL_I2C_Master_***_IT functions.
AN4221, which details the I2C slave bootloader protocol, says "The I2C slave address for each product bootloader is specified in the AN2606".
What is the correct 7-bit address to use?
