Skip to content

STELLARH7DEV - Add support for IMU 3+ #794

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

haslinghuis
Copy link
Member

@haslinghuis haslinghuis commented May 29, 2025

image

Summary by CodeRabbit

Summary by CodeRabbit

  • Refactor
    • Updated gyro setup to a fixed configuration with four explicitly defined sensors.
    • Simplified sensor assignments and hardware connections for better consistency.
    • Removed conditional selection for gyros, enhancing clarity in device configuration.

Copy link

coderabbitai bot commented May 29, 2025

Walkthrough

The configuration for IMU gyros in the STELLARH7DEV board was restructured from a conditional, macro-based selection system to a fixed, explicit four-gyro setup. All gyros are now directly assigned sensor types, pins, SPI instances, alignments, and usage macros without conditional preprocessor logic.

Changes

File Change Summary
configs/STELLARH7DEV/config.h Removed conditional IMU selection macros and blocks; defined fixed count of four gyros with explicit pins, SPI, alignment, and usage macros including gyro 4 clock input pin.

Sequence Diagram(s)

sequenceDiagram
    participant ConfigHeader as config.h
    participant Gyro1 as ICM40609D
    participant Gyro2 as ICM45605
    participant Gyro3 as ICM45686
    participant Gyro4 as ICM42688P

    ConfigHeader->>Gyro1: Define pins, SPI, alignment, usage macros
    ConfigHeader->>Gyro2: Define pins, SPI, alignment, usage macros
    ConfigHeader->>Gyro3: Define pins, SPI, alignment, usage macros
    ConfigHeader->>Gyro4: Define pins, SPI, alignment, usage macros, CLKIN
Loading

📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 70e27fe and aaa6e43.

📒 Files selected for processing (1)
  • configs/STELLARH7DEV/config.h (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • configs/STELLARH7DEV/config.h
✨ Finishing Touches
  • 📝 Generate Docstrings

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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary or `` to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b9f9a66 and c641a93.

📒 Files selected for processing (1)
  • configs/STELLARH7DEV/config.h (1 hunks)
🔇 Additional comments (2)
configs/STELLARH7DEV/config.h (2)

118-119: Verify the default gyro selection logic.

The DEFAULT_GYRO_ENABLED is set to GYRO_MASK(3), which enables gyro 3 by default. Typically, gyro 1 would be the primary/default gyro in flight controller configurations. Please confirm this is intentional.

Consider if this should be GYRO_MASK(1) instead to make gyro 1 the default:

-#define DEFAULT_GYRO_ENABLED            GYRO_MASK(3)
+#define DEFAULT_GYRO_ENABLED            GYRO_MASK(1)

133-138: LGTM! GYRO_3 configuration is well-structured.

The GYRO_3 configuration follows the established pattern and correctly maps to the ICM45686 sensor with appropriate pin assignments and SPI3 instance.

#define USE_IMU1 ICM42688P
#endif
#define GYRO_COUNT 4
#define DEFAULT_GYRO_ENABLED GYRO_MASK(3)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason for this default? Why not something like GYRO_MASK(1) | GYRO_MASK(3) fuse the 40609D and the 45686

Copy link
Member Author

@haslinghuis haslinghuis May 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Afaik

  • 42688P is the recommended gyro to use at the moment.
  • current firmware PR in development for this does not allow fusion
  • GYRO_MASK is zero based ?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GYRO_MASK is 0 based, good catch, I had that wrong.

@nerdCopter nerdCopter changed the title Add support for IMU 3+ STELLARH7DEV - Add support for IMU 3+ Jun 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants