Hi,
I'm using gazell library with app_pwm.
From documentation gazell use Timer2 and PPI channels 0,1,2. APP_PWM use Timer0.
When I disable pwm using app_pwm_disable(&PWM1), gazell can't send any packet, but when I enable it again, everything works fine.
I tried changing PPI channels of PWM with following code, but
PWM1.p_cb->ppi_channels[0] = 10;
PWM1.p_cb->ppi_channels[1] = 11;
PWM1.p_cb->ppi_group = 0;
Is there any solution to this problem ?