I'm using three low power PWM instances driving three separate IO pins open an nRF 52810 and need to be able to re-configure each of the channels on the fly to select opposite polarity. Unlike PWM duty cycle, I see no function that allows this. The polarity of the output is established via a structure that is passed to the low_power_pwm_init function. Attempts to re-init the PWM instance result in an error as is stated in the SDK description for Low Power PWM. In my case the actual timing of the switch from one polarity to the other is not critical. It can be sloppy. So what is the best way to go about this? Is there a way to un-initialize the PWM channel and then re-initialize it with the opposite polarity?