I3C LL_I3C_ControllerHandleMessage Problem
I am using the STM32H523 microcontroller with I3C function and a system clock of 250MHz. I am configuring LL-I3C_SetPeriodClockHighI3C (I3C1,0x0D) based on the LL library;
LL_I3C_SetPeriodClockLowPP(I3C1,0x0D);
LL_I3C_SetPeriodClockLowOD(I3C1,0x0D);
At this time, the clock is about 8.9MHz, and the oscilloscope waveform is outputting normally, but when configured as
LL_I3C_SetPeriodClockHighI3C(I3C1,0x09);
LL_I3C_SetPeriodClockLowPP(I3C1,0x09);
LL_I3C_SetPeriodClockLowOD(I3C1,0x09);
At this time, the clock is about 12.5MHz. The oscilloscope sees that before sending the normal waveform, the microcontroller will send a byte of 0x3F, which is not what I want. I want to know where the problem lies.
