I2C comunication doesn't work
Hello
I am trying to drive a MEMS mirror via I2C communication using the nucleo-h723zg board.
This is the clock configuration:


Then I activated the I2C1 as follow:


I used the pins PB8 and PB9 for SCL and SDA:

I'm using the DAC called MCP47x6A0T, so the address should be:
static const uint8_t DAC_Address= 0x60;
Then I give an input data:
static const uint8_t MEMS_Digital_Input2= 0x1C;
and then I use the function Master Transmit in the while loop:
HAL_I2C_Master_Transmit(&hi2c1, DAC_Address, MEMS_Digital_Input2, 1, HAL_MAX_DELAY);
I've this circuit connected to the microcontroller:

Using an oscilloscope and a multimeter I'm always measuring 0V and I can't see the SCL and SDA signals.
Do you know where am I doing wrong?
Kind regards
