Hello,
I can obtain PWM signal output by reference evkbimxrt1050_pwm example.
But when I operate not only PWM but also I2C, I2C has always error.
And I found that below code is cause of problem.
CLOCK_SetDiv(kCLOCK_AhbDiv, 0x2);
If I use below code(which can be found BOARD_BootClockRUN()), I2C can operate well.
CLOCK_SetDiv(kCLOCK_AhbDiv, 0x0);
I want to use PWM and I2C simultaneously.
Would you recommend how I can set PWM properly?
Thanks in advance.