Go to file
Michael B. Trausch d179da05c0 windows: Include proper GUID defining header to fix build.
The initguid.h header must appear early or it does not have
an effect, at least on cross-build from Linux.
2014-09-07 18:51:04 +02:00
.gitignore Ignore build leftovers. 2014-06-11 20:41:20 +02:00
AUTHORS Add the usual AUTHORS file. 2014-04-13 19:54:41 +02:00
COPYING Add build system. 2013-10-27 11:01:44 +00:00
Doxyfile doxygen: Updated Doxyfile to doxygen 1.8.6. 2014-05-04 17:56:49 +02:00
Makefile.am Tidy up and split most OS-specific code to separate files. 2014-06-11 15:10:29 +01:00
NEWS Tidy up and split most OS-specific code to separate files. 2014-06-11 15:10:29 +01:00
README Tidy up and split most OS-specific code to separate files. 2014-06-11 15:10:29 +01:00
autogen.sh Add build system. 2013-10-27 11:01:44 +00:00
config-fields Add generator program for configuration accessor headers. 2013-11-23 20:45:09 +00:00
config-header.py Add generator program for configuration accessor headers. 2013-11-23 20:45:09 +00:00
config-pattern Add generator program for configuration accessor headers. 2013-11-23 20:45:09 +00:00
configure.ac linux: remove readlinkat() dependency 2014-09-04 20:13:55 +02:00
libserialport.h.in libserialport.h.in: remove trailing commas in enum definitions 2014-08-24 11:56:45 +01:00
libserialport.pc.in Tidy up and split most OS-specific code to separate files. 2014-06-11 15:10:29 +01:00
libserialport_internal.h windows: Include proper GUID defining header to fix build. 2014-09-07 18:51:04 +02:00
linux.c linux: remove readlinkat() dependency 2014-09-04 20:13:55 +02:00
linux_termios.c linux_termios: fix return types to actually match returned values 2014-09-04 20:13:55 +02:00
linux_termios.h linux_termios: fix return types to actually match returned values 2014-09-04 20:13:55 +02:00
macosx.c Fix Mac OS X build (untested). 2014-08-27 14:56:19 +02:00
serialport.c Revise debug macros to work in strict C99. 2014-08-24 14:06:21 +01:00
windows.c Fix Windows build. 2014-08-27 14:53:19 +02:00

README

-------------------------------------------------------------------------------
libserialport: cross-platform library for accessing serial ports
-------------------------------------------------------------------------------

libserialport is a minimal library written in C that is intended to take care
of the OS-specific details when writing software that uses serial ports.

By writing your serial code to use libserialport, you enable it to work
transparently on any platform supported by the library.

The operations that are supported are:

- Port enumeration (obtaining a list of serial ports on the system).
- Obtaining port metadata (USB device information, Bluetooth address, etc).
- Opening and closing ports.
- Setting port parameters (baud rate, parity, etc).
- Reading, writing and flushing data.
- Obtaining error information.

libserialport is an open source project released under the LGPL3+ license.

Status
======

The library should build and work on any Windows or Unix-based system. If it
does not, please submit a bug.

Enumeration is currently only implemented on Windows, Mac OS X and Linux. On
other systems enumeration is not supported, but ports can still be opened by
name and then used.

If you know how to enumerate available ports on another OS, please submit a bug
with this information, or better still a patch implementing it.

Dependencies
============

No other libraries are required.

Building
========

The package uses a GNU style build system and requires a Unix style shell.
On Windows it can be built with the MinGW toolchain and MSYS environment.

Run "./autogen.sh" to generate the build system, "./configure" to setup, then
"make" to build the library and "make install" to install it.

API
===

Doxygen API documentation is included.