Fix PocketBeagle 2 support: correct DT compatible string and black formatting#411
Merged
makermelissa merged 2 commits intoadafruit:mainfrom Apr 22, 2026
Merged
Conversation
- Fix boards.py: Remove stray blank line inside BEAGLEBONE tuple that caused black formatting CI failure. - Clean up board.py comment: The special-case EEPROM check is the correct approach for new-format Beagle boards (like BeaglePlay), so replaced the uncertain comment with an explanatory one.
8054b00 to
c9797d3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes CI failure in #409 to get the PocketBeagle 2 support merged.
Changes
1. Fix black formatting in
boards.pyRemoved a stray blank line inside the
BEAGLEBONEtuple that caused theblackpre-commit check to fail (the CI failure).2. Clean up comment in
board.pyThe special-case EEPROM check for PocketBeagle 2 is the correct approach — new-format Beagle EEPROMs (like BeaglePlay) have binary prefix bytes that can't be decoded as meaningful ASCII for the dictionary lookup. Replaced the uncertain comment with an explanatory one.
Builds on top of #409 by @explodeo.