nrf: Correctly mark PWM unused during reset

This commit is contained in:
Jeff Epler 2022-04-04 10:07:14 -05:00
parent faca1ec3bf
commit fa4b4fa639
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE

View File

@ -108,6 +108,7 @@ STATIC void reset_single_pwmout(uint8_t i) {
for (int ch = 0; ch < CHANNELS_PER_PWM; ch++) { for (int ch = 0; ch < CHANNELS_PER_PWM; ch++) {
pwm_seq[i][ch] = (1 << 15); // polarity = 0 pwm_seq[i][ch] = (1 << 15); // polarity = 0
pwm->PSEL.OUT[ch] = 0xFFFFFFFF; // disconnnect from I/O
} }
} }