We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c16093 + d4b1d4d commit 5192082Copy full SHA for 5192082
ports/raspberrypi/common-hal/digitalio/DigitalInOut.c
@@ -50,6 +50,12 @@ digitalinout_result_t common_hal_digitalio_digitalinout_construct(
50
self->output = false;
51
self->open_drain = false;
52
53
+ #if CIRCUITPY_CYW43
54
+ if (IS_CYW(self)) {
55
+ return DIGITALINOUT_OK;
56
+ }
57
+ #endif
58
+
59
// Set to input. No output value.
60
gpio_init(pin->number);
61
return DIGITALINOUT_OK;
0 commit comments