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
It appears to be a typo that boards/include/boards/hellbender_0001.h is selecting the RP2350 VARIANT by defining
boards/include/boards/hellbender_0001.h
#define PICO_RP2350B 1
The other board files ( even the likely associated src/boards/include/boards/hellbender_2350A_devboard.h ) seem to use
src/boards/include/boards/hellbender_2350A_devboard.h
#define PICO_RP2350A 1
to indicate that "the current board has an RP2350 in an A (30 GPIO) package" while the following is used to select the 48 pin RP2350B
PICO_RP2350A 0
Perhaps @CBJamo can comment
The text was updated successfully, but these errors were encountered:
Oooh, well spotted! #2290 updates the script which checks board headers to look for #define PICO_RP2350B.
#define PICO_RP2350B
Sorry, something went wrong.
No branches or pull requests
It appears to be a typo that
boards/include/boards/hellbender_0001.h
is selecting the RP2350 VARIANTby defining
The other board files ( even the likely associated
src/boards/include/boards/hellbender_2350A_devboard.h
) seem to useto indicate that "the current board has an RP2350 in an A (30 GPIO) package"
while the following is used to select the 48 pin RP2350B
Perhaps @CBJamo can comment
The text was updated successfully, but these errors were encountered: