Skip to content
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

Custom baud rate #42

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

Custom baud rate #42

wants to merge 5 commits into from

Commits on Mar 3, 2017

  1. Use TCSETS2 ioctl instead of tcsetattr on Linux.

    The TCSETS2 uses the more modern ioctl that supports setting custom
    bitrates. The only loss here is the ability to specify
    `optional_actions`; compare
    https://fossies.org/dox/glibc-2.25/sysdeps_2unix_2bsd_2tcsetattr_8c_source.html
    
    As these are not used anyway, this is a net gain in functionality.
    
    Gated through conditional compilation to run only on Linux.
    mbr committed Mar 3, 2017
    Configuration menu
    Copy the full SHA
    5cae1fc View commit details
    Browse the repository at this point in the history
  2. Allow specification of nonstandard bitrates on Linux.

    With support of the `TCSETS2` ioctl, custom bitrates are now possible on
    Linux. This commit adds support for these.
    mbr committed Mar 3, 2017
    Configuration menu
    Copy the full SHA
    d7f866f View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2017

  1. Configuration menu
    Copy the full SHA
    42e2bcf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c0664fd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d14e52b View commit details
    Browse the repository at this point in the history