1
0
mirror of git://sigrok.org/libserialport synced 2023-08-10 21:13:24 +03:00
libserialport/examples
2020-01-05 18:19:32 +01:00
..
.gitignore Add examples directory with two example programs. 2020-01-05 02:04:06 +00:00
list_ports.c Release examples as public domain. 2020-01-05 18:19:32 +01:00
Makefile Release examples as public domain. 2020-01-05 18:19:32 +01:00
port_info.c Release examples as public domain. 2020-01-05 18:19:32 +01:00
README Release examples as public domain. 2020-01-05 18:19:32 +01:00

This directory contains example programs showing how to use libserialport.

The examples currently included are:

list_ports.c - displays a list of ports on the system.
port_info.c - displays info about a particular port on the system.

The programs themselves are completely OS-independent, and require only a
C compiler and libserialport.

The Makefile in this directory will attempt to build all the examples,
using 'gcc' to compile them and 'pkg-config' to discover the include
paths and linker settings needed to build with libserialport. It provides
a minimal example of how to write a Makefile to build a program using
libserialport.

If you have make, gcc, pkg-config and libserialport installed correctly
then running 'make' should build the example programs in this directory.
If this doesn't work, you may need to modify the Makefile or set necessary
paths in your environment to suit your system.

You can also build these examples using any other compiler, IDE or build
system. You just need the libserialport.h header available to compile them,
and the libserialport library available to link and run them.

These example files are hereby released into the public domain by the author.