Documentation Index
Fetch the complete documentation index at: https://motorbridge.seeedstudio.com/llms.txt
Use this file to discover all available pages before exploring further.
Source:
CONTRIBUTING.mdContributing to motorbridge
Thank you for your interest in contributing.Development Setup
- Install Rust stable toolchain.
- Clone the repository.
- Run:
Branching and PRs
- Use short feature branches (
feat/...,fix/...,docs/...). - Open pull requests against
main. - Keep PRs focused and small when possible.
Commit Message Style
Recommended format:feat: ...fix: ...docs: ...refactor: ...chore: ...
Before Submitting
Please ensure:cargo checkpassescargo testpasses- Documentation is updated if behavior changed
- New behavior has at least basic tests where applicable
Vendor Integration Rules
- Do not change
motor_corefor vendor-specific protocol details. - Implement new vendors as separate crates (e.g.
motor_vendor_xxx). - Keep ABI backward compatible when possible.