-
Notifications
You must be signed in to change notification settings - Fork 503
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong values in g_ADigitalPinMap? #250
Comments
A potential reason that five PORT.PIN were duplicated is now known. Here are the five PORT.PIN that are not included in the current
Of these, only NFC1 ( There are also problems with the pins listed for NFC1 and NFC2: Adafruit_nRF52_Arduino/variants/feather_nrf52840_express/variant.h Lines 91 to 92 in b6a8566
Adafruit_nRF52_Arduino/variants/feather_nrf52840_express/variant.cpp Lines 29 to 33 in b6a8566
As can be seen, Fixing the variant.cpp files seems necessary for NFC (see #31). |
thanks @henrygab it is indeed an issue, the header declare more pins that the board actually expose. I will check out the schematics with your PR. |
Fix #250 -- wrong values for g_ADigitalPinMap
It appears that five pins are listed twice in the pin map for the Feather nRF52840 Express:
Adafruit_nRF52_Arduino/variants/feather_nrf52840_express/variant.cpp
Lines 34 to 36 in b6a8566
Adafruit_nRF52_Arduino/variants/feather_nrf52840_express/variant.cpp
Line 38 in b6a8566
Adafruit_nRF52_Arduino/variants/feather_nrf52840_express/variant.cpp
Line 44 in b6a8566
These pins are listed a second time at their own index:
Adafruit_nRF52_Arduino/variants/feather_nrf52840_express/variant.cpp
Lines 70 to 71 in b6a8566
Is this intentional? This seems like it may be a bug....
The text was updated successfully, but these errors were encountered: