Skip to content

pythcoiner/serial-thread-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Serial Async Multithread Library

serial-thread is a Rust library designed to facilitate serial port communication in a multithreaded environment. It leverages asynchronous/mpsc channels for efficient handling of serial data, suitable for applications that require concurrent processing of serial port input/output.

This lib is in early development stage, API not yet clearly defined and breaking changes will happen in upcoming releases.

Features

  • Asynchronous Communication: Utilizes std::sync::mpsc::chanels or async-channels (feature flag) for non-blocking serial port communication.
  • Multithreaded Support: Designed to work efficiently in a multithreaded context.
  • Custom Serial Configurations: Supports various configurations such as baud rate, character size, and flow control.
  • Error Handling: Comprehensive error handling for robust application development.

Installation

Add this to your Cargo.toml:

[dependencies]
serial-thread = "0.0.7"

or

cargo add serial_thread

Example

A usage example can be found in /src/example

About

Asynchronous, multithreaded serial port communication library using async channels for efficient data handling in Rust..

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages