nRF: PWMOut: At deinit, make pin available again

Closes: #2146
This commit is contained in:
jepler 2019-09-11 20:09:38 -05:00
parent 89fed709ad
commit df48312ce7

View File

@ -256,6 +256,9 @@ void common_hal_pulseio_pwmout_deinit(pulseio_pwmout_obj_t* self) {
self->pwm = NULL;
pwmout_free_channel(pwm, self->channel);
reset_pin_number(self->pin_number);
self->pin_number = NO_PIN;
}
void common_hal_pulseio_pwmout_set_duty_cycle(pulseio_pwmout_obj_t* self, uint16_t duty_cycle) {