]> sigrok.org Git - libserialport.git/blob - README
README: Mention that only MinGW-w64 works (but not MinGW).
[libserialport.git] / README
1 -------------------------------------------------------------------------------
2 libserialport: cross-platform library for accessing serial ports
3 -------------------------------------------------------------------------------
4
5 libserialport is a minimal library written in C that is intended to take care
6 of the OS-specific details when writing software that uses serial ports.
7
8 By writing your serial code to use libserialport, you enable it to work
9 transparently on any platform supported by the library.
10
11 The operations that are supported are:
12
13 - Port enumeration (obtaining a list of serial ports on the system).
14 - Obtaining port metadata (USB device information, Bluetooth address, etc).
15 - Opening and closing ports.
16 - Setting port parameters (baud rate, parity, etc).
17 - Reading, writing and flushing data.
18 - Obtaining error information.
19
20 libserialport is an open source project released under the LGPL3+ license.
21
22 Status
23 ======
24
25 The library should build and work on any Windows or Unix-based system. If it
26 does not, please submit a bug.
27
28 Enumeration is currently only implemented on Windows, Mac OS X and Linux. On
29 other systems enumeration is not supported, but ports can still be opened by
30 name and then used.
31
32 If you know how to enumerate available ports on another OS, please submit a bug
33 with this information, or better still a patch implementing it.
34
35 Dependencies
36 ============
37
38 No other libraries are required.
39
40 Building
41 ========
42
43 The package uses a GNU style build system and requires a Unix style shell.
44
45 Windows builds can be created natively with the MinGW-w64 toolchain and
46 MSYS environment, or cross-compiled using a MinGW-w64 toolchain:
47
48   http://mingw-w64.sourceforge.net/
49
50 The "old" MinGW from http://mingw.org/ is not supported.
51
52 Run "./autogen.sh" to generate the build system, "./configure" to setup, then
53 "make" to build the library and "make install" to install it.
54
55 API
56 ===
57
58 Doxygen API documentation is included.