Add an example of proper error handling.
[libserialport/gsi.git] / libserialport.h
blob65f96799933a008fab903cc9be95b175668e744e
1 /*
2 * This file is part of the libserialport project.
4 * Copyright (C) 2013, 2015 Martin Ling <martin-libserialport@earth.li>
5 * Copyright (C) 2014 Uwe Hermann <uwe@hermann-uwe.de>
6 * Copyright (C) 2014 Aurelien Jacobs <aurel@gnuage.org>
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Lesser General Public License as
10 * published by the Free Software Foundation, either version 3 of the
11 * License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 /**
23 * @mainpage libserialport API
25 * Introduction
26 * ============
28 * libserialport is a minimal library written in C that is intended to take
29 * care of the OS-specific details when writing software that uses serial ports.
31 * By writing your serial code to use libserialport, you enable it to work
32 * transparently on any platform supported by the library.
34 * libserialport is an open source project released under the LGPL3+ license.
36 * The library is maintained by the [sigrok](http://sigrok.org/) project. See
37 * the [libserialport homepage](http://sigrok.org/wiki/Libserialport) for the
38 * latest information.
40 * Source code is maintained in git at
41 * [git://sigrok.org/libserialport](http://sigrok.org/gitweb/?p=libserialport.git).
43 * Bugs are tracked at http://sigrok.org/bugzilla/.
45 * The library was conceived and designed by Martin Ling, is maintained by
46 * Uwe Hermann, and has received contributions from several other developers.
47 * See the git history for full credits.
49 * API information
50 * ===============
52 * The API has been designed from scratch. It does not exactly resemble the
53 * serial API of any particular operating system. Instead it aims to provide
54 * a set of functions that can reliably be implemented across all operating
55 * systems. These form a sufficient basis for higher level behaviour to
56 * be implemented in a platform independent manner.
58 * If you are porting code written for a particular OS, you may find you need
59 * to restructure things somewhat, or do without some specialised features.
60 * For particular notes on porting existing code, see @ref Porting.
62 * Examples
63 * --------
65 * Some simple example programs using libserialport are included in the
66 * @c examples directory in the source package:
68 * - @ref list_ports.c - Getting a list of ports present on the system.
69 * - @ref port_info.c - Getting information on a particular serial port.
70 * - @ref port_config.c - Accessing configuration settings of a port.
71 * - @ref handle_errors.c - Handling errors returned from the library.
73 * These examples are linked with the API documentation. Each function
74 * in the API reference includes links to where it is used in an example
75 * program, and each appearance of a function in the examples links
76 * to that function's entry in the API reference.
78 * Headers
79 * -------
81 * To use libserialport functions in your code, you should include the
82 * libserialport.h header, i.e.
83 * @code
84 * #include <libserialport.h>
85 * @endcode
87 * Namespace
88 * ---------
90 * All identifiers defined by the public libserialport headers use the prefix
91 * @c sp_ (for functions and data types) or @c SP_ (for macros and constants).
93 * Functions
94 * ---------
96 * The functions provided by the library are documented in detail in
97 * the following sections:
99 * - @ref Enumeration (obtaining a list of serial ports on the system)
100 * - @ref Ports (opening, closing and getting information about ports)
101 * - @ref Configuration (baud rate, parity, etc.)
102 * - @ref Signals (modem control lines, breaks, etc.)
103 * - @ref Data (reading and writing data, and buffer management)
104 * - @ref Waiting (waiting for ports to be ready, integrating with event loops)
105 * - @ref Errors (getting error and debugging information)
107 * Data structures
108 * ---------------
110 * The library defines three data structures:
112 * - @ref sp_port, which represents a serial port.
113 * See @ref Enumeration.
114 * - @ref sp_port_config, which represents a port configuration.
115 * See @ref Configuration.
116 * - @ref sp_event_set, which represents a set of events.
117 * See @ref Waiting.
119 * All these structures are allocated and freed by library functions. It is
120 * the caller's responsibility to ensure that the correct calls are made to
121 * free allocated structures after use.
123 * Return codes and error handling
124 * -------------------------------
126 * Most functions have return type @ref sp_return and can return only four
127 * possible error values:
129 * - @ref SP_ERR_ARG means that a function was called with invalid
130 * arguments. This implies a bug in the caller. The arguments passed would
131 * be invalid regardless of the underlying OS or serial device involved.
133 * - @ref SP_ERR_FAIL means that the OS reported a failure. The error code or
134 * message provided by the OS can be obtained by calling sp_last_error_code()
135 * or sp_last_error_message().
137 * - @ref SP_ERR_SUPP indicates that there is no support for the requested
138 * operation in the current OS, driver or device. No error message is
139 * available from the OS in this case. There is either no way to request
140 * the operation in the first place, or libserialport does not know how to
141 * do so in the current version.
143 * - @ref SP_ERR_MEM indicates that a memory allocation failed.
145 * All of these error values are negative.
147 * Calls that succeed return @ref SP_OK, which is equal to zero. Some functions
148 * declared @ref sp_return can also return a positive value for a successful
149 * numeric result, e.g. sp_blocking_read() or sp_blocking_write().
151 * An error message is only available via sp_last_error_message() in the case
152 * where @ref SP_ERR_FAIL was returned by the previous function call. The error
153 * message returned is that provided by the OS, using the current language
154 * settings. It is an error to call sp_last_error_code() or
155 * sp_last_error_message() except after a previous function call returned
156 * @ref SP_ERR_FAIL. The library does not define its own error codes or
157 * messages to accompany other return codes.
159 * Thread safety
160 * -------------
162 * Certain combinations of calls can be made concurrently, as follows.
164 * - Calls using different ports may always be made concurrently, i.e.
165 * it is safe for separate threads to handle their own ports.
167 * - Calls using the same port may be made concurrently when one call
168 * is a read operation and one call is a write operation, i.e. it is safe
169 * to use separate "reader" and "writer" threads for the same port. See
170 * below for which operations meet these definitions.
172 * Read operations:
174 * - sp_blocking_read()
175 * - sp_blocking_read_next()
176 * - sp_nonblocking_read()
177 * - sp_input_waiting()
178 * - sp_flush() with @ref SP_BUF_INPUT only.
179 * - sp_wait() with @ref SP_EVENT_RX_READY only.
181 * Write operations:
183 * - sp_blocking_write()
184 * - sp_nonblocking_write()
185 * - sp_output_waiting()
186 * - sp_drain()
187 * - sp_flush() with @ref SP_BUF_OUTPUT only.
188 * - sp_wait() with @ref SP_EVENT_TX_READY only.
190 * If two calls, on the same port, do not fit into one of these categories
191 * each, then they may not be made concurrently.
193 * Debugging
194 * ---------
196 * The library can output extensive tracing and debugging information. The
197 * simplest way to use this is to set the environment variable
198 * @c LIBSERIALPORT_DEBUG to any value; messages will then be output to the
199 * standard error stream.
201 * This behaviour is implemented by a default debug message handling
202 * callback. An alternative callback can be set using sp_set_debug_handler(),
203 * in order to e.g. redirect the output elsewhere or filter it.
205 * No guarantees are made about the content of the debug output; it is chosen
206 * to suit the needs of the developers and may change between releases.
208 * @anchor Porting
209 * Porting
210 * -------
212 * The following guidelines may help when porting existing OS-specific code
213 * to use libserialport.
215 * ### Porting from Unix-like systems ###
217 * There are two main differences to note when porting code written for Unix.
219 * The first is that Unix traditionally provides a wide range of functionality
220 * for dealing with serial devices at the OS level; this is exposed through the
221 * termios API and dates to the days when serial terminals were common. If your
222 * code relies on many of these facilities you will need to adapt it, because
223 * libserialport provides only a raw binary channel with no special handling.
225 * The second relates to blocking versus non-blocking I/O behaviour. In
226 * Unix-like systems this is normally specified by setting the @c O_NONBLOCK
227 * flag on the file descriptor, affecting the semantics of subsequent @c read()
228 * and @c write() calls.
230 * In libserialport, blocking and nonblocking operations are both available at
231 * any time. If your existing code Ń•ets @c O_NONBLOCK, you should use
232 * sp_nonblocking_read() and sp_nonblocking_write() to get the same behaviour
233 * as your existing @c read() and @c write() calls. If it does not, you should
234 * use sp_blocking_read() and sp_blocking_write() instead. You may also find
235 * sp_blocking_read_next() useful, which reproduces the semantics of a blocking
236 * read() with @c VTIME=0 and @c VMIN=1 set in termios.
238 * Finally, you should take care if your program uses custom signal handlers.
239 * The blocking calls provided by libserialport will restart system calls that
240 * return with @c EINTR, so you will need to make your own arrangements if you
241 * need to interrupt blocking operations when your signal handlers are called.
242 * This is not an issue if you only use the default handlers.
244 * ### Porting from Windows ###
246 * The main consideration when porting from Windows is that there is no
247 * direct equivalent for overlapped I/O operations.
249 * If your program does not use overlapped I/O, you can simply use
250 * sp_blocking_read() and sp_blocking_write() as direct equivalents for
251 * @c ReadFile() and @c WriteFile(). You may also find sp_blocking_read_next()
252 * useful, which reproduces the special semantics of @c ReadFile() with
253 * @c ReadIntervalTimeout and @c ReadTotalTimeoutMultiplier set to @c MAXDWORD
254 * and @c ReadTotalTimeoutConstant set to between @c 1 and @c MAXDWORD-1 .
256 * If your program makes use of overlapped I/O to continue work while a serial
257 * operation is in progress, then you can achieve the same results using
258 * sp_nonblocking_read() and sp_nonblocking_write().
260 * Generally, overlapped I/O is combined with either waiting for completion
261 * once there is no more background work to do (using @c WaitForSingleObject()
262 * or @c WaitForMultipleObjects()), or periodically checking for completion
263 * with @c GetOverlappedResult(). If the aim is to start a new operation for
264 * further data once the previous one has completed, you can instead simply
265 * call the nonblocking functions again with the next data. If you need to
266 * wait for completion, use sp_wait() to determine when the port is ready to
267 * send or receive further data.
270 #ifndef LIBSERIALPORT_LIBSERIALPORT_H
271 #define LIBSERIALPORT_LIBSERIALPORT_H
273 #ifdef __cplusplus
274 extern "C" {
275 #endif
277 #include <stddef.h>
279 /** @cond */
280 #ifdef _MSC_VER
281 /* Microsoft Visual C/C++ compiler in use */
282 #ifdef LIBSERIALPORT_MSBUILD
283 /* Building the library - need to export DLL symbols */
284 #define SP_API __declspec(dllexport)
285 #else
286 /* Using the library - need to import DLL symbols */
287 #define SP_API __declspec(dllimport)
288 #endif
289 #else
290 /* Some other compiler in use */
291 #ifndef LIBSERIALPORT_ATBUILD
292 /* Not building the library itself - don't need any special prefixes. */
293 #define SP_API
294 #endif
295 #endif
296 /** @endcond */
298 /** Return values. */
299 enum sp_return {
300 /** Operation completed successfully. */
301 SP_OK = 0,
302 /** Invalid arguments were passed to the function. */
303 SP_ERR_ARG = -1,
304 /** A system error occurred while executing the operation. */
305 SP_ERR_FAIL = -2,
306 /** A memory allocation failed while executing the operation. */
307 SP_ERR_MEM = -3,
308 /** The requested operation is not supported by this system or device. */
309 SP_ERR_SUPP = -4
312 /** Port access modes. */
313 enum sp_mode {
314 /** Open port for read access. */
315 SP_MODE_READ = 1,
316 /** Open port for write access. */
317 SP_MODE_WRITE = 2,
318 /** Open port for read and write access. @since 0.1.1 */
319 SP_MODE_READ_WRITE = 3
322 /** Port events. */
323 enum sp_event {
324 /** Data received and ready to read. */
325 SP_EVENT_RX_READY = 1,
326 /** Ready to transmit new data. */
327 SP_EVENT_TX_READY = 2,
328 /** Error occurred. */
329 SP_EVENT_ERROR = 4
332 /** Buffer selection. */
333 enum sp_buffer {
334 /** Input buffer. */
335 SP_BUF_INPUT = 1,
336 /** Output buffer. */
337 SP_BUF_OUTPUT = 2,
338 /** Both buffers. */
339 SP_BUF_BOTH = 3
342 /** Parity settings. */
343 enum sp_parity {
344 /** Special value to indicate setting should be left alone. */
345 SP_PARITY_INVALID = -1,
346 /** No parity. */
347 SP_PARITY_NONE = 0,
348 /** Odd parity. */
349 SP_PARITY_ODD = 1,
350 /** Even parity. */
351 SP_PARITY_EVEN = 2,
352 /** Mark parity. */
353 SP_PARITY_MARK = 3,
354 /** Space parity. */
355 SP_PARITY_SPACE = 4
358 /** RTS pin behaviour. */
359 enum sp_rts {
360 /** Special value to indicate setting should be left alone. */
361 SP_RTS_INVALID = -1,
362 /** RTS off. */
363 SP_RTS_OFF = 0,
364 /** RTS on. */
365 SP_RTS_ON = 1,
366 /** RTS used for flow control. */
367 SP_RTS_FLOW_CONTROL = 2
370 /** CTS pin behaviour. */
371 enum sp_cts {
372 /** Special value to indicate setting should be left alone. */
373 SP_CTS_INVALID = -1,
374 /** CTS ignored. */
375 SP_CTS_IGNORE = 0,
376 /** CTS used for flow control. */
377 SP_CTS_FLOW_CONTROL = 1
380 /** DTR pin behaviour. */
381 enum sp_dtr {
382 /** Special value to indicate setting should be left alone. */
383 SP_DTR_INVALID = -1,
384 /** DTR off. */
385 SP_DTR_OFF = 0,
386 /** DTR on. */
387 SP_DTR_ON = 1,
388 /** DTR used for flow control. */
389 SP_DTR_FLOW_CONTROL = 2
392 /** DSR pin behaviour. */
393 enum sp_dsr {
394 /** Special value to indicate setting should be left alone. */
395 SP_DSR_INVALID = -1,
396 /** DSR ignored. */
397 SP_DSR_IGNORE = 0,
398 /** DSR used for flow control. */
399 SP_DSR_FLOW_CONTROL = 1
402 /** XON/XOFF flow control behaviour. */
403 enum sp_xonxoff {
404 /** Special value to indicate setting should be left alone. */
405 SP_XONXOFF_INVALID = -1,
406 /** XON/XOFF disabled. */
407 SP_XONXOFF_DISABLED = 0,
408 /** XON/XOFF enabled for input only. */
409 SP_XONXOFF_IN = 1,
410 /** XON/XOFF enabled for output only. */
411 SP_XONXOFF_OUT = 2,
412 /** XON/XOFF enabled for input and output. */
413 SP_XONXOFF_INOUT = 3
416 /** Standard flow control combinations. */
417 enum sp_flowcontrol {
418 /** No flow control. */
419 SP_FLOWCONTROL_NONE = 0,
420 /** Software flow control using XON/XOFF characters. */
421 SP_FLOWCONTROL_XONXOFF = 1,
422 /** Hardware flow control using RTS/CTS signals. */
423 SP_FLOWCONTROL_RTSCTS = 2,
424 /** Hardware flow control using DTR/DSR signals. */
425 SP_FLOWCONTROL_DTRDSR = 3
428 /** Input signals. */
429 enum sp_signal {
430 /** Clear to send. */
431 SP_SIG_CTS = 1,
432 /** Data set ready. */
433 SP_SIG_DSR = 2,
434 /** Data carrier detect. */
435 SP_SIG_DCD = 4,
436 /** Ring indicator. */
437 SP_SIG_RI = 8
441 * Transport types.
443 * @since 0.1.1
445 enum sp_transport {
446 /** Native platform serial port. @since 0.1.1 */
447 SP_TRANSPORT_NATIVE,
448 /** USB serial port adapter. @since 0.1.1 */
449 SP_TRANSPORT_USB,
450 /** Bluetooth serial port adapter. @since 0.1.1 */
451 SP_TRANSPORT_BLUETOOTH
455 * @struct sp_port
456 * An opaque structure representing a serial port.
458 struct sp_port;
461 * @struct sp_port_config
462 * An opaque structure representing the configuration for a serial port.
464 struct sp_port_config;
467 * @struct sp_event_set
468 * A set of handles to wait on for events.
470 struct sp_event_set {
471 /** Array of OS-specific handles. */
472 void *handles;
473 /** Array of bitmasks indicating which events apply for each handle. */
474 enum sp_event *masks;
475 /** Number of handles. */
476 unsigned int count;
480 * @defgroup Enumeration Port enumeration
482 * Enumerating the serial ports of a system.
484 * See @ref list_ports.c for a working example of port enumeration.
486 * @{
490 * Obtain a pointer to a new sp_port structure representing the named port.
492 * The user should allocate a variable of type "struct sp_port *" and pass a
493 * pointer to this to receive the result.
495 * The result should be freed after use by calling sp_free_port().
497 * @param[in] portname The OS-specific name of a serial port. Must not be NULL.
498 * @param[out] port_ptr If any error is returned, the variable pointed to by
499 * port_ptr will be set to NULL. Otherwise, it will be set
500 * to point to the newly allocated port. Must not be NULL.
502 * @return SP_OK upon success, a negative error code otherwise.
504 * @since 0.1.0
506 SP_API enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr);
509 * Free a port structure obtained from sp_get_port_by_name() or sp_copy_port().
511 * @param[in] port Pointer to a port structure. Must not be NULL.
513 * @since 0.1.0
515 SP_API void sp_free_port(struct sp_port *port);
518 * List the serial ports available on the system.
520 * The result obtained is an array of pointers to sp_port structures,
521 * terminated by a NULL. The user should allocate a variable of type
522 * "struct sp_port **" and pass a pointer to this to receive the result.
524 * The result should be freed after use by calling sp_free_port_list().
525 * If a port from the list is to be used after freeing the list, it must be
526 * copied first using sp_copy_port().
528 * @param[out] list_ptr If any error is returned, the variable pointed to by
529 * list_ptr will be set to NULL. Otherwise, it will be set
530 * to point to the newly allocated array. Must not be NULL.
532 * @return SP_OK upon success, a negative error code otherwise.
534 * @since 0.1.0
536 SP_API enum sp_return sp_list_ports(struct sp_port ***list_ptr);
539 * Make a new copy of an sp_port structure.
541 * The user should allocate a variable of type "struct sp_port *" and pass a
542 * pointer to this to receive the result.
544 * The copy should be freed after use by calling sp_free_port().
546 * @param[in] port Pointer to a port structure. Must not be NULL.
547 * @param[out] copy_ptr If any error is returned, the variable pointed to by
548 * copy_ptr will be set to NULL. Otherwise, it will be set
549 * to point to the newly allocated copy. Must not be NULL.
551 * @return SP_OK upon success, a negative error code otherwise.
553 * @since 0.1.0
555 SP_API enum sp_return sp_copy_port(const struct sp_port *port, struct sp_port **copy_ptr);
558 * Free a port list obtained from sp_list_ports().
560 * This will also free all the sp_port structures referred to from the list;
561 * any that are to be retained must be copied first using sp_copy_port().
563 * @param[in] ports Pointer to a list of port structures. Must not be NULL.
565 * @since 0.1.0
567 SP_API void sp_free_port_list(struct sp_port **ports);
570 * @}
571 * @defgroup Ports Port handling
573 * Opening, closing and querying ports.
575 * See @ref port_info.c for a working example of getting port information.
577 * @{
581 * Open the specified serial port.
583 * @param[in] port Pointer to a port structure. Must not be NULL.
584 * @param[in] flags Flags to use when opening the serial port.
586 * @return SP_OK upon success, a negative error code otherwise.
588 * @since 0.1.0
590 SP_API enum sp_return sp_open(struct sp_port *port, enum sp_mode flags);
593 * Close the specified serial port.
595 * @param[in] port Pointer to a port structure. Must not be NULL.
597 * @return SP_OK upon success, a negative error code otherwise.
599 * @since 0.1.0
601 SP_API enum sp_return sp_close(struct sp_port *port);
604 * Get the name of a port.
606 * The name returned is whatever is normally used to refer to a port on the
607 * current operating system; e.g. for Windows it will usually be a "COMn"
608 * device name, and for Unix it will be a device path beginning with "/dev/".
610 * @param[in] port Pointer to a port structure. Must not be NULL.
612 * @return The port name, or NULL if an invalid port is passed. The name
613 * string is part of the port structure and may not be used after
614 * the port structure has been freed.
616 * @since 0.1.0
618 SP_API char *sp_get_port_name(const struct sp_port *port);
621 * Get a description for a port, to present to end user.
623 * @param[in] port Pointer to a port structure. Must not be NULL.
625 * @return The port description, or NULL if an invalid port is passed.
626 * The description string is part of the port structure and may not
627 * be used after the port structure has been freed.
629 * @since 0.1.1
631 SP_API char *sp_get_port_description(const struct sp_port *port);
634 * Get the transport type used by a port.
636 * @param[in] port Pointer to a port structure. Must not be NULL.
638 * @return The port transport type.
640 * @since 0.1.1
642 SP_API enum sp_transport sp_get_port_transport(const struct sp_port *port);
645 * Get the USB bus number and address on bus of a USB serial adapter port.
647 * @param[in] port Pointer to a port structure. Must not be NULL.
648 * @param[out] usb_bus Pointer to a variable to store the USB bus.
649 * Can be NULL (in that case it will be ignored).
650 * @param[out] usb_address Pointer to a variable to store the USB address.
651 * Can be NULL (in that case it will be ignored).
653 * @return SP_OK upon success, a negative error code otherwise.
655 * @since 0.1.1
657 SP_API enum sp_return sp_get_port_usb_bus_address(const struct sp_port *port,
658 int *usb_bus, int *usb_address);
661 * Get the USB Vendor ID and Product ID of a USB serial adapter port.
663 * @param[in] port Pointer to a port structure. Must not be NULL.
664 * @param[out] usb_vid Pointer to a variable to store the USB VID.
665 * Can be NULL (in that case it will be ignored).
666 * @param[out] usb_pid Pointer to a variable to store the USB PID.
667 * Can be NULL (in that case it will be ignored).
669 * @return SP_OK upon success, a negative error code otherwise.
671 * @since 0.1.1
673 SP_API enum sp_return sp_get_port_usb_vid_pid(const struct sp_port *port, int *usb_vid, int *usb_pid);
676 * Get the USB manufacturer string of a USB serial adapter port.
678 * @param[in] port Pointer to a port structure. Must not be NULL.
680 * @return The port manufacturer string, or NULL if an invalid port is passed.
681 * The manufacturer string is part of the port structure and may not
682 * be used after the port structure has been freed.
684 * @since 0.1.1
686 SP_API char *sp_get_port_usb_manufacturer(const struct sp_port *port);
689 * Get the USB product string of a USB serial adapter port.
691 * @param[in] port Pointer to a port structure. Must not be NULL.
693 * @return The port product string, or NULL if an invalid port is passed.
694 * The product string is part of the port structure and may not be
695 * used after the port structure has been freed.
697 * @since 0.1.1
699 SP_API char *sp_get_port_usb_product(const struct sp_port *port);
702 * Get the USB serial number string of a USB serial adapter port.
704 * @param[in] port Pointer to a port structure. Must not be NULL.
706 * @return The port serial number, or NULL if an invalid port is passed.
707 * The serial number string is part of the port structure and may
708 * not be used after the port structure has been freed.
710 * @since 0.1.1
712 SP_API char *sp_get_port_usb_serial(const struct sp_port *port);
715 * Get the MAC address of a Bluetooth serial adapter port.
717 * @param[in] port Pointer to a port structure. Must not be NULL.
719 * @return The port MAC address, or NULL if an invalid port is passed.
720 * The MAC address string is part of the port structure and may not
721 * be used after the port structure has been freed.
723 * @since 0.1.1
725 SP_API char *sp_get_port_bluetooth_address(const struct sp_port *port);
728 * Get the operating system handle for a port.
730 * The type of the handle depends on the operating system. On Unix based
731 * systems, the handle is a file descriptor of type "int". On Windows, the
732 * handle is of type "HANDLE". The user should allocate a variable of the
733 * appropriate type and pass a pointer to this to receive the result.
735 * To obtain a valid handle, the port must first be opened by calling
736 * sp_open() using the same port structure.
738 * After the port is closed or the port structure freed, the handle may
739 * no longer be valid.
741 * @warning This feature is provided so that programs may make use of
742 * OS-specific functionality where desired. Doing so obviously
743 * comes at a cost in portability. It also cannot be guaranteed
744 * that direct usage of the OS handle will not conflict with the
745 * library's own usage of the port. Be careful.
747 * @param[in] port Pointer to a port structure. Must not be NULL.
748 * @param[out] result_ptr If any error is returned, the variable pointed to by
749 * result_ptr will have unknown contents and should not
750 * be used. Otherwise, it will be set to point to the
751 * OS handle. Must not be NULL.
753 * @return SP_OK upon success, a negative error code otherwise.
755 * @since 0.1.0
757 SP_API enum sp_return sp_get_port_handle(const struct sp_port *port, void *result_ptr);
760 * @}
762 * @defgroup Configuration Configuration
764 * Setting and querying serial port parameters.
766 * See @ref port_config.c for a working example of port configuration.
768 * You should always configure all settings before using a port.
769 * There are no default settings applied by libserialport.
770 * When you open a port it may have default settings from the OS or
771 * driver, or the settings left over by the last program to use it.
773 * You should always set baud rate, data bits, parity and stop bits.
775 * You should normally also set one of the preset @ref sp_flowcontrol
776 * flow control modes, which will set up the RTS, CTS, DTR and DSR pin
777 * behaviours and enable or disable XON/XOFF. If you need an unusual
778 * configuration not covered by the preset flow control modes, you
779 * will need to configure these settings individually, and avoid
780 * calling sp_set_flowcontrol() or sp_set_config_flowcontrol() which
781 * will overwrite these settings.
783 * A port must be opened before you can change its settings.
785 * There are two ways of accessing port settings:
787 * Configuration structures
788 * ------------------------
790 * You can read and write a whole configuration (all settings at once)
791 * using sp_get_config() and sp_set_config(). This is handy if you want
792 * to change between some preset combinations, or save and restore an
793 * existing configuration. It also ensures the changes are made
794 * together, via an efficient set of calls into the OS - in some cases
795 * a single system call can be used.
797 * Use accessor functions like sp_get_config_baudrate() and
798 * sp_set_config_baudrate() to get and set individual settings
799 * from a configuration.
801 * For each setting in a port configuration, a special value of -1 can
802 * be used, which will cause that setting to be left alone when the
803 * configuration is applied by sp_set_config().
805 * This value is also be used by sp_get_config() for any settings
806 * which are unconfigured at the OS level, or in a state that is
807 * not representable within the libserialport API.
809 * Configurations are allocated using sp_new_config() and freed
810 * with sp_free_config(). You need to manage them yourself. When
811 * a new configuration is allocated by sp_new_config(), all of
812 * its settings are initially set to the special -1 value.
814 * Direct functions for changing port settings
815 * -------------------------------------------
817 * As a shortcut, you can set individual settings on a port directly
818 * by calling functions like sp_set_baudrate() and sp_set_parity().
819 * This saves you the work of allocating a temporary config, setting it
820 * up, applying it to a port and then freeing it.
822 * @{
826 * Allocate a port configuration structure.
828 * The user should allocate a variable of type "struct sp_port_config *" and
829 * pass a pointer to this to receive the result. The variable will be updated
830 * to point to the new configuration structure. The structure is opaque and
831 * must be accessed via the functions provided.
833 * All parameters in the structure will be initialised to special values which
834 * are ignored by sp_set_config().
836 * The structure should be freed after use by calling sp_free_config().
838 * @param[out] config_ptr If any error is returned, the variable pointed to by
839 * config_ptr will be set to NULL. Otherwise, it will
840 * be set to point to the allocated config structure.
841 * Must not be NULL.
843 * @return SP_OK upon success, a negative error code otherwise.
845 * @since 0.1.0
847 SP_API enum sp_return sp_new_config(struct sp_port_config **config_ptr);
850 * Free a port configuration structure.
852 * @param[in] config Pointer to a configuration structure. Must not be NULL.
854 * @since 0.1.0
856 SP_API void sp_free_config(struct sp_port_config *config);
859 * Get the current configuration of the specified serial port.
861 * The user should allocate a configuration structure using sp_new_config()
862 * and pass this as the config parameter. The configuration structure will
863 * be updated with the port configuration.
865 * Any parameters that are configured with settings not recognised or
866 * supported by libserialport, will be set to special values that are
867 * ignored by sp_set_config().
869 * @param[in] port Pointer to a port structure. Must not be NULL.
870 * @param[out] config Pointer to a configuration structure that will hold
871 * the result. Upon errors the contents of the config
872 * struct will not be changed. Must not be NULL.
874 * @return SP_OK upon success, a negative error code otherwise.
876 * @since 0.1.0
878 SP_API enum sp_return sp_get_config(struct sp_port *port, struct sp_port_config *config);
881 * Set the configuration for the specified serial port.
883 * For each parameter in the configuration, there is a special value (usually
884 * -1, but see the documentation for each field). These values will be ignored
885 * and the corresponding setting left unchanged on the port.
887 * Upon errors, the configuration of the serial port is unknown since
888 * partial/incomplete config updates may have happened.
890 * @param[in] port Pointer to a port structure. Must not be NULL.
891 * @param[in] config Pointer to a configuration structure. Must not be NULL.
893 * @return SP_OK upon success, a negative error code otherwise.
895 * @since 0.1.0
897 SP_API enum sp_return sp_set_config(struct sp_port *port, const struct sp_port_config *config);
900 * Set the baud rate for the specified serial port.
902 * @param[in] port Pointer to a port structure. Must not be NULL.
903 * @param[in] baudrate Baud rate in bits per second.
905 * @return SP_OK upon success, a negative error code otherwise.
907 * @since 0.1.0
909 SP_API enum sp_return sp_set_baudrate(struct sp_port *port, int baudrate);
912 * Get the baud rate from a port configuration.
914 * The user should allocate a variable of type int and
915 * pass a pointer to this to receive the result.
917 * @param[in] config Pointer to a configuration structure. Must not be NULL.
918 * @param[out] baudrate_ptr Pointer to a variable to store the result. Must not be NULL.
920 * @return SP_OK upon success, a negative error code otherwise.
922 * @since 0.1.0
924 SP_API enum sp_return sp_get_config_baudrate(const struct sp_port_config *config, int *baudrate_ptr);
927 * Set the baud rate in a port configuration.
929 * @param[in] config Pointer to a configuration structure. Must not be NULL.
930 * @param[in] baudrate Baud rate in bits per second, or -1 to retain the current setting.
932 * @return SP_OK upon success, a negative error code otherwise.
934 * @since 0.1.0
936 SP_API enum sp_return sp_set_config_baudrate(struct sp_port_config *config, int baudrate);
939 * Set the data bits for the specified serial port.
941 * @param[in] port Pointer to a port structure. Must not be NULL.
942 * @param[in] bits Number of data bits.
944 * @return SP_OK upon success, a negative error code otherwise.
946 * @since 0.1.0
948 SP_API enum sp_return sp_set_bits(struct sp_port *port, int bits);
951 * Get the data bits from a port configuration.
953 * The user should allocate a variable of type int and
954 * pass a pointer to this to receive the result.
956 * @param[in] config Pointer to a configuration structure. Must not be NULL.
957 * @param[out] bits_ptr Pointer to a variable to store the result. Must not be NULL.
959 * @return SP_OK upon success, a negative error code otherwise.
961 * @since 0.1.0
963 SP_API enum sp_return sp_get_config_bits(const struct sp_port_config *config, int *bits_ptr);
966 * Set the data bits in a port configuration.
968 * @param[in] config Pointer to a configuration structure. Must not be NULL.
969 * @param[in] bits Number of data bits, or -1 to retain the current setting.
971 * @return SP_OK upon success, a negative error code otherwise.
973 * @since 0.1.0
975 SP_API enum sp_return sp_set_config_bits(struct sp_port_config *config, int bits);
978 * Set the parity setting for the specified serial port.
980 * @param[in] port Pointer to a port structure. Must not be NULL.
981 * @param[in] parity Parity setting.
983 * @return SP_OK upon success, a negative error code otherwise.
985 * @since 0.1.0
987 SP_API enum sp_return sp_set_parity(struct sp_port *port, enum sp_parity parity);
990 * Get the parity setting from a port configuration.
992 * The user should allocate a variable of type enum sp_parity and
993 * pass a pointer to this to receive the result.
995 * @param[in] config Pointer to a configuration structure. Must not be NULL.
996 * @param[out] parity_ptr Pointer to a variable to store the result. Must not be NULL.
998 * @return SP_OK upon success, a negative error code otherwise.
1000 * @since 0.1.0
1002 SP_API enum sp_return sp_get_config_parity(const struct sp_port_config *config, enum sp_parity *parity_ptr);
1005 * Set the parity setting in a port configuration.
1007 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1008 * @param[in] parity Parity setting, or -1 to retain the current setting.
1010 * @return SP_OK upon success, a negative error code otherwise.
1012 * @since 0.1.0
1014 SP_API enum sp_return sp_set_config_parity(struct sp_port_config *config, enum sp_parity parity);
1017 * Set the stop bits for the specified serial port.
1019 * @param[in] port Pointer to a port structure. Must not be NULL.
1020 * @param[in] stopbits Number of stop bits.
1022 * @return SP_OK upon success, a negative error code otherwise.
1024 * @since 0.1.0
1026 SP_API enum sp_return sp_set_stopbits(struct sp_port *port, int stopbits);
1029 * Get the stop bits from a port configuration.
1031 * The user should allocate a variable of type int and
1032 * pass a pointer to this to receive the result.
1034 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1035 * @param[out] stopbits_ptr Pointer to a variable to store the result. Must not be NULL.
1037 * @return SP_OK upon success, a negative error code otherwise.
1039 * @since 0.1.0
1041 SP_API enum sp_return sp_get_config_stopbits(const struct sp_port_config *config, int *stopbits_ptr);
1044 * Set the stop bits in a port configuration.
1046 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1047 * @param[in] stopbits Number of stop bits, or -1 to retain the current setting.
1049 * @return SP_OK upon success, a negative error code otherwise.
1051 * @since 0.1.0
1053 SP_API enum sp_return sp_set_config_stopbits(struct sp_port_config *config, int stopbits);
1056 * Set the RTS pin behaviour for the specified serial port.
1058 * @param[in] port Pointer to a port structure. Must not be NULL.
1059 * @param[in] rts RTS pin mode.
1061 * @return SP_OK upon success, a negative error code otherwise.
1063 * @since 0.1.0
1065 SP_API enum sp_return sp_set_rts(struct sp_port *port, enum sp_rts rts);
1068 * Get the RTS pin behaviour from a port configuration.
1070 * The user should allocate a variable of type enum sp_rts and
1071 * pass a pointer to this to receive the result.
1073 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1074 * @param[out] rts_ptr Pointer to a variable to store the result. Must not be NULL.
1076 * @return SP_OK upon success, a negative error code otherwise.
1078 * @since 0.1.0
1080 SP_API enum sp_return sp_get_config_rts(const struct sp_port_config *config, enum sp_rts *rts_ptr);
1083 * Set the RTS pin behaviour in a port configuration.
1085 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1086 * @param[in] rts RTS pin mode, or -1 to retain the current setting.
1088 * @return SP_OK upon success, a negative error code otherwise.
1090 * @since 0.1.0
1092 SP_API enum sp_return sp_set_config_rts(struct sp_port_config *config, enum sp_rts rts);
1095 * Set the CTS pin behaviour for the specified serial port.
1097 * @param[in] port Pointer to a port structure. Must not be NULL.
1098 * @param[in] cts CTS pin mode.
1100 * @return SP_OK upon success, a negative error code otherwise.
1102 * @since 0.1.0
1104 SP_API enum sp_return sp_set_cts(struct sp_port *port, enum sp_cts cts);
1107 * Get the CTS pin behaviour from a port configuration.
1109 * The user should allocate a variable of type enum sp_cts and
1110 * pass a pointer to this to receive the result.
1112 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1113 * @param[out] cts_ptr Pointer to a variable to store the result. Must not be NULL.
1115 * @return SP_OK upon success, a negative error code otherwise.
1117 * @since 0.1.0
1119 SP_API enum sp_return sp_get_config_cts(const struct sp_port_config *config, enum sp_cts *cts_ptr);
1122 * Set the CTS pin behaviour in a port configuration.
1124 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1125 * @param[in] cts CTS pin mode, or -1 to retain the current setting.
1127 * @return SP_OK upon success, a negative error code otherwise.
1129 * @since 0.1.0
1131 SP_API enum sp_return sp_set_config_cts(struct sp_port_config *config, enum sp_cts cts);
1134 * Set the DTR pin behaviour for the specified serial port.
1136 * @param[in] port Pointer to a port structure. Must not be NULL.
1137 * @param[in] dtr DTR pin mode.
1139 * @return SP_OK upon success, a negative error code otherwise.
1141 * @since 0.1.0
1143 SP_API enum sp_return sp_set_dtr(struct sp_port *port, enum sp_dtr dtr);
1146 * Get the DTR pin behaviour from a port configuration.
1148 * The user should allocate a variable of type enum sp_dtr and
1149 * pass a pointer to this to receive the result.
1151 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1152 * @param[out] dtr_ptr Pointer to a variable to store the result. Must not be NULL.
1154 * @return SP_OK upon success, a negative error code otherwise.
1156 * @since 0.1.0
1158 SP_API enum sp_return sp_get_config_dtr(const struct sp_port_config *config, enum sp_dtr *dtr_ptr);
1161 * Set the DTR pin behaviour in a port configuration.
1163 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1164 * @param[in] dtr DTR pin mode, or -1 to retain the current setting.
1166 * @return SP_OK upon success, a negative error code otherwise.
1168 * @since 0.1.0
1170 SP_API enum sp_return sp_set_config_dtr(struct sp_port_config *config, enum sp_dtr dtr);
1173 * Set the DSR pin behaviour for the specified serial port.
1175 * @param[in] port Pointer to a port structure. Must not be NULL.
1176 * @param[in] dsr DSR pin mode.
1178 * @return SP_OK upon success, a negative error code otherwise.
1180 * @since 0.1.0
1182 SP_API enum sp_return sp_set_dsr(struct sp_port *port, enum sp_dsr dsr);
1185 * Get the DSR pin behaviour from a port configuration.
1187 * The user should allocate a variable of type enum sp_dsr and
1188 * pass a pointer to this to receive the result.
1190 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1191 * @param[out] dsr_ptr Pointer to a variable to store the result. Must not be NULL.
1193 * @return SP_OK upon success, a negative error code otherwise.
1195 * @since 0.1.0
1197 SP_API enum sp_return sp_get_config_dsr(const struct sp_port_config *config, enum sp_dsr *dsr_ptr);
1200 * Set the DSR pin behaviour in a port configuration.
1202 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1203 * @param[in] dsr DSR pin mode, or -1 to retain the current setting.
1205 * @return SP_OK upon success, a negative error code otherwise.
1207 * @since 0.1.0
1209 SP_API enum sp_return sp_set_config_dsr(struct sp_port_config *config, enum sp_dsr dsr);
1212 * Set the XON/XOFF configuration for the specified serial port.
1214 * @param[in] port Pointer to a port structure. Must not be NULL.
1215 * @param[in] xon_xoff XON/XOFF mode.
1217 * @return SP_OK upon success, a negative error code otherwise.
1219 * @since 0.1.0
1221 SP_API enum sp_return sp_set_xon_xoff(struct sp_port *port, enum sp_xonxoff xon_xoff);
1224 * Get the XON/XOFF configuration from a port configuration.
1226 * The user should allocate a variable of type enum sp_xonxoff and
1227 * pass a pointer to this to receive the result.
1229 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1230 * @param[out] xon_xoff_ptr Pointer to a variable to store the result. Must not be NULL.
1232 * @return SP_OK upon success, a negative error code otherwise.
1234 * @since 0.1.0
1236 SP_API enum sp_return sp_get_config_xon_xoff(const struct sp_port_config *config, enum sp_xonxoff *xon_xoff_ptr);
1239 * Set the XON/XOFF configuration in a port configuration.
1241 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1242 * @param[in] xon_xoff XON/XOFF mode, or -1 to retain the current setting.
1244 * @return SP_OK upon success, a negative error code otherwise.
1246 * @since 0.1.0
1248 SP_API enum sp_return sp_set_config_xon_xoff(struct sp_port_config *config, enum sp_xonxoff xon_xoff);
1251 * Set the flow control type in a port configuration.
1253 * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
1254 * XON/XOFF settings as necessary for the specified flow control
1255 * type. For more fine-grained control of these settings, use their
1256 * individual configuration functions.
1258 * @param[in] config Pointer to a configuration structure. Must not be NULL.
1259 * @param[in] flowcontrol Flow control setting to use.
1261 * @return SP_OK upon success, a negative error code otherwise.
1263 * @since 0.1.0
1265 SP_API enum sp_return sp_set_config_flowcontrol(struct sp_port_config *config, enum sp_flowcontrol flowcontrol);
1268 * Set the flow control type for the specified serial port.
1270 * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
1271 * XON/XOFF settings as necessary for the specified flow control
1272 * type. For more fine-grained control of these settings, use their
1273 * individual configuration functions.
1275 * @param[in] port Pointer to a port structure. Must not be NULL.
1276 * @param[in] flowcontrol Flow control setting to use.
1278 * @return SP_OK upon success, a negative error code otherwise.
1280 * @since 0.1.0
1282 SP_API enum sp_return sp_set_flowcontrol(struct sp_port *port, enum sp_flowcontrol flowcontrol);
1285 * @}
1287 * @defgroup Data Data handling
1289 * Reading, writing, and flushing data.
1291 * @{
1295 * Read bytes from the specified serial port, blocking until complete.
1297 * @warning If your program runs on Unix, defines its own signal handlers, and
1298 * needs to abort blocking reads when these are called, then you
1299 * should not use this function. It repeats system calls that return
1300 * with EINTR. To be able to abort a read from a signal handler, you
1301 * should implement your own blocking read using sp_nonblocking_read()
1302 * together with a blocking method that makes sense for your program.
1303 * E.g. you can obtain the file descriptor for an open port using
1304 * sp_get_port_handle() and use this to call select() or pselect(),
1305 * with appropriate arrangements to return if a signal is received.
1307 * @param[in] port Pointer to a port structure. Must not be NULL.
1308 * @param[out] buf Buffer in which to store the bytes read. Must not be NULL.
1309 * @param[in] count Requested number of bytes to read.
1310 * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1312 * @return The number of bytes read on success, or a negative error code. If
1313 * the number of bytes returned is less than that requested, the
1314 * timeout was reached before the requested number of bytes was
1315 * available. If timeout is zero, the function will always return
1316 * either the requested number of bytes or a negative error code.
1318 * @since 0.1.0
1320 SP_API enum sp_return sp_blocking_read(struct sp_port *port, void *buf, size_t count, unsigned int timeout_ms);
1323 * Read bytes from the specified serial port, returning as soon as any data is
1324 * available.
1326 * @warning If your program runs on Unix, defines its own signal handlers, and
1327 * needs to abort blocking reads when these are called, then you
1328 * should not use this function. It repeats system calls that return
1329 * with EINTR. To be able to abort a read from a signal handler, you
1330 * should implement your own blocking read using sp_nonblocking_read()
1331 * together with a blocking method that makes sense for your program.
1332 * E.g. you can obtain the file descriptor for an open port using
1333 * sp_get_port_handle() and use this to call select() or pselect(),
1334 * with appropriate arrangements to return if a signal is received.
1336 * @param[in] port Pointer to a port structure. Must not be NULL.
1337 * @param[out] buf Buffer in which to store the bytes read. Must not be NULL.
1338 * @param[in] count Maximum number of bytes to read. Must not be zero.
1339 * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1341 * @return The number of bytes read on success, or a negative error code. If
1342 * the result is zero, the timeout was reached before any bytes were
1343 * available. If timeout_ms is zero, the function will always return
1344 * either at least one byte, or a negative error code.
1346 * @since 0.1.1
1348 SP_API enum sp_return sp_blocking_read_next(struct sp_port *port, void *buf, size_t count, unsigned int timeout_ms);
1351 * Read bytes from the specified serial port, without blocking.
1353 * @param[in] port Pointer to a port structure. Must not be NULL.
1354 * @param[out] buf Buffer in which to store the bytes read. Must not be NULL.
1355 * @param[in] count Maximum number of bytes to read.
1357 * @return The number of bytes read on success, or a negative error code. The
1358 * number of bytes returned may be any number from zero to the maximum
1359 * that was requested.
1361 * @since 0.1.0
1363 SP_API enum sp_return sp_nonblocking_read(struct sp_port *port, void *buf, size_t count);
1366 * Write bytes to the specified serial port, blocking until complete.
1368 * Note that this function only ensures that the accepted bytes have been
1369 * written to the OS; they may be held in driver or hardware buffers and not
1370 * yet physically transmitted. To check whether all written bytes have actually
1371 * been transmitted, use the sp_output_waiting() function. To wait until all
1372 * written bytes have actually been transmitted, use the sp_drain() function.
1374 * @warning If your program runs on Unix, defines its own signal handlers, and
1375 * needs to abort blocking writes when these are called, then you
1376 * should not use this function. It repeats system calls that return
1377 * with EINTR. To be able to abort a write from a signal handler, you
1378 * should implement your own blocking write using sp_nonblocking_write()
1379 * together with a blocking method that makes sense for your program.
1380 * E.g. you can obtain the file descriptor for an open port using
1381 * sp_get_port_handle() and use this to call select() or pselect(),
1382 * with appropriate arrangements to return if a signal is received.
1384 * @param[in] port Pointer to a port structure. Must not be NULL.
1385 * @param[in] buf Buffer containing the bytes to write. Must not be NULL.
1386 * @param[in] count Requested number of bytes to write.
1387 * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1389 * @return The number of bytes written on success, or a negative error code.
1390 * If the number of bytes returned is less than that requested, the
1391 * timeout was reached before the requested number of bytes was
1392 * written. If timeout is zero, the function will always return
1393 * either the requested number of bytes or a negative error code. In
1394 * the event of an error there is no way to determine how many bytes
1395 * were sent before the error occurred.
1397 * @since 0.1.0
1399 SP_API enum sp_return sp_blocking_write(struct sp_port *port, const void *buf, size_t count, unsigned int timeout_ms);
1402 * Write bytes to the specified serial port, without blocking.
1404 * Note that this function only ensures that the accepted bytes have been
1405 * written to the OS; they may be held in driver or hardware buffers and not
1406 * yet physically transmitted. To check whether all written bytes have actually
1407 * been transmitted, use the sp_output_waiting() function. To wait until all
1408 * written bytes have actually been transmitted, use the sp_drain() function.
1410 * @param[in] port Pointer to a port structure. Must not be NULL.
1411 * @param[in] buf Buffer containing the bytes to write. Must not be NULL.
1412 * @param[in] count Maximum number of bytes to write.
1414 * @return The number of bytes written on success, or a negative error code.
1415 * The number of bytes returned may be any number from zero to the
1416 * maximum that was requested.
1418 * @since 0.1.0
1420 SP_API enum sp_return sp_nonblocking_write(struct sp_port *port, const void *buf, size_t count);
1423 * Gets the number of bytes waiting in the input buffer.
1425 * @param[in] port Pointer to a port structure. Must not be NULL.
1427 * @return Number of bytes waiting on success, a negative error code otherwise.
1429 * @since 0.1.0
1431 SP_API enum sp_return sp_input_waiting(struct sp_port *port);
1434 * Gets the number of bytes waiting in the output buffer.
1436 * @param[in] port Pointer to a port structure. Must not be NULL.
1438 * @return Number of bytes waiting on success, a negative error code otherwise.
1440 * @since 0.1.0
1442 SP_API enum sp_return sp_output_waiting(struct sp_port *port);
1445 * Flush serial port buffers. Data in the selected buffer(s) is discarded.
1447 * @param[in] port Pointer to a port structure. Must not be NULL.
1448 * @param[in] buffers Which buffer(s) to flush.
1450 * @return SP_OK upon success, a negative error code otherwise.
1452 * @since 0.1.0
1454 SP_API enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers);
1457 * Wait for buffered data to be transmitted.
1459 * @warning If your program runs on Unix, defines its own signal handlers, and
1460 * needs to abort draining the output buffer when when these are
1461 * called, then you should not use this function. It repeats system
1462 * calls that return with EINTR. To be able to abort a drain from a
1463 * signal handler, you would need to implement your own blocking
1464 * drain by polling the result of sp_output_waiting().
1466 * @param[in] port Pointer to a port structure. Must not be NULL.
1468 * @return SP_OK upon success, a negative error code otherwise.
1470 * @since 0.1.0
1472 SP_API enum sp_return sp_drain(struct sp_port *port);
1475 * @}
1477 * @defgroup Waiting Waiting
1479 * Waiting for events and timeout handling.
1481 * @{
1485 * Allocate storage for a set of events.
1487 * The user should allocate a variable of type struct sp_event_set *,
1488 * then pass a pointer to this variable to receive the result.
1490 * The result should be freed after use by calling sp_free_event_set().
1492 * @param[out] result_ptr If any error is returned, the variable pointed to by
1493 * result_ptr will be set to NULL. Otherwise, it will
1494 * be set to point to the event set. Must not be NULL.
1496 * @return SP_OK upon success, a negative error code otherwise.
1498 * @since 0.1.0
1500 SP_API enum sp_return sp_new_event_set(struct sp_event_set **result_ptr);
1503 * Add events to a struct sp_event_set for a given port.
1505 * The port must first be opened by calling sp_open() using the same port
1506 * structure.
1508 * After the port is closed or the port structure freed, the results may
1509 * no longer be valid.
1511 * @param[in,out] event_set Event set to update. Must not be NULL.
1512 * @param[in] port Pointer to a port structure. Must not be NULL.
1513 * @param[in] mask Bitmask of events to be waited for.
1515 * @return SP_OK upon success, a negative error code otherwise.
1517 * @since 0.1.0
1519 SP_API enum sp_return sp_add_port_events(struct sp_event_set *event_set,
1520 const struct sp_port *port, enum sp_event mask);
1523 * Wait for any of a set of events to occur.
1525 * @param[in] event_set Event set to wait on. Must not be NULL.
1526 * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1528 * @return SP_OK upon success, a negative error code otherwise.
1530 * @since 0.1.0
1532 SP_API enum sp_return sp_wait(struct sp_event_set *event_set, unsigned int timeout_ms);
1535 * Free a structure allocated by sp_new_event_set().
1537 * @param[in] event_set Event set to free. Must not be NULL.
1539 * @since 0.1.0
1541 SP_API void sp_free_event_set(struct sp_event_set *event_set);
1544 * @}
1546 * @defgroup Signals Signals
1548 * Port signalling operations.
1550 * @{
1554 * Gets the status of the control signals for the specified port.
1556 * The user should allocate a variable of type "enum sp_signal" and pass a
1557 * pointer to this variable to receive the result. The result is a bitmask
1558 * in which individual signals can be checked by bitwise OR with values of
1559 * the sp_signal enum.
1561 * @param[in] port Pointer to a port structure. Must not be NULL.
1562 * @param[out] signal_mask Pointer to a variable to receive the result.
1563 * Must not be NULL.
1565 * @return SP_OK upon success, a negative error code otherwise.
1567 * @since 0.1.0
1569 SP_API enum sp_return sp_get_signals(struct sp_port *port, enum sp_signal *signal_mask);
1572 * Put the port transmit line into the break state.
1574 * @param[in] port Pointer to a port structure. Must not be NULL.
1576 * @return SP_OK upon success, a negative error code otherwise.
1578 * @since 0.1.0
1580 SP_API enum sp_return sp_start_break(struct sp_port *port);
1583 * Take the port transmit line out of the break state.
1585 * @param[in] port Pointer to a port structure. Must not be NULL.
1587 * @return SP_OK upon success, a negative error code otherwise.
1589 * @since 0.1.0
1591 SP_API enum sp_return sp_end_break(struct sp_port *port);
1594 * @}
1596 * @defgroup Errors Errors
1598 * Obtaining error information.
1600 * See @ref handle_errors.c for an example of error handling.
1602 * @{
1606 * Get the error code for a failed operation.
1608 * In order to obtain the correct result, this function should be called
1609 * straight after the failure, before executing any other system operations.
1610 * The result is thread-specific, and only valid when called immediately
1611 * after a previous call returning SP_ERR_FAIL.
1613 * @return The system's numeric code for the error that caused the last
1614 * operation to fail.
1616 * @since 0.1.0
1618 SP_API int sp_last_error_code(void);
1621 * Get the error message for a failed operation.
1623 * In order to obtain the correct result, this function should be called
1624 * straight after the failure, before executing other system operations.
1625 * The result is thread-specific, and only valid when called immediately
1626 * after a previous call returning SP_ERR_FAIL.
1628 * @return The system's message for the error that caused the last
1629 * operation to fail. This string may be allocated by the function,
1630 * and should be freed after use by calling sp_free_error_message().
1632 * @since 0.1.0
1634 SP_API char *sp_last_error_message(void);
1637 * Free an error message returned by sp_last_error_message().
1639 * @param[in] message The error message string to free. Must not be NULL.
1641 * @since 0.1.0
1643 SP_API void sp_free_error_message(char *message);
1646 * Set the handler function for library debugging messages.
1648 * Debugging messages are generated by the library during each operation,
1649 * to help in diagnosing problems. The handler will be called for each
1650 * message. The handler can be set to NULL to ignore all debug messages.
1652 * The handler function should accept a format string and variable length
1653 * argument list, in the same manner as e.g. printf().
1655 * The default handler is sp_default_debug_handler().
1657 * @param[in] handler The handler function to use. Can be NULL (in that case
1658 * all debug messages will be ignored).
1660 * @since 0.1.0
1662 SP_API void sp_set_debug_handler(void (*handler)(const char *format, ...));
1665 * Default handler function for library debugging messages.
1667 * This function prints debug messages to the standard error stream if the
1668 * environment variable LIBSERIALPORT_DEBUG is set. Otherwise, they are
1669 * ignored.
1671 * @param[in] format The format string to use. Must not be NULL.
1672 * @param[in] ... The variable length argument list to use.
1674 * @since 0.1.0
1676 SP_API void sp_default_debug_handler(const char *format, ...);
1678 /** @} */
1681 * @defgroup Versions Versions
1683 * Version number querying functions, definitions, and macros.
1685 * This set of API calls returns two different version numbers related
1686 * to libserialport. The "package version" is the release version number of the
1687 * libserialport tarball in the usual "major.minor.micro" format, e.g. "0.1.0".
1689 * The "library version" is independent of that; it is the libtool version
1690 * number in the "current:revision:age" format, e.g. "2:0:0".
1691 * See http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning for details.
1693 * Both version numbers (and/or individual components of them) can be
1694 * retrieved via the API calls at runtime, and/or they can be checked at
1695 * compile/preprocessor time using the respective macros.
1697 * @{
1701 * Package version macros (can be used for conditional compilation).
1704 /** The libserialport package 'major' version number. */
1705 #define SP_PACKAGE_VERSION_MAJOR 0
1707 /** The libserialport package 'minor' version number. */
1708 #define SP_PACKAGE_VERSION_MINOR 1
1710 /** The libserialport package 'micro' version number. */
1711 #define SP_PACKAGE_VERSION_MICRO 1
1713 /** The libserialport package version ("major.minor.micro") as string. */
1714 #define SP_PACKAGE_VERSION_STRING "0.1.1"
1717 * Library/libtool version macros (can be used for conditional compilation).
1720 /** The libserialport libtool 'current' version number. */
1721 #define SP_LIB_VERSION_CURRENT 1
1723 /** The libserialport libtool 'revision' version number. */
1724 #define SP_LIB_VERSION_REVISION 0
1726 /** The libserialport libtool 'age' version number. */
1727 #define SP_LIB_VERSION_AGE 1
1729 /** The libserialport libtool version ("current:revision:age") as string. */
1730 #define SP_LIB_VERSION_STRING "1:0:1"
1733 * Get the major libserialport package version number.
1735 * @return The major package version number.
1737 * @since 0.1.0
1739 SP_API int sp_get_major_package_version(void);
1742 * Get the minor libserialport package version number.
1744 * @return The minor package version number.
1746 * @since 0.1.0
1748 SP_API int sp_get_minor_package_version(void);
1751 * Get the micro libserialport package version number.
1753 * @return The micro package version number.
1755 * @since 0.1.0
1757 SP_API int sp_get_micro_package_version(void);
1760 * Get the libserialport package version number as a string.
1762 * @return The package version number string. The returned string is
1763 * static and thus should NOT be free'd by the caller.
1765 * @since 0.1.0
1767 SP_API const char *sp_get_package_version_string(void);
1770 * Get the "current" part of the libserialport library version number.
1772 * @return The "current" library version number.
1774 * @since 0.1.0
1776 SP_API int sp_get_current_lib_version(void);
1779 * Get the "revision" part of the libserialport library version number.
1781 * @return The "revision" library version number.
1783 * @since 0.1.0
1785 SP_API int sp_get_revision_lib_version(void);
1788 * Get the "age" part of the libserialport library version number.
1790 * @return The "age" library version number.
1792 * @since 0.1.0
1794 SP_API int sp_get_age_lib_version(void);
1797 * Get the libserialport library version number as a string.
1799 * @return The library version number string. The returned string is
1800 * static and thus should NOT be free'd by the caller.
1802 * @since 0.1.0
1804 SP_API const char *sp_get_lib_version_string(void);
1806 /** @} */
1809 * @example list_ports.c Getting a list of ports present on the system.
1810 * @example port_info.c Getting information on a particular serial port.
1811 * @example port_config.c Accessing configuration settings of a port.
1812 * @example handle_errors.c - Handling errors returned from the library.
1815 #ifdef __cplusplus
1817 #endif
1819 #endif