-
Notifications
You must be signed in to change notification settings - Fork 13.6k
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
fmu-v6c: fix Telem1, Telem2 without flow control #21540
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why RTS? CTS is the input that flow controls our TX.
Did you test and find the RTS change was needed?
Also when #21495 comes in we can fix all the pin settings so #undef GPIO_UART5_CTS
will not be needed.
Ok, I just copied the other PR (#20974), I'll remove the RTS. |
When flow control is used together with DMA, we need to add a pulldown to CTS. Without it, it assumes flow control and gets stuck when CTS is not connected. Signed-off-by: Julian Oes <[email protected]>
8f96c60
to
3020203
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@julianoes LGTM - Did you want to add the same change in the other PR?
Thanks, I'll do a follow up PR for that. |
This pull request has been mentioned on Discussion Forum for PX4, Pixhawk, QGroundControl, MAVSDK, MAVLink. There might be relevant details there: https://discuss.px4.io/t/pixhawk-6c-telem2-communication-issue-with-mavros/32255/2 |
This pull request has been mentioned on Discussion Forum for PX4, Pixhawk, QGroundControl, MAVSDK, MAVLink. There might be relevant details there: https://discuss.px4.io/t/problems-connecting-a-pixhawk-6c-to-a-raspberry-pi/32318/4 |
This pull request has been mentioned on Discussion Forum for PX4, Pixhawk, QGroundControl, MAVSDK, MAVLink. There might be relevant details there: https://discuss.px4.io/t/help-with-uxrce-dds-to-serial-connection-pixhawk-6c/32528/8 |
When flow control is used together with DMA, we need to add a pulldown to
RTS andCTS. Without it, it assumes flow control and gets stuck whenRTS andCTSareis not connected.Same as #20974 but for 6C.