Browse Source

esp32/machine_pin: Reset pin if init sets mode.

This will forcibly grab the pin back from the ADC if it has previously been
associated with it.

Fixes #5771.
pull/6612/head
Jonathan Hogg 4 years ago
committed by Damien George
parent
commit
8a917ad252
  1. 5
      ports/esp32/machine_pin.c

5
ports/esp32/machine_pin.c

@ -150,6 +150,11 @@ STATIC mp_obj_t machine_pin_obj_init_helper(const machine_pin_obj_t *self, size_
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
// reset the pin first if this is a mode-setting init (grab it back from ADC)
if (args[ARG_mode].u_obj != mp_const_none) {
gpio_reset_pin(self->id);
}
// configure the pin for gpio
gpio_pad_select_gpio(self->id);

Loading…
Cancel
Save