I2C multibus on alternative pins howto or is possible?
I ask for this , but any other same alternative use.

i set primary I2C on PB10,11 as on image an reserve PA10,11 and PF0,1
My plan is use alternative AF as I2C switch similar as IC PI4MSD5V9540
On PF pins is device on 5V I2C .
In code i try add to one I2C1 (have only one) PF pins when PB is active.
/**I2C1 GPIO Configuration
PF0 ------> DDC_SCL
PF1 ------> DDC_SDA
*/
GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1;
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
GPIO_InitStruct.Alternate = GPIO_AF1_I2C1;
HAL_GPIO_Init(GPIOF, &GPIO_InitStruct);On scope seem signals is separated and address is send (HAL_I2C_Master_Transmit one byte) and ACK on PF pins, but no next data send. Seems somethink in HAL is broken after pin add.
When code deinit PB and only switch full pins to PF + init back com works ok.
Exist way to use more as one AF pin ?
