1
0
mirror of git://sigrok.org/libserialport synced 2023-08-10 21:13:24 +03:00
libserialport/examples
2020-01-26 21:11:46 +01:00
..
projects Add Visual Studio projects and solution to build example programs. 2020-01-26 21:11:46 +01:00
.gitignore Add example of waiting for events. 2020-01-23 04:11:45 +00:00
await_events.c Fix use of variable length local array in await_events example. 2020-01-26 21:11:46 +01:00
examples.sln Add Visual Studio projects and solution to build example programs. 2020-01-26 21:11:46 +01:00
handle_errors.c Add an example of proper error handling. 2020-01-23 04:10:00 +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_config.c Add example of how to configure a port. 2020-01-23 03:56:34 +00:00
port_info.c Release examples as public domain. 2020-01-05 18:19:32 +01:00
README Add Visual Studio projects and solution to build example programs. 2020-01-26 21:11:46 +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 'examples.sln' file is a solution file for Microsoft Visual Studio 2019
which will build libserialport and all of the example programs.

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.