fix(rp): honor Arduino Bluetooth menu - #1263
Merged
Merged
Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughChangesRP2040 board menu support
Estimated code review effort: 3 (Moderate) | ~20 minutes Sequence Diagram(s)sequenceDiagram
participant Environment
participant Rp2040Orchestrator
participant ArduinoProps
participant SupportObjects
Environment->>Rp2040Orchestrator: provide board menu overrides
Rp2040Orchestrator->>ArduinoProps: load board properties with overrides
ArduinoProps-->>Rp2040Orchestrator: return resolved board properties
Rp2040Orchestrator->>SupportObjects: pass board properties
SupportObjects-->>Rp2040Orchestrator: select libpicow archive or libipv4.a
Possibly related PRs
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
zackees
added a commit
that referenced
this pull request
Aug 7, 2026
This was referenced Aug 7, 2026
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.
Closes #1262\n\n## Summary\n- apply PlatformIO board_build menu overrides while resolving Arduino board properties\n- select the resulting RP network support archive instead of hard-coding libipv4.a\n- fingerprint the selected board overrides to avoid stale non-Bluetooth links\n\n## Verification\n- soldr cargo test -p fbuild-build-engine arduino_props::tests::test_load_board_props_applies_menu_override -- --exact\n- soldr --no-cache cargo test -p fbuild-build-arm rp2040::orchestrator::tests::test_rp_support_objects_uses_selected_bluetooth_network_library -- --exact\n- soldr --no-cache cargo clippy -p fbuild-build-engine -p fbuild-build-arm --all-targets -- -D warnings\n- soldr rustfmt --check crates/fbuild-build-engine/src/arduino_props.rs crates/fbuild-build-arm/src/rp2040/orchestrator.rs
Summary by CodeRabbit