Serial Communication Library alternatives and similar libraries
Based on the "Miscellaneous" category.
Alternatively, view Serial Communication Library alternatives based on common mentions on social networks and blogs.
-
ZXing
An open-source, multi-format 1D/2D barcode image processing library implemented in Java, with ports to other languages. [Apache] -
ZBar
A barcode scanner library, which allows to scan photos/images/video streams for barcodes and return their value. [LGPL2] -
American fuzzy lop
Crazy fuzzing tool that automatically discovers bugs given time and minimal example input. [Apache2] -
c-smart-pointers
Smart pointers for the (GNU) C programming language. [MIT] -
Experimental Boost.DI
C++14 Dependency Injection Library -
UNITS
a compile-time, header-only, dimensional analysis and unit conversion library built on c++14 with no dependencies. -
stdman
Formatted C++11/14 stdlib man pages (from cppreference). [MIT] -
constexpr-8cc
Compile-time C Compiler implemented as C++14 constant expressions -
cxx-prettyprint
A pretty printing library for C++ containers. [Boost] -
outcome
Provides very lightweight outcome<T> and result<T> (non-Boost edition) -
CppVerbalExpressions
C++ regular expressions made easy. [MIT] -
Better String
An alternative to the string library for C which is more functional and does not have buffer overflow overrun problems. Also includes a C++ wrapper. [BSD, GPL2] -
value-category-cheatsheet
A PDF cheatsheet for lvalues, rvalues, and the like. [Jank copyleft] -
neither
Either and Maybe monads for better error-handling in C++ ↔️ -
libusb
A universal USB library which allows for portable access to USB devices. [LGPL2] -
gcc-poison
A simple header file for developers to ban unsafe C/C++ functions from applications. -
StrTk
A C++ library consisting of high performance string processing routines. [MIT] -
Boost.Signals
An implementation of a managed signals and slots system. [Boost] -
QtVerbalExpressions
This Qt lib is based off of the C++ VerbalExpressions library. [MIT] -
access_profiler
A tool to count accesses to member variables in c++ programs. [GPL3] -
FastFormat
Fast, Safe C++ Formatting inspired by log4j and Pantheios [Simplified BSD] -
strf
A fast C++ formatting library that supports encoding conversion. -
CommonPP
Small library helping you with basic stuff like getting metrics out of your code, thread naming, etc.
Scout APM - Leading-edge performance monitoring starting at $39/month
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Serial Communication Library or a related project?
README
Serial Communication Library
This is a cross-platform library for interfacing with rs-232 serial like ports written in C++. It provides a modern C++ interface with a workflow designed to look and feel like PySerial, but with the speed and control provided by C++.
This library is in use in several robotics related projects and can be built and installed to the OS like most unix libraries with make and then sudo make install, but because it is a catkin project it can also be built along side other catkin projects in a catkin workspace.
Serial is a class that provides the basic interface common to serial libraries (open, close, read, write, etc..) and requires no extra dependencies. It also provides tight control over timeouts and control over handshaking lines.
Documentation
Website: http://wjwwood.github.com/serial/
API Documentation: http://wjwwood.github.com/serial/doc/1.1.0/index.html
Dependencies
Required:
- catkin - cmake and Python based buildsystem
- cmake - buildsystem
- Python - scripting language
- empy - Python templating library
- catkin_pkg - Runtime Python library for catkin
Optional (for tests):
- Boost - Boost C++ librairies
Optional (for documentation):
Install
Get the code:
git clone https://github.com/wjwwood/serial.git
Build:
make
Build and run the tests:
make test
Build the documentation:
make doc
Install:
make install
License
The MIT License
Copyright (c) 2012 William Woodall, John Harrison
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Authors
William Woodall [email protected] John Harrison [email protected]
Contact
William Woodall [email protected]
*Note that all licence references and agreements mentioned in the Serial Communication Library README section above
are relevant to that project's source code only.