diff options
| author | jepler <jepler@gmail.com> | 2019-09-11 20:09:38 -0500 |
|---|---|---|
| committer | jepler <jepler@gmail.com> | 2019-09-11 20:09:38 -0500 |
| commit | df48312ce78016dfb453a94c8e3e37d6e9ca37dd (patch) | |
| tree | e40b51bdc077fd179dcfec04ef52113eeee24822 | |
| parent | 89fed709addcbf713553cbaad38a5a6d61ef4fa4 (diff) | |
nRF: PWMOut: At deinit, make pin available again
Closes: #2146
| -rw-r--r-- | ports/nrf/common-hal/pulseio/PWMOut.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ports/nrf/common-hal/pulseio/PWMOut.c b/ports/nrf/common-hal/pulseio/PWMOut.c index b827470d3..6921091f8 100644 --- a/ports/nrf/common-hal/pulseio/PWMOut.c +++ b/ports/nrf/common-hal/pulseio/PWMOut.c @@ -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) { |
