How to implement I2C communication between two STM32s.
I'm implementing I2C communication using an STM32WBA2 as the Master and an STM32U0 as the Slave.
I've implemented a process to send one byte of data (0x75) from the Master to the Slave, with the Slave Address set to 0x68. However, when I check the SCL/SDA waveforms, it appears there's no ACK from the Slave.

On the other hand, the Slave receives an event in HAL_I2C_AddrCallback() when it receives 0x68, but the value read by HAL_I2C_Slave_Receive() is empty.

How can I receive 0x75 from the Master?
I've attached the main.c files for both the Master and Slave.
The CubeMX configuration is as follows:

