fix(firmware/rmcs_board): Disable CAN automatic retransmission#53
fix(firmware/rmcs_board): Disable CAN automatic retransmission#53
Conversation
Align rmcs_board CAN behavior with c_board by disabling hardware automatic retransmission.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
Walkthrough在CAN驱动配置中添加了一行代码,通过设置 ChangesCAN驱动配置调整
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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 |
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
Align rmcs_board CAN behavior with c_board by disabling hardware automatic retransmission.
摘要
本PR禁用了rmcs_board固件中CAN控制器的硬件自动重传功能,使其行为与c_board保持一致。
变更详情
文件:
firmware/rmcs_board/app/src/can/can.hpp在
Can构造函数中的MCAN配置初始化处新增配置项:config.disable_auto_retransmission = true;以禁用CAN自动重传功能这是唯一的代码变更,其余逻辑保持不变。
影响范围