Skip to content

Commit

Permalink
remove pin claim from digitalinout
Browse files Browse the repository at this point in the history
  • Loading branch information
Randall-Scharpf committed Nov 13, 2024
1 parent 100a045 commit 99ee51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/atmel-samd/common-hal/digitalio/DigitalInOut.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

digitalinout_result_t common_hal_digitalio_digitalinout_construct(
digitalio_digitalinout_obj_t *self, const mcu_pin_obj_t *pin) {
claim_pin(pin);
// claim_pin(pin);
self->pin = pin;
self->output = false;
self->open_drain = false;
Expand Down

0 comments on commit 99ee51a

Please sign in to comment.