2 * This file is part of the libserialport project.
4 * Copyright (C) 2013 Martin Ling <martin-libserialport@earth.li>
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * @mainpage libserialport API
26 * libserialport is a minimal library written in C that is intended to take
27 * care of the OS-specific details when writing software that uses serial ports.
29 * By writing your serial code to use libserialport, you enable it to work
30 * transparently on any platform supported by the library.
32 * The operations that are supported are:
34 * - @ref Enumeration (obtaining a list of serial ports on the system)
36 * - @ref Configuration (baud rate, parity, etc.)
37 * - @ref Signals (modem control lines, breaks, etc.)
42 * libserialport is an open source project released under the LGPL3+ license.
47 * The API is simple, and designed to be a minimal wrapper around the serial
48 * port support in each OS.
50 * Most functions take a pointer to a struct sp_port, which represents a serial
51 * port. These structures are always allocated and freed by the library, using
52 * the functions in the @ref Enumeration "Enumeration" section.
54 * Most functions have return type @ref sp_return and can return only four
55 * possible error values:
57 * - @ref SP_ERR_ARG means that a function was called with invalid
58 * arguments. This implies a bug in the caller. The arguments passed would
59 * be invalid regardless of the underlying OS or serial device involved.
61 * - @ref SP_ERR_FAIL means that the OS reported a failure. The error code or
62 * message provided by the OS can be obtained by calling sp_last_error_code()
63 * or sp_last_error_message().
65 * - @ref SP_ERR_SUPP indicates that there is no support for the requested
66 * operation in the current OS, driver or device. No error message is
67 * available from the OS in this case. There is either no way to request
68 * the operation in the first place, or libserialport does not know how to
69 * do so in the current version.
71 * - @ref SP_ERR_MEM indicates that a memory allocation failed.
73 * All of these error values are negative.
75 * Calls that succeed return @ref SP_OK, which is equal to zero. Some functions
76 * declared @ref sp_return can also return a positive value for a successful
77 * numeric result, e.g. sp_blocking_read() or sp_blocking_write().
80 #ifndef LIBSERIALPORT_LIBSERIALPORT_H
81 #define LIBSERIALPORT_LIBSERIALPORT_H
94 /** Operation completed successfully. */
96 /** Invalid arguments were passed to the function. */
98 /** A system error occured while executing the operation. */
100 /** A memory allocation failed while executing the operation. */
102 /** The requested operation is not supported by this system or device. */
106 /** Port access modes. */
108 /** Open port for read access. */
110 /** Open port for write access. */
116 /* Data received and ready to read. */
117 SP_EVENT_RX_READY
= 1,
118 /* Ready to transmit new data. */
119 SP_EVENT_TX_READY
= 2,
124 /** Buffer selection. */
128 /** Output buffer. */
134 /** Parity settings. */
136 /** Special value to indicate setting should be left alone. */
137 SP_PARITY_INVALID
= -1,
150 /** RTS pin behaviour. */
152 /** Special value to indicate setting should be left alone. */
158 /** RTS used for flow control. */
159 SP_RTS_FLOW_CONTROL
= 2,
162 /** CTS pin behaviour. */
164 /** Special value to indicate setting should be left alone. */
168 /** CTS used for flow control. */
169 SP_CTS_FLOW_CONTROL
= 1,
172 /** DTR pin behaviour. */
174 /** Special value to indicate setting should be left alone. */
180 /** DTR used for flow control. */
181 SP_DTR_FLOW_CONTROL
= 2,
184 /** DSR pin behaviour. */
186 /** Special value to indicate setting should be left alone. */
190 /** DSR used for flow control. */
191 SP_DSR_FLOW_CONTROL
= 1,
194 /** XON/XOFF flow control behaviour. */
196 /** Special value to indicate setting should be left alone. */
197 SP_XONXOFF_INVALID
= -1,
198 /** XON/XOFF disabled. */
199 SP_XONXOFF_DISABLED
= 0,
200 /** XON/XOFF enabled for input only. */
202 /** XON/XOFF enabled for output only. */
204 /** XON/XOFF enabled for input and output. */
205 SP_XONXOFF_INOUT
= 3,
208 /** Standard flow control combinations. */
209 enum sp_flowcontrol
{
210 /** No flow control. */
211 SP_FLOWCONTROL_NONE
= 0,
212 /** Software flow control using XON/XOFF characters. */
213 SP_FLOWCONTROL_XONXOFF
= 1,
214 /** Hardware flow control using RTS/CTS signals. */
215 SP_FLOWCONTROL_RTSCTS
= 2,
216 /** Hardware flow control using DTR/DSR signals. */
217 SP_FLOWCONTROL_DTRDSR
= 3,
220 /** Input signals. */
222 /** Clear to send. */
224 /** Data set ready. */
226 /** Data carrier detect. */
228 /** Ring indicator. */
234 * An opaque structure representing a serial port.
239 * @struct sp_port_config
240 * An opaque structure representing the configuration for a serial port.
242 struct sp_port_config
;
245 * @struct sp_event_set
246 * A set of handles to wait on for events.
248 struct sp_event_set
{
249 /** Array of OS-specific handles. */
251 /** Array of bitmasks indicating which events apply for each handle. */
252 enum sp_event
*masks
;
253 /** Number of handles. */
258 @defgroup Enumeration Port enumeration
263 * Obtain a pointer to a new sp_port structure representing the named port.
265 * The user should allocate a variable of type "struct sp_port *" and pass a
266 * pointer to this to receive the result.
268 * The result should be freed after use by calling sp_free_port().
270 * If any error is returned, the variable pointed to by port_ptr will be set
271 * to NULL. Otherwise, it will be set to point to the newly allocated port.
273 * @return SP_OK upon success, a negative error code otherwise.
277 enum sp_return
sp_get_port_by_name(const char *portname
, struct sp_port
**port_ptr
);
280 * Free a port structure obtained from sp_get_port_by_name() or sp_copy_port().
284 void sp_free_port(struct sp_port
*port
);
287 * List the serial ports available on the system.
289 * The result obtained is an array of pointers to sp_port structures,
290 * terminated by a NULL. The user should allocate a variable of type
291 * "struct sp_port **" and pass a pointer to this to receive the result.
293 * The result should be freed after use by calling sp_free_port_list().
294 * If a port from the list is to be used after freeing the list, it must be
295 * copied first using sp_copy_port().
297 * If any error is returned, the variable pointed to by list_ptr will be set
298 * to NULL. Otherwise, it will be set to point to the newly allocated array.
300 * @return SP_OK upon success, a negative error code otherwise.
304 enum sp_return
sp_list_ports(struct sp_port
***list_ptr
);
307 * Make a new copy of a sp_port structure.
309 * The user should allocate a variable of type "struct sp_port *" and pass a
310 * pointer to this to receive the result.
312 * The copy should be freed after use by calling sp_free_port().
314 * If any error is returned, the variable pointed to by copy_ptr will be set
315 * to NULL. Otherwise, it will be set to point to the newly allocated copy.
317 * @return SP_OK upon success, a negative error code otherwise.
321 enum sp_return
sp_copy_port(const struct sp_port
*port
, struct sp_port
**copy_ptr
);
324 * Free a port list obtained from sp_list_ports().
326 * This will also free all the sp_port structures referred to from the list;
327 * any that are to be retained must be copied first using sp_copy_port().
331 void sp_free_port_list(struct sp_port
**ports
);
335 * @defgroup Ports Opening, closing and querying ports
340 * Open the specified serial port.
342 * @param port Pointer to port structure.
343 * @param flags Flags to use when opening the serial port.
345 * @return SP_OK upon success, a negative error code otherwise.
349 enum sp_return
sp_open(struct sp_port
*port
, enum sp_mode flags
);
352 * Close the specified serial port.
354 * @return SP_OK upon success, a negative error code otherwise.
358 enum sp_return
sp_close(struct sp_port
*port
);
361 * Get the name of a port.
363 * The name returned is whatever is normally used to refer to a port on the
364 * current operating system; e.g. for Windows it will usually be a "COMn"
365 * device name, and for Unix it will be a device path beginning with "/dev/".
367 * @param port Pointer to port structure.
369 * @return The port name, or NULL if an invalid port is passed. The name
370 * string is part of the port structure and may not be used after the
371 * port structure has been freed.
375 char *sp_get_port_name(const struct sp_port
*port
);
378 * Get the operating system handle for a port.
380 * The type of the handle depends on the operating system. On Unix based
381 * systems, the handle is a file descriptor of type "int". On Windows, the
382 * handle is of type "HANDLE". The user should allocate a variable of the
383 * appropriate type and pass a pointer to this to receive the result.
385 * To obtain a valid handle, the port must first be opened by calling
386 * sp_open() using the same port structure.
388 * After the port is closed or the port structure freed, the handle may
389 * no longer be valid.
391 * @warning This feature is provided so that programs may make use of
392 * OS-specific functionality where desired. Doing so obviously
393 * comes at a cost in portability. It also cannot be guaranteed
394 * that direct usage of the OS handle will not conflict with the
395 * library's own usage of the port. Be careful.
397 * @return SP_OK upon success, a negative error code otherwise.
401 enum sp_return
sp_get_port_handle(const struct sp_port
*port
, void *result_ptr
);
405 * @defgroup Configuration Setting port parameters
410 * Allocate a port configuration structure.
412 * The user should allocate a variable of type "struct sp_config *" and pass a
413 * pointer to this to receive the result. The variable will be updated to
414 * point to the new configuration structure. The structure is opaque and must
415 * be accessed via the functions provided.
417 * All parameters in the structure will be initialised to special values which
418 * are ignored by sp_set_config().
420 * The structure should be freed after use by calling sp_free_config().
422 * @param config_ptr Pointer to variable to receive result.
424 * @return SP_OK upon success, a negative error code otherwise.
428 enum sp_return
sp_new_config(struct sp_port_config
**config_ptr
);
431 * Free a port configuration structure.
433 * @param config Pointer to configuration structure.
437 void sp_free_config(struct sp_port_config
*config
);
440 * Get the current configuration of the specified serial port.
442 * The user should allocate a configuration structure using sp_new_config()
443 * and pass this as the config parameter. The configuration structure will
444 * be updated with the port configuration.
446 * Any parameters that are configured with settings not recognised or
447 * supported by libserialport, will be set to special values that are
448 * ignored by sp_set_config().
450 * @return SP_OK upon success, a negative error code otherwise.
454 enum sp_return
sp_get_config(struct sp_port
*port
, struct sp_port_config
*config
);
457 * Set the configuration for the specified serial port.
459 * For each parameter in the configuration, there is a special value (usually
460 * -1, but see the documentation for each field). These values will be ignored
461 * and the corresponding setting left unchanged on the port.
463 * @return SP_OK upon success, a negative error code otherwise.
467 enum sp_return
sp_set_config(struct sp_port
*port
, const struct sp_port_config
*config
);
470 * Set the baud rate for the specified serial port.
472 * @param port Pointer to port structure.
473 * @param baudrate Baud rate in bits per second.
475 * @return SP_OK upon success, a negative error code otherwise.
479 enum sp_return
sp_set_baudrate(struct sp_port
*port
, int baudrate
);
482 * Get the baud rate from a port configuration.
484 * The user should allocate a variable of type int and pass a pointer to this
485 * to receive the result.
487 * @param config Pointer to configuration structure.
488 * @param baudrate_ptr Pointer to variable to store result.
490 * @return SP_OK upon success, a negative error code otherwise.
494 enum sp_return
sp_get_config_baudrate(const struct sp_port_config
*config
, int *baudrate_ptr
);
497 * Set the baud rate in a port configuration.
499 * @param config Pointer to configuration structure.
500 * @param baudrate Baud rate in bits per second, or -1 to retain current setting.
502 * @return SP_OK upon success, a negative error code otherwise.
506 enum sp_return
sp_set_config_baudrate(struct sp_port_config
*config
, int baudrate
);
509 * Set the data bits for the specified serial port.
511 * @param port Pointer to port structure.
512 * @param bits Number of data bits.
514 * @return SP_OK upon success, a negative error code otherwise.
518 enum sp_return
sp_set_bits(struct sp_port
*port
, int bits
);
521 * Get the data bits from a port configuration.
523 * The user should allocate a variable of type int and pass a pointer to this
524 * to receive the result.
526 * @param config Pointer to configuration structure.
527 * @param bits_ptr Pointer to variable to store result.
529 * @return SP_OK upon success, a negative error code otherwise.
533 enum sp_return
sp_get_config_bits(const struct sp_port_config
*config
, int *bits_ptr
);
536 * Set the data bits in a port configuration.
538 * @param config Pointer to configuration structure.
539 * @param bits Number of data bits, or -1 to retain current setting.
541 * @return SP_OK upon success, a negative error code otherwise.
545 enum sp_return
sp_set_config_bits(struct sp_port_config
*config
, int bits
);
548 * Set the parity setting for the specified serial port.
550 * @param port Pointer to port structure.
551 * @param parity Parity setting.
553 * @return SP_OK upon success, a negative error code otherwise.
557 enum sp_return
sp_set_parity(struct sp_port
*port
, enum sp_parity parity
);
560 * Get the parity setting from a port configuration.
562 * The user should allocate a variable of type enum sp_parity and pass a pointer to this
563 * to receive the result.
565 * @param config Pointer to configuration structure.
566 * @param parity_ptr Pointer to variable to store result.
568 * @return SP_OK upon success, a negative error code otherwise.
572 enum sp_return
sp_get_config_parity(const struct sp_port_config
*config
, enum sp_parity
*parity_ptr
);
575 * Set the parity setting in a port configuration.
577 * @param config Pointer to configuration structure.
578 * @param parity Parity setting, or -1 to retain current setting.
580 * @return SP_OK upon success, a negative error code otherwise.
584 enum sp_return
sp_set_config_parity(struct sp_port_config
*config
, enum sp_parity parity
);
587 * Set the stop bits for the specified serial port.
589 * @param port Pointer to port structure.
590 * @param stopbits Number of stop bits.
592 * @return SP_OK upon success, a negative error code otherwise.
596 enum sp_return
sp_set_stopbits(struct sp_port
*port
, int stopbits
);
599 * Get the stop bits from a port configuration.
601 * The user should allocate a variable of type int and pass a pointer to this
602 * to receive the result.
604 * @param config Pointer to configuration structure.
605 * @param stopbits_ptr Pointer to variable to store result.
607 * @return SP_OK upon success, a negative error code otherwise.
611 enum sp_return
sp_get_config_stopbits(const struct sp_port_config
*config
, int *stopbits_ptr
);
614 * Set the stop bits in a port configuration.
616 * @param config Pointer to configuration structure.
617 * @param stopbits Number of stop bits, or -1 to retain current setting.
619 * @return SP_OK upon success, a negative error code otherwise.
623 enum sp_return
sp_set_config_stopbits(struct sp_port_config
*config
, int stopbits
);
626 * Set the RTS pin behaviour for the specified serial port.
628 * @param port Pointer to port structure.
629 * @param rts RTS pin mode.
631 * @return SP_OK upon success, a negative error code otherwise.
635 enum sp_return
sp_set_rts(struct sp_port
*port
, enum sp_rts rts
);
638 * Get the RTS pin behaviour from a port configuration.
640 * The user should allocate a variable of type enum sp_rts and pass a pointer to this
641 * to receive the result.
643 * @param config Pointer to configuration structure.
644 * @param rts_ptr Pointer to variable to store result.
646 * @return SP_OK upon success, a negative error code otherwise.
650 enum sp_return
sp_get_config_rts(const struct sp_port_config
*config
, enum sp_rts
*rts_ptr
);
653 * Set the RTS pin behaviour in a port configuration.
655 * @param config Pointer to configuration structure.
656 * @param rts RTS pin mode, or -1 to retain current setting.
658 * @return SP_OK upon success, a negative error code otherwise.
662 enum sp_return
sp_set_config_rts(struct sp_port_config
*config
, enum sp_rts rts
);
665 * Set the CTS pin behaviour for the specified serial port.
667 * @param port Pointer to port structure.
668 * @param cts CTS pin mode.
670 * @return SP_OK upon success, a negative error code otherwise.
674 enum sp_return
sp_set_cts(struct sp_port
*port
, enum sp_cts cts
);
677 * Get the CTS pin behaviour from a port configuration.
679 * The user should allocate a variable of type enum sp_cts and pass a pointer to this
680 * to receive the result.
682 * @param config Pointer to configuration structure.
683 * @param cts_ptr Pointer to variable to store result.
685 * @return SP_OK upon success, a negative error code otherwise.
689 enum sp_return
sp_get_config_cts(const struct sp_port_config
*config
, enum sp_cts
*cts_ptr
);
692 * Set the CTS pin behaviour in a port configuration.
694 * @param config Pointer to configuration structure.
695 * @param cts CTS pin mode, or -1 to retain current setting.
697 * @return SP_OK upon success, a negative error code otherwise.
701 enum sp_return
sp_set_config_cts(struct sp_port_config
*config
, enum sp_cts cts
);
704 * Set the DTR pin behaviour for the specified serial port.
706 * @param port Pointer to port structure.
707 * @param dtr DTR pin mode.
709 * @return SP_OK upon success, a negative error code otherwise.
713 enum sp_return
sp_set_dtr(struct sp_port
*port
, enum sp_dtr dtr
);
716 * Get the DTR pin behaviour from a port configuration.
718 * The user should allocate a variable of type enum sp_dtr and pass a pointer to this
719 * to receive the result.
721 * @param config Pointer to configuration structure.
722 * @param dtr_ptr Pointer to variable to store result.
724 * @return SP_OK upon success, a negative error code otherwise.
728 enum sp_return
sp_get_config_dtr(const struct sp_port_config
*config
, enum sp_dtr
*dtr_ptr
);
731 * Set the DTR pin behaviour in a port configuration.
733 * @param config Pointer to configuration structure.
734 * @param dtr DTR pin mode, or -1 to retain current setting.
736 * @return SP_OK upon success, a negative error code otherwise.
740 enum sp_return
sp_set_config_dtr(struct sp_port_config
*config
, enum sp_dtr dtr
);
743 * Set the DSR pin behaviour for the specified serial port.
745 * @param port Pointer to port structure.
746 * @param dsr DSR pin mode.
748 * @return SP_OK upon success, a negative error code otherwise.
752 enum sp_return
sp_set_dsr(struct sp_port
*port
, enum sp_dsr dsr
);
755 * Get the DSR pin behaviour from a port configuration.
757 * The user should allocate a variable of type enum sp_dsr and pass a pointer to this
758 * to receive the result.
760 * @param config Pointer to configuration structure.
761 * @param dsr_ptr Pointer to variable to store result.
763 * @return SP_OK upon success, a negative error code otherwise.
767 enum sp_return
sp_get_config_dsr(const struct sp_port_config
*config
, enum sp_dsr
*dsr_ptr
);
770 * Set the DSR pin behaviour in a port configuration.
772 * @param config Pointer to configuration structure.
773 * @param dsr DSR pin mode, or -1 to retain current setting.
775 * @return SP_OK upon success, a negative error code otherwise.
779 enum sp_return
sp_set_config_dsr(struct sp_port_config
*config
, enum sp_dsr dsr
);
782 * Set the XON/XOFF configuration for the specified serial port.
784 * @param port Pointer to port structure.
785 * @param xon_xoff XON/XOFF mode.
787 * @return SP_OK upon success, a negative error code otherwise.
791 enum sp_return
sp_set_xon_xoff(struct sp_port
*port
, enum sp_xonxoff xon_xoff
);
794 * Get the XON/XOFF configuration from a port configuration.
796 * The user should allocate a variable of type enum sp_xonxoff and pass a pointer to this
797 * to receive the result.
799 * @param config Pointer to configuration structure.
800 * @param xon_xoff_ptr Pointer to variable to store result.
802 * @return SP_OK upon success, a negative error code otherwise.
806 enum sp_return
sp_get_config_xon_xoff(const struct sp_port_config
*config
, enum sp_xonxoff
*xon_xoff_ptr
);
809 * Set the XON/XOFF configuration in a port configuration.
811 * @param config Pointer to configuration structure.
812 * @param xon_xoff XON/XOFF mode, or -1 to retain current setting.
814 * @return SP_OK upon success, a negative error code otherwise.
818 enum sp_return
sp_set_config_xon_xoff(struct sp_port_config
*config
, enum sp_xonxoff xon_xoff
);
821 * Set the flow control type in a port configuration.
823 * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
824 * XON/XOFF settings as necessary for the specified flow control
825 * type. For more fine-grained control of these settings, use their
826 * individual configuration functions.
828 * @param config Pointer to configuration structure.
829 * @param flowcontrol Flow control setting to use.
831 * @return SP_OK upon success, a negative error code otherwise.
835 enum sp_return
sp_set_config_flowcontrol(struct sp_port_config
*config
, enum sp_flowcontrol flowcontrol
);
838 * Set the flow control type for the specified serial port.
840 * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
841 * XON/XOFF settings as necessary for the specified flow control
842 * type. For more fine-grained control of these settings, use their
843 * individual configuration functions.
845 * @param port Pointer to port structure.
846 * @param flowcontrol Flow control setting to use.
848 * @return SP_OK upon success, a negative error code otherwise.
852 enum sp_return
sp_set_flowcontrol(struct sp_port
*port
, enum sp_flowcontrol flowcontrol
);
856 * @defgroup Data Reading, writing, and flushing data
861 * Read bytes from the specified serial port, blocking until complete.
863 * @warning If your program runs on Unix, defines its own signal handlers, and
864 * needs to abort blocking reads when these are called, then you
865 * should not use this function. It repeats system calls that return
866 * with EINTR. To be able to abort a read from a signal handler, you
867 * should implement your own blocking read using sp_nonblocking_read()
868 * together with a blocking method that makes sense for your program.
869 * E.g. you can obtain the file descriptor for an open port using
870 * sp_get_port_handle() and use this to call select() or pselect(),
871 * with appropriate arrangements to return if a signal is received.
873 * @param port Pointer to port structure.
874 * @param buf Buffer in which to store the bytes read.
875 * @param count Requested number of bytes to read.
876 * @param timeout Timeout in milliseconds, or zero to wait indefinitely.
878 * @return The number of bytes read on success, or a negative error code. If
879 * the number of bytes returned is less than that requested, the
880 * timeout was reached before the requested number of bytes was
881 * available. If timeout is zero, the function will always return
882 * either the requested number of bytes or a negative error code.
886 enum sp_return
sp_blocking_read(struct sp_port
*port
, void *buf
, size_t count
, unsigned int timeout
);
889 * Read bytes from the specified serial port, without blocking.
891 * @param port Pointer to port structure.
892 * @param buf Buffer in which to store the bytes read.
893 * @param count Maximum number of bytes to read.
895 * @return The number of bytes read on success, or a negative error code. The
896 * number of bytes returned may be any number from zero to the maximum
897 * that was requested.
901 enum sp_return
sp_nonblocking_read(struct sp_port
*port
, void *buf
, size_t count
);
904 * Write bytes to the specified serial port, blocking until complete.
906 * Note that this function only ensures that the accepted bytes have been
907 * written to the OS; they may be held in driver or hardware buffers and not
908 * yet physically transmitted. To check whether all written bytes have actually
909 * been transmitted, use the sp_output_waiting() function. To wait until all
910 * written bytes have actually been transmitted, use the sp_drain() function.
912 * @warning If your program runs on Unix, defines its own signal handlers, and
913 * needs to abort blocking writes when these are called, then you
914 * should not use this function. It repeats system calls that return
915 * with EINTR. To be able to abort a write from a signal handler, you
916 * should implement your own blocking write using sp_nonblocking_write()
917 * together with a blocking method that makes sense for your program.
918 * E.g. you can obtain the file descriptor for an open port using
919 * sp_get_port_handle() and use this to call select() or pselect(),
920 * with appropriate arrangements to return if a signal is received.
922 * @param port Pointer to port structure.
923 * @param buf Buffer containing the bytes to write.
924 * @param count Requested number of bytes to write.
925 * @param timeout Timeout in milliseconds, or zero to wait indefinitely.
927 * @return The number of bytes written on success, or a negative error code.
928 * If the number of bytes returned is less than that requested, the
929 * timeout was reached before the requested number of bytes was
930 * written. If timeout is zero, the function will always return
931 * either the requested number of bytes or a negative error code. In
932 * the event of an error there is no way to determine how many bytes
933 * were sent before the error occured.
937 enum sp_return
sp_blocking_write(struct sp_port
*port
, const void *buf
, size_t count
, unsigned int timeout
);
940 * Write bytes to the specified serial port, without blocking.
942 * Note that this function only ensures that the accepted bytes have been
943 * written to the OS; they may be held in driver or hardware buffers and not
944 * yet physically transmitted. To check whether all written bytes have actually
945 * been transmitted, use the sp_output_waiting() function. To wait until all
946 * written bytes have actually been transmitted, use the sp_drain() function.
948 * @param port Pointer to port structure.
949 * @param buf Buffer containing the bytes to write.
950 * @param count Maximum number of bytes to write.
952 * @return The number of bytes written on success, or a negative error code.
953 * The number of bytes returned may be any number from zero to the
954 * maximum that was requested.
958 enum sp_return
sp_nonblocking_write(struct sp_port
*port
, const void *buf
, size_t count
);
961 * Gets the number of bytes waiting in the input buffer.
963 * @param port Pointer to port structure.
965 * @return Number of bytes waiting on success, a negative error code otherwise.
969 enum sp_return
sp_input_waiting(struct sp_port
*port
);
972 * Gets the number of bytes waiting in the output buffer.
974 * @param port Pointer to port structure.
976 * @return Number of bytes waiting on success, a negative error code otherwise.
980 enum sp_return
sp_output_waiting(struct sp_port
*port
);
983 * Flush serial port buffers. Data in the selected buffer(s) is discarded.
985 * @param port Pointer to port structure.
986 * @param buffers Which buffer(s) to flush.
988 * @return SP_OK upon success, a negative error code otherwise.
992 enum sp_return
sp_flush(struct sp_port
*port
, enum sp_buffer buffers
);
995 * Wait for buffered data to be transmitted.
997 * @warning If your program runs on Unix, defines its own signal handlers, and
998 * needs to abort draining the output buffer when when these are
999 * called, then you should not use this function. It repeats system
1000 * calls that return with EINTR. To be able to abort a drain from a
1001 * signal handler, you would need to implement your own blocking
1002 * drain by polling the result of sp_output_waiting().
1004 * @param port Pointer to port structure.
1006 * @return SP_OK upon success, a negative error code otherwise.
1010 enum sp_return
sp_drain(struct sp_port
*port
);
1014 * @defgroup Waiting Waiting for events
1019 * Allocate storage for a set of events.
1021 * The user should allocate a variable of type struct sp_event_set *,
1022 * then pass a pointer to this variable to receive the result.
1024 * The result should be freed after use by calling sp_free_event_set().
1026 * @return SP_OK upon success, a negative error code otherwise.
1030 enum sp_return
sp_new_event_set(struct sp_event_set
**result_ptr
);
1033 * Add events to a struct sp_event_set for a given port.
1035 * The port must first be opened by calling sp_open() using the same port
1038 * After the port is closed or the port structure freed, the results may
1039 * no longer be valid.
1041 * @param event_set Event set to update.
1042 * @param port Pointer to port structure.
1043 * @param mask Bitmask of events to be waited for.
1045 * @return SP_OK upon success, a negative error code otherwise.
1049 enum sp_return
sp_add_port_events(struct sp_event_set
*event_set
,
1050 const struct sp_port
*port
, enum sp_event mask
);
1053 * Wait for any of a set of events to occur.
1055 * @param event_set Event set to wait on.
1056 * @param timeout Timeout in milliseconds, or zero to wait indefinitely.
1058 * @return SP_OK upon success, a negative error code otherwise.
1062 enum sp_return
sp_wait(struct sp_event_set
*event_set
, unsigned int timeout
);
1065 * Free a structure allocated by sp_new_event_set().
1069 void sp_free_event_set(struct sp_event_set
*event_set
);
1073 * @defgroup Signals Port signalling operations
1078 * Gets the status of the control signals for the specified port.
1080 * The user should allocate a variable of type "enum sp_signal" and pass a
1081 * pointer to this variable to receive the result. The result is a bitmask
1082 * in which individual signals can be checked by bitwise OR with values of
1083 * the sp_signal enum.
1085 * @param port Pointer to port structure.
1086 * @param signals Pointer to variable to receive result.
1088 * @return SP_OK upon success, a negative error code otherwise.
1092 enum sp_return
sp_get_signals(struct sp_port
*port
, enum sp_signal
*signals
);
1095 * Put the port transmit line into the break state.
1097 * @param port Pointer to port structure.
1099 * @return SP_OK upon success, a negative error code otherwise.
1103 enum sp_return
sp_start_break(struct sp_port
*port
);
1106 * Take the port transmit line out of the break state.
1108 * @param port Pointer to port structure.
1110 * @return SP_OK upon success, a negative error code otherwise.
1114 enum sp_return
sp_end_break(struct sp_port
*port
);
1118 * @defgroup Errors Obtaining error information
1123 * Get the error code for a failed operation.
1125 * In order to obtain the correct result, this function should be called
1126 * straight after the failure, before executing any other system operations.
1128 * @return The system's numeric code for the error that caused the last
1129 * operation to fail.
1133 int sp_last_error_code(void);
1136 * Get the error message for a failed operation.
1138 * In order to obtain the correct result, this function should be called
1139 * straight after the failure, before executing other system operations.
1141 * @return The system's message for the error that caused the last
1142 * operation to fail. This string may be allocated by the function,
1143 * and should be freed after use by calling sp_free_error_message().
1147 char *sp_last_error_message(void);
1150 * Free an error message returned by sp_last_error_message().
1154 void sp_free_error_message(char *message
);
1157 * Set the handler function for library debugging messages.
1159 * Debugging messages are generated by the library during each operation,
1160 * to help in diagnosing problems. The handler will be called for each
1161 * message. The handler can be set to NULL to ignore all debug messages.
1163 * The handler function should accept a format string and variable length
1164 * argument list, in the same manner as e.g. printf().
1166 * The default handler is sp_default_debug_handler().
1170 void sp_set_debug_handler(void (*handler
)(const char *format
, ...));
1173 * Default handler function for library debugging messages.
1175 * This function prints debug messages to the standard error stream if the
1176 * environment variable LIBSERIALPORT_DEBUG is set. Otherwise, they are
1181 void sp_default_debug_handler(const char *format
, ...);
1186 * @defgroup Versions Version number querying functions, definitions, and macros
1188 * This set of API calls returns two different version numbers related
1189 * to libserialport. The "package version" is the release version number of the
1190 * libserialport tarball in the usual "major.minor.micro" format, e.g. "0.1.0".
1192 * The "library version" is independent of that; it is the libtool version
1193 * number in the "current:revision:age" format, e.g. "2:0:0".
1194 * See http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning for details.
1196 * Both version numbers (and/or individual components of them) can be
1197 * retrieved via the API calls at runtime, and/or they can be checked at
1198 * compile/preprocessor time using the respective macros.
1204 * Package version macros (can be used for conditional compilation).
1207 /** The libserialport package 'major' version number. */
1208 #define SP_PACKAGE_VERSION_MAJOR @SP_PACKAGE_VERSION_MAJOR@
1210 /** The libserialport package 'minor' version number. */
1211 #define SP_PACKAGE_VERSION_MINOR @SP_PACKAGE_VERSION_MINOR@
1213 /** The libserialport package 'micro' version number. */
1214 #define SP_PACKAGE_VERSION_MICRO @SP_PACKAGE_VERSION_MICRO@
1216 /** The libserialport package version ("major.minor.micro") as string. */
1217 #define SP_PACKAGE_VERSION_STRING "@SP_PACKAGE_VERSION@"
1220 * Library/libtool version macros (can be used for conditional compilation).
1223 /** The libserialport libtool 'current' version number. */
1224 #define SP_LIB_VERSION_CURRENT @SP_LIB_VERSION_CURRENT@
1226 /** The libserialport libtool 'revision' version number. */
1227 #define SP_LIB_VERSION_REVISION @SP_LIB_VERSION_REVISION@
1229 /** The libserialport libtool 'age' version number. */
1230 #define SP_LIB_VERSION_AGE @SP_LIB_VERSION_AGE@
1232 /** The libserialport libtool version ("current:revision:age") as string. */
1233 #define SP_LIB_VERSION_STRING "@SP_LIB_VERSION@"
1236 * Get the major libserialport package version number.
1238 * @return The major package version number.
1242 int sp_get_major_package_version(void);
1245 * Get the minor libserialport package version number.
1247 * @return The minor package version number.
1251 int sp_get_minor_package_version(void);
1254 * Get the micro libserialport package version number.
1256 * @return The micro package version number.
1260 int sp_get_micro_package_version(void);
1263 * Get the libserialport package version number as a string.
1265 * @return The package version number string. The returned string is
1266 * static and thus should NOT be free'd by the caller.
1270 const char *sp_get_package_version_string(void);
1273 * Get the "current" part of the libserialport library version number.
1275 * @return The "current" library version number.
1279 int sp_get_current_lib_version(void);
1282 * Get the "revision" part of the libserialport library version number.
1284 * @return The "revision" library version number.
1288 int sp_get_revision_lib_version(void);
1291 * Get the "age" part of the libserialport library version number.
1293 * @return The "age" library version number.
1297 int sp_get_age_lib_version(void);
1300 * Get the libserialport library version number as a string.
1302 * @return The library version number string. The returned string is
1303 * static and thus should NOT be free'd by the caller.
1307 const char *sp_get_lib_version_string(void);