Skip to content

Set baud rate using cfsetispeed#671

Open
kjaved0 wants to merge 1 commit intoROBOTIS-GIT:mainfrom
kjaved0:main
Open

Set baud rate using cfsetispeed#671
kjaved0 wants to merge 1 commit intoROBOTIS-GIT:mainfrom
kjaved0:main

Conversation

@kjaved0
Copy link
Copy Markdown

@kjaved0 kjaved0 commented Dec 6, 2025

On Ubuntu 25.10 running on framework desktop (Ryzen 395+) with CH341 / CH340, the way the original code sets the baud rate does not work.

Using cfsetospeed and cfsetispeed instead works as it should.

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @kjaved0, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request addresses a critical issue where serial port baud rate configuration failed on certain Linux systems, specifically Ubuntu 25.10 when using CH341/CH340 devices. The change ensures robust serial communication by adopting standard POSIX functions (cfsetispeed and cfsetospeed) for setting the baud rate, thereby improving compatibility and reliability across different environments.

Highlights

  • Baud Rate Configuration Fix: The method for setting the serial port baud rate has been updated to resolve compatibility issues on specific Linux environments, particularly Ubuntu 25.10 with CH34x devices.
  • Portable Baud Rate Setting: The direct assignment of cflag_baud to newtio.c_cflag has been replaced with the use of cfsetispeed and cfsetospeed functions for setting input and output baud rates, which are more portable and reliable.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request improves baud rate setting on Linux by using the more portable cfsetispeed and cfsetospeed functions. This is a good change that should improve compatibility as described. I have one suggestion to add error handling for these new function calls to make the implementation more robust. Additionally, it appears the same logic exists in the C language implementation of the SDK (c/src/dynamixel_sdk/port_handler_linux.c). The setupPortLinux function in that file should also be updated with this new method for setting the baud rate to maintain consistency between the C and C++ APIs.

Comment on lines +222 to +223
cfsetispeed(&newtio, cflag_baud);
cfsetospeed(&newtio, cflag_baud);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

high

The return values of cfsetispeed and cfsetospeed should be checked to ensure the baud rate was set successfully. These functions return -1 on error. Failing to set the baud rate will cause all subsequent communication to fail silently, which can be difficult to debug. It's better to fail early with a clear error message.

  if (cfsetispeed(&newtio, cflag_baud) < 0 || cfsetospeed(&newtio, cflag_baud) < 0)
  {
    printf("[PortHandlerLinux::SetupPort] Error setting baud rate!\n");
    return false;
  }

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.

1 participant