We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Feather M4 Express USB pin mapping in variant.cpp is presently incorrect on a single pin (DP aka D+).
https://github.com/adafruit/ArduinoCore-samd/blob/master/variants/feather_m4/variant.cpp#L92
Presently: { PORTA, 27, PIO_COM, PIN_ATTR_NONE, No_ADC_Channel, NOT_ON_PWM, NOT_ON_TIMER, EXTERNAL_INT_NONE }, // USB/DP
Suggested: { PORTA, 25, PIO_COM, PIN_ATTR_NONE, No_ADC_Channel, NOT_ON_PWM, NOT_ON_TIMER, EXTERNAL_INT_NONE }, // USB/DP
The schematic suggests PA25 for this pin function, rather than PA27 (which seems to be n/c in the schematic).
Supporting evidence below, including commit a7277e6 from DeanM in 2017, October.
Thanks! from github user wa1tnr
Feather M4 Express, schematic diagram: https://learn.adafruit.com/assets/57242
Correctly identified variant: https://github.com/adafruit/ArduinoCore-samd/blob/master/boards.txt#L637
Further evidence in the file's own history, first instance: f618756#diff-8b717367c9aabdaaacc859b5b8471752L74
Tracing back, found an instance where it was correct:
ArduinoCore-samd/variants/feather_m4/variant.cpp
Line 177 in a7277e6
So it (DP aka USB D+, PA25) was correctly mapped, in commit a7277e6:
commit a7277e6 Author: dean [email protected] Date: Fri Oct 13 18:15:20 2017 -0400
DM: adding feather m4
Didn't find where the change was introduced.
The text was updated successfully, but these errors were encountered:
ok - it isnt necessary btw, its a placeholder
Sorry, something went wrong.
No branches or pull requests
Feather M4 Express USB pin mapping in variant.cpp is presently incorrect on a single pin (DP aka D+).
https://github.com/adafruit/ArduinoCore-samd/blob/master/variants/feather_m4/variant.cpp#L92
Presently:
{ PORTA, 27, PIO_COM, PIN_ATTR_NONE, No_ADC_Channel, NOT_ON_PWM, NOT_ON_TIMER, EXTERNAL_INT_NONE }, // USB/DP
Suggested:
{ PORTA, 25, PIO_COM, PIN_ATTR_NONE, No_ADC_Channel, NOT_ON_PWM, NOT_ON_TIMER, EXTERNAL_INT_NONE }, // USB/DP
The schematic suggests PA25 for this pin function, rather than PA27 (which seems to be n/c in the schematic).
Supporting evidence below, including commit a7277e6
from DeanM in 2017, October.
Thanks! from github user wa1tnr
Feather M4 Express, schematic diagram:
https://learn.adafruit.com/assets/57242
Correctly identified variant:
https://github.com/adafruit/ArduinoCore-samd/blob/master/boards.txt#L637
Further evidence in the file's own history, first instance:
f618756#diff-8b717367c9aabdaaacc859b5b8471752L74
Tracing back, found an instance where it was correct:
ArduinoCore-samd/variants/feather_m4/variant.cpp
Line 177 in a7277e6
So it (DP aka USB D+, PA25) was correctly mapped, in commit a7277e6:
Didn't find where the change was introduced.
The text was updated successfully, but these errors were encountered: