]> sigrok.org Git - libserialport.git/blame_incremental - libserialport.h.in
Fix a potential segfault in sp_get_port_handle().
[libserialport.git] / libserialport.h.in
... / ...
CommitLineData
1/*
2 * This file is part of the libserialport project.
3 *
4 * Copyright (C) 2013 Martin Ling <martin-libserialport@earth.li>
5 *
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.
10 *
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.
15 *
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/>.
18 */
19
20/**
21 * @mainpage libserialport API
22 *
23 * Introduction
24 * ============
25 *
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.
28 *
29 * By writing your serial code to use libserialport, you enable it to work
30 * transparently on any platform supported by the library.
31 *
32 * The operations that are supported are:
33 *
34 * - @ref Enumeration (obtaining a list of serial ports on the system)
35 * - @ref Ports
36 * - @ref Configuration (baud rate, parity, etc.)
37 * - @ref Signals (modem control lines, breaks, etc.)
38 * - @ref Data
39 * - @ref Waiting
40 * - @ref Errors
41 *
42 * libserialport is an open source project released under the LGPL3+ license.
43 *
44 * API principles
45 * ==============
46 *
47 * The API is simple, and designed to be a minimal wrapper around the serial
48 * port support in each OS.
49 *
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.
53 *
54 * Most functions have return type @ref sp_return and can return only four
55 * possible error values:
56 *
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.
60 *
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().
64 *
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.
70 *
71 * - @ref SP_ERR_MEM indicates that a memory allocation failed.
72 *
73 * All of these error values are negative.
74 *
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().
78 */
79
80#ifndef LIBSERIALPORT_LIBSERIALPORT_H
81#define LIBSERIALPORT_LIBSERIALPORT_H
82
83#ifdef __cplusplus
84extern "C" {
85#endif
86
87#include <stddef.h>
88
89/** Return values. */
90enum sp_return {
91 /** Operation completed successfully. */
92 SP_OK = 0,
93 /** Invalid arguments were passed to the function. */
94 SP_ERR_ARG = -1,
95 /** A system error occurred while executing the operation. */
96 SP_ERR_FAIL = -2,
97 /** A memory allocation failed while executing the operation. */
98 SP_ERR_MEM = -3,
99 /** The requested operation is not supported by this system or device. */
100 SP_ERR_SUPP = -4
101};
102
103/** Port access modes. */
104enum sp_mode {
105 /** Open port for read access. */
106 SP_MODE_READ = 1,
107 /** Open port for write access. */
108 SP_MODE_WRITE = 2,
109 /** Open port for read and write access. @since 0.1.1 */
110 SP_MODE_READ_WRITE = 3
111};
112
113/** Port events. */
114enum sp_event {
115 /** Data received and ready to read. */
116 SP_EVENT_RX_READY = 1,
117 /** Ready to transmit new data. */
118 SP_EVENT_TX_READY = 2,
119 /** Error occurred. */
120 SP_EVENT_ERROR = 4
121};
122
123/** Buffer selection. */
124enum sp_buffer {
125 /** Input buffer. */
126 SP_BUF_INPUT = 1,
127 /** Output buffer. */
128 SP_BUF_OUTPUT = 2,
129 /** Both buffers. */
130 SP_BUF_BOTH = 3
131};
132
133/** Parity settings. */
134enum sp_parity {
135 /** Special value to indicate setting should be left alone. */
136 SP_PARITY_INVALID = -1,
137 /** No parity. */
138 SP_PARITY_NONE = 0,
139 /** Odd parity. */
140 SP_PARITY_ODD = 1,
141 /** Even parity. */
142 SP_PARITY_EVEN = 2,
143 /** Mark parity. */
144 SP_PARITY_MARK = 3,
145 /** Space parity. */
146 SP_PARITY_SPACE = 4
147};
148
149/** RTS pin behaviour. */
150enum sp_rts {
151 /** Special value to indicate setting should be left alone. */
152 SP_RTS_INVALID = -1,
153 /** RTS off. */
154 SP_RTS_OFF = 0,
155 /** RTS on. */
156 SP_RTS_ON = 1,
157 /** RTS used for flow control. */
158 SP_RTS_FLOW_CONTROL = 2
159};
160
161/** CTS pin behaviour. */
162enum sp_cts {
163 /** Special value to indicate setting should be left alone. */
164 SP_CTS_INVALID = -1,
165 /** CTS ignored. */
166 SP_CTS_IGNORE = 0,
167 /** CTS used for flow control. */
168 SP_CTS_FLOW_CONTROL = 1
169};
170
171/** DTR pin behaviour. */
172enum sp_dtr {
173 /** Special value to indicate setting should be left alone. */
174 SP_DTR_INVALID = -1,
175 /** DTR off. */
176 SP_DTR_OFF = 0,
177 /** DTR on. */
178 SP_DTR_ON = 1,
179 /** DTR used for flow control. */
180 SP_DTR_FLOW_CONTROL = 2
181};
182
183/** DSR pin behaviour. */
184enum sp_dsr {
185 /** Special value to indicate setting should be left alone. */
186 SP_DSR_INVALID = -1,
187 /** DSR ignored. */
188 SP_DSR_IGNORE = 0,
189 /** DSR used for flow control. */
190 SP_DSR_FLOW_CONTROL = 1
191};
192
193/** XON/XOFF flow control behaviour. */
194enum sp_xonxoff {
195 /** Special value to indicate setting should be left alone. */
196 SP_XONXOFF_INVALID = -1,
197 /** XON/XOFF disabled. */
198 SP_XONXOFF_DISABLED = 0,
199 /** XON/XOFF enabled for input only. */
200 SP_XONXOFF_IN = 1,
201 /** XON/XOFF enabled for output only. */
202 SP_XONXOFF_OUT = 2,
203 /** XON/XOFF enabled for input and output. */
204 SP_XONXOFF_INOUT = 3
205};
206
207/** Standard flow control combinations. */
208enum sp_flowcontrol {
209 /** No flow control. */
210 SP_FLOWCONTROL_NONE = 0,
211 /** Software flow control using XON/XOFF characters. */
212 SP_FLOWCONTROL_XONXOFF = 1,
213 /** Hardware flow control using RTS/CTS signals. */
214 SP_FLOWCONTROL_RTSCTS = 2,
215 /** Hardware flow control using DTR/DSR signals. */
216 SP_FLOWCONTROL_DTRDSR = 3
217};
218
219/** Input signals. */
220enum sp_signal {
221 /** Clear to send. */
222 SP_SIG_CTS = 1,
223 /** Data set ready. */
224 SP_SIG_DSR = 2,
225 /** Data carrier detect. */
226 SP_SIG_DCD = 4,
227 /** Ring indicator. */
228 SP_SIG_RI = 8
229};
230
231/**
232 * Transport types.
233 *
234 * @since 0.1.1
235 */
236enum sp_transport {
237 /** Native platform serial port. @since 0.1.1 */
238 SP_TRANSPORT_NATIVE,
239 /** USB serial port adapter. @since 0.1.1 */
240 SP_TRANSPORT_USB,
241 /** Bluetooth serial port adapter. @since 0.1.1 */
242 SP_TRANSPORT_BLUETOOTH
243};
244
245/**
246 * @struct sp_port
247 * An opaque structure representing a serial port.
248 */
249struct sp_port;
250
251/**
252 * @struct sp_port_config
253 * An opaque structure representing the configuration for a serial port.
254 */
255struct sp_port_config;
256
257/**
258 * @struct sp_event_set
259 * A set of handles to wait on for events.
260 */
261struct sp_event_set {
262 /** Array of OS-specific handles. */
263 void *handles;
264 /** Array of bitmasks indicating which events apply for each handle. */
265 enum sp_event *masks;
266 /** Number of handles. */
267 unsigned int count;
268};
269
270/**
271 * @defgroup Enumeration Port enumeration
272 *
273 * Enumerating the serial ports of a system.
274 *
275 * @{
276 */
277
278/**
279 * Obtain a pointer to a new sp_port structure representing the named port.
280 *
281 * The user should allocate a variable of type "struct sp_port *" and pass a
282 * pointer to this to receive the result.
283 *
284 * The result should be freed after use by calling sp_free_port().
285 *
286 * @param[in] portname The OS-specific name of a serial port. Must not be NULL.
287 * @param[out] port_ptr If any error is returned, the variable pointed to by
288 * port_ptr will be set to NULL. Otherwise, it will be set
289 * to point to the newly allocated port. Must not be NULL.
290 *
291 * @return SP_OK upon success, a negative error code otherwise.
292 *
293 * @since 0.1.0
294 */
295enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr);
296
297/**
298 * Free a port structure obtained from sp_get_port_by_name() or sp_copy_port().
299 *
300 * @param[in] port Pointer to a port structure. Must not be NULL.
301 *
302 * @since 0.1.0
303 */
304void sp_free_port(struct sp_port *port);
305
306/**
307 * List the serial ports available on the system.
308 *
309 * The result obtained is an array of pointers to sp_port structures,
310 * terminated by a NULL. The user should allocate a variable of type
311 * "struct sp_port **" and pass a pointer to this to receive the result.
312 *
313 * The result should be freed after use by calling sp_free_port_list().
314 * If a port from the list is to be used after freeing the list, it must be
315 * copied first using sp_copy_port().
316 *
317 * @param[out] list_ptr If any error is returned, the variable pointed to by
318 * list_ptr will be set to NULL. Otherwise, it will be set
319 * to point to the newly allocated array. Must not be NULL.
320 *
321 * @return SP_OK upon success, a negative error code otherwise.
322 *
323 * @since 0.1.0
324 */
325enum sp_return sp_list_ports(struct sp_port ***list_ptr);
326
327/**
328 * Make a new copy of an sp_port structure.
329 *
330 * The user should allocate a variable of type "struct sp_port *" and pass a
331 * pointer to this to receive the result.
332 *
333 * The copy should be freed after use by calling sp_free_port().
334 *
335 * @param[in] port Pointer to a port structure. Must not be NULL.
336 * @param[out] copy_ptr If any error is returned, the variable pointed to by
337 * copy_ptr will be set to NULL. Otherwise, it will be set
338 * to point to the newly allocated copy. Must not be NULL.
339 *
340 * @return SP_OK upon success, a negative error code otherwise.
341 *
342 * @since 0.1.0
343 */
344enum sp_return sp_copy_port(const struct sp_port *port, struct sp_port **copy_ptr);
345
346/**
347 * Free a port list obtained from sp_list_ports().
348 *
349 * This will also free all the sp_port structures referred to from the list;
350 * any that are to be retained must be copied first using sp_copy_port().
351 *
352 * @param[in] ports Pointer to a list of port structures. Must not be NULL.
353 *
354 * @since 0.1.0
355 */
356void sp_free_port_list(struct sp_port **ports);
357
358/**
359 * @}
360 * @defgroup Ports Port handling
361 *
362 * Opening, closing and querying ports.
363 *
364 * @{
365 */
366
367/**
368 * Open the specified serial port.
369 *
370 * @param[in] port Pointer to a port structure. Must not be NULL.
371 * @param[in] flags Flags to use when opening the serial port.
372 *
373 * @return SP_OK upon success, a negative error code otherwise.
374 *
375 * @since 0.1.0
376 */
377enum sp_return sp_open(struct sp_port *port, enum sp_mode flags);
378
379/**
380 * Close the specified serial port.
381 *
382 * @param[in] port Pointer to a port structure. Must not be NULL.
383 *
384 * @return SP_OK upon success, a negative error code otherwise.
385 *
386 * @since 0.1.0
387 */
388enum sp_return sp_close(struct sp_port *port);
389
390/**
391 * Get the name of a port.
392 *
393 * The name returned is whatever is normally used to refer to a port on the
394 * current operating system; e.g. for Windows it will usually be a "COMn"
395 * device name, and for Unix it will be a device path beginning with "/dev/".
396 *
397 * @param[in] port Pointer to a port structure. Must not be NULL.
398 *
399 * @return The port name, or NULL if an invalid port is passed. The name
400 * string is part of the port structure and may not be used after
401 * the port structure has been freed.
402 *
403 * @since 0.1.0
404 */
405char *sp_get_port_name(const struct sp_port *port);
406
407/**
408 * Get a description for a port, to present to end user.
409 *
410 * @param[in] port Pointer to a port structure. Must not be NULL.
411 *
412 * @return The port description, or NULL if an invalid port is passed.
413 * The description string is part of the port structure and may not
414 * be used after the port structure has been freed.
415 *
416 * @since 0.1.1
417 */
418char *sp_get_port_description(const struct sp_port *port);
419
420/**
421 * Get the transport type used by a port.
422 *
423 * @param[in] port Pointer to a port structure. Must not be NULL.
424 *
425 * @return The port transport type.
426 *
427 * @since 0.1.1
428 */
429enum sp_transport sp_get_port_transport(const struct sp_port *port);
430
431/**
432 * Get the USB bus number and address on bus of a USB serial adapter port.
433 *
434 * @param[in] port Pointer to a port structure. Must not be NULL.
435 * @param[out] usb_bus Pointer to a variable to store the USB bus. Must not be NULL.
436 * @param[out] usb_address Pointer to a variable to store the USB address. Must not be NULL.
437 *
438 * @return SP_OK upon success, a negative error code otherwise.
439 *
440 * @since 0.1.1
441 */
442enum sp_return sp_get_port_usb_bus_address(const struct sp_port *port,
443 int *usb_bus, int *usb_address);
444
445/**
446 * Get the USB Vendor ID and Product ID of a USB serial adapter port.
447 *
448 * @param[in] port Pointer to a port structure. Must not be NULL.
449 * @param[out] usb_vid Pointer to a variable to store the USB VID.
450 * Can be NULL (in that case it will be ignored).
451 * @param[out] usb_pid Pointer to a variable to store the USB PID.
452 * Can be NULL (in that case it will be ignored).
453 *
454 * @return SP_OK upon success, a negative error code otherwise.
455 *
456 * @since 0.1.1
457 */
458enum sp_return sp_get_port_usb_vid_pid(const struct sp_port *port, int *usb_vid, int *usb_pid);
459
460/**
461 * Get the USB manufacturer string of a USB serial adapter port.
462 *
463 * @param[in] port Pointer to a port structure. Must not be NULL.
464 *
465 * @return The port manufacturer string, or NULL if an invalid port is passed.
466 * The manufacturer string is part of the port structure and may not
467 * be used after the port structure has been freed.
468 *
469 * @since 0.1.1
470 */
471char *sp_get_port_usb_manufacturer(const struct sp_port *port);
472
473/**
474 * Get the USB product string of a USB serial adapter port.
475 *
476 * @param[in] port Pointer to a port structure. Must not be NULL.
477 *
478 * @return The port product string, or NULL if an invalid port is passed.
479 * The product string is part of the port structure and may not be
480 * used after the port structure has been freed.
481 *
482 * @since 0.1.1
483 */
484char *sp_get_port_usb_product(const struct sp_port *port);
485
486/**
487 * Get the USB serial number string of a USB serial adapter port.
488 *
489 * @param[in] port Pointer to a port structure. Must not be NULL.
490 *
491 * @return The port serial number, or NULL if an invalid port is passed.
492 * The serial number string is part of the port structure and may
493 * not be used after the port structure has been freed.
494 *
495 * @since 0.1.1
496 */
497char *sp_get_port_usb_serial(const struct sp_port *port);
498
499/**
500 * Get the MAC address of a Bluetooth serial adapter port.
501 *
502 * @param[in] port Pointer to a port structure. Must not be NULL.
503 *
504 * @return The port MAC address, or NULL if an invalid port is passed.
505 * The MAC address string is part of the port structure and may not
506 * be used after the port structure has been freed.
507 *
508 * @since 0.1.1
509 */
510char *sp_get_port_bluetooth_address(const struct sp_port *port);
511
512/**
513 * Get the operating system handle for a port.
514 *
515 * The type of the handle depends on the operating system. On Unix based
516 * systems, the handle is a file descriptor of type "int". On Windows, the
517 * handle is of type "HANDLE". The user should allocate a variable of the
518 * appropriate type and pass a pointer to this to receive the result.
519 *
520 * To obtain a valid handle, the port must first be opened by calling
521 * sp_open() using the same port structure.
522 *
523 * After the port is closed or the port structure freed, the handle may
524 * no longer be valid.
525 *
526 * @warning This feature is provided so that programs may make use of
527 * OS-specific functionality where desired. Doing so obviously
528 * comes at a cost in portability. It also cannot be guaranteed
529 * that direct usage of the OS handle will not conflict with the
530 * library's own usage of the port. Be careful.
531 *
532 * @param[in] port Pointer to a port structure. Must not be NULL.
533 * @param[out] result_ptr If any error is returned, the variable pointed to by
534 * result_ptr will be set to NULL. Otherwise, it will
535 * be set to point to the OS handle. Must not be NULL.
536 *
537 * @return SP_OK upon success, a negative error code otherwise.
538 *
539 * @since 0.1.0
540 */
541enum sp_return sp_get_port_handle(const struct sp_port *port, void *result_ptr);
542
543/**
544 * @}
545 *
546 * @defgroup Configuration Configuration
547 *
548 * Setting and querying serial port parameters.
549 * @{
550 */
551
552/**
553 * Allocate a port configuration structure.
554 *
555 * The user should allocate a variable of type "struct sp_config *" and pass a
556 * pointer to this to receive the result. The variable will be updated to
557 * point to the new configuration structure. The structure is opaque and must
558 * be accessed via the functions provided.
559 *
560 * All parameters in the structure will be initialised to special values which
561 * are ignored by sp_set_config().
562 *
563 * The structure should be freed after use by calling sp_free_config().
564 *
565 * @param[out] config_ptr Pointer to a variable to receive the result.
566 * Must not be NULL.
567 *
568 * @return SP_OK upon success, a negative error code otherwise.
569 *
570 * @since 0.1.0
571 */
572enum sp_return sp_new_config(struct sp_port_config **config_ptr);
573
574/**
575 * Free a port configuration structure.
576 *
577 * @param[in] config Pointer to a configuration structure. Must not be NULL.
578 *
579 * @since 0.1.0
580 */
581void sp_free_config(struct sp_port_config *config);
582
583/**
584 * Get the current configuration of the specified serial port.
585 *
586 * The user should allocate a configuration structure using sp_new_config()
587 * and pass this as the config parameter. The configuration structure will
588 * be updated with the port configuration.
589 *
590 * Any parameters that are configured with settings not recognised or
591 * supported by libserialport, will be set to special values that are
592 * ignored by sp_set_config().
593 *
594 * @param[in] port Pointer to a port structure. Must not be NULL.
595 * @param[out] config Pointer to a configuration structure that will hold
596 * the result. Must not be NULL.
597 *
598 * @return SP_OK upon success, a negative error code otherwise.
599 *
600 * @since 0.1.0
601 */
602enum sp_return sp_get_config(struct sp_port *port, struct sp_port_config *config);
603
604/**
605 * Set the configuration for the specified serial port.
606 *
607 * For each parameter in the configuration, there is a special value (usually
608 * -1, but see the documentation for each field). These values will be ignored
609 * and the corresponding setting left unchanged on the port.
610 *
611 * @param[in] port Pointer to a port structure. Must not be NULL.
612 * @param[in] config Pointer to a configuration structure. Must not be NULL.
613 *
614 * @return SP_OK upon success, a negative error code otherwise.
615 *
616 * @since 0.1.0
617 */
618enum sp_return sp_set_config(struct sp_port *port, const struct sp_port_config *config);
619
620/**
621 * Set the baud rate for the specified serial port.
622 *
623 * @param[in] port Pointer to a port structure. Must not be NULL.
624 * @param[in] baudrate Baud rate in bits per second.
625 *
626 * @return SP_OK upon success, a negative error code otherwise.
627 *
628 * @since 0.1.0
629 */
630enum sp_return sp_set_baudrate(struct sp_port *port, int baudrate);
631
632/**
633 * Get the baud rate from a port configuration.
634 *
635 * The user should allocate a variable of type int and
636 * pass a pointer to this to receive the result.
637 *
638 * @param[in] config Pointer to a configuration structure. Must not be NULL.
639 * @param[out] baudrate_ptr Pointer to a variable to store the result. Must not be NULL.
640 *
641 * @return SP_OK upon success, a negative error code otherwise.
642 *
643 * @since 0.1.0
644 */
645enum sp_return sp_get_config_baudrate(const struct sp_port_config *config, int *baudrate_ptr);
646
647/**
648 * Set the baud rate in a port configuration.
649 *
650 * @param[in] config Pointer to a configuration structure. Must not be NULL.
651 * @param[in] baudrate Baud rate in bits per second, or -1 to retain the current setting.
652 *
653 * @return SP_OK upon success, a negative error code otherwise.
654 *
655 * @since 0.1.0
656 */
657enum sp_return sp_set_config_baudrate(struct sp_port_config *config, int baudrate);
658
659/**
660 * Set the data bits for the specified serial port.
661 *
662 * @param[in] port Pointer to a port structure. Must not be NULL.
663 * @param[in] bits Number of data bits.
664 *
665 * @return SP_OK upon success, a negative error code otherwise.
666 *
667 * @since 0.1.0
668 */
669enum sp_return sp_set_bits(struct sp_port *port, int bits);
670
671/**
672 * Get the data bits from a port configuration.
673 *
674 * The user should allocate a variable of type int and
675 * pass a pointer to this to receive the result.
676 *
677 * @param[in] config Pointer to a configuration structure. Must not be NULL.
678 * @param[out] bits_ptr Pointer to a variable to store the result. Must not be NULL.
679 *
680 * @return SP_OK upon success, a negative error code otherwise.
681 *
682 * @since 0.1.0
683 */
684enum sp_return sp_get_config_bits(const struct sp_port_config *config, int *bits_ptr);
685
686/**
687 * Set the data bits in a port configuration.
688 *
689 * @param[in] config Pointer to a configuration structure. Must not be NULL.
690 * @param[in] bits Number of data bits, or -1 to retain the current setting.
691 *
692 * @return SP_OK upon success, a negative error code otherwise.
693 *
694 * @since 0.1.0
695 */
696enum sp_return sp_set_config_bits(struct sp_port_config *config, int bits);
697
698/**
699 * Set the parity setting for the specified serial port.
700 *
701 * @param[in] port Pointer to a port structure. Must not be NULL.
702 * @param[in] parity Parity setting.
703 *
704 * @return SP_OK upon success, a negative error code otherwise.
705 *
706 * @since 0.1.0
707 */
708enum sp_return sp_set_parity(struct sp_port *port, enum sp_parity parity);
709
710/**
711 * Get the parity setting from a port configuration.
712 *
713 * The user should allocate a variable of type enum sp_parity and
714 * pass a pointer to this to receive the result.
715 *
716 * @param[in] config Pointer to a configuration structure. Must not be NULL.
717 * @param[out] parity_ptr Pointer to a variable to store the result. Must not be NULL.
718 *
719 * @return SP_OK upon success, a negative error code otherwise.
720 *
721 * @since 0.1.0
722 */
723enum sp_return sp_get_config_parity(const struct sp_port_config *config, enum sp_parity *parity_ptr);
724
725/**
726 * Set the parity setting in a port configuration.
727 *
728 * @param[in] config Pointer to a configuration structure. Must not be NULL.
729 * @param[in] parity Parity setting, or -1 to retain the current setting.
730 *
731 * @return SP_OK upon success, a negative error code otherwise.
732 *
733 * @since 0.1.0
734 */
735enum sp_return sp_set_config_parity(struct sp_port_config *config, enum sp_parity parity);
736
737/**
738 * Set the stop bits for the specified serial port.
739 *
740 * @param[in] port Pointer to a port structure. Must not be NULL.
741 * @param[in] stopbits Number of stop bits.
742 *
743 * @return SP_OK upon success, a negative error code otherwise.
744 *
745 * @since 0.1.0
746 */
747enum sp_return sp_set_stopbits(struct sp_port *port, int stopbits);
748
749/**
750 * Get the stop bits from a port configuration.
751 *
752 * The user should allocate a variable of type int and
753 * pass a pointer to this to receive the result.
754 *
755 * @param[in] config Pointer to a configuration structure. Must not be NULL.
756 * @param[out] stopbits_ptr Pointer to a variable to store the result. Must not be NULL.
757 *
758 * @return SP_OK upon success, a negative error code otherwise.
759 *
760 * @since 0.1.0
761 */
762enum sp_return sp_get_config_stopbits(const struct sp_port_config *config, int *stopbits_ptr);
763
764/**
765 * Set the stop bits in a port configuration.
766 *
767 * @param[in] config Pointer to a configuration structure. Must not be NULL.
768 * @param[in] stopbits Number of stop bits, or -1 to retain the current setting.
769 *
770 * @return SP_OK upon success, a negative error code otherwise.
771 *
772 * @since 0.1.0
773 */
774enum sp_return sp_set_config_stopbits(struct sp_port_config *config, int stopbits);
775
776/**
777 * Set the RTS pin behaviour for the specified serial port.
778 *
779 * @param[in] port Pointer to a port structure. Must not be NULL.
780 * @param[in] rts RTS pin mode.
781 *
782 * @return SP_OK upon success, a negative error code otherwise.
783 *
784 * @since 0.1.0
785 */
786enum sp_return sp_set_rts(struct sp_port *port, enum sp_rts rts);
787
788/**
789 * Get the RTS pin behaviour from a port configuration.
790 *
791 * The user should allocate a variable of type enum sp_rts and
792 * pass a pointer to this to receive the result.
793 *
794 * @param[in] config Pointer to a configuration structure. Must not be NULL.
795 * @param[out] rts_ptr Pointer to a variable to store the result. Must not be NULL.
796 *
797 * @return SP_OK upon success, a negative error code otherwise.
798 *
799 * @since 0.1.0
800 */
801enum sp_return sp_get_config_rts(const struct sp_port_config *config, enum sp_rts *rts_ptr);
802
803/**
804 * Set the RTS pin behaviour in a port configuration.
805 *
806 * @param[in] config Pointer to a configuration structure. Must not be NULL.
807 * @param[in] rts RTS pin mode, or -1 to retain the current setting.
808 *
809 * @return SP_OK upon success, a negative error code otherwise.
810 *
811 * @since 0.1.0
812 */
813enum sp_return sp_set_config_rts(struct sp_port_config *config, enum sp_rts rts);
814
815/**
816 * Set the CTS pin behaviour for the specified serial port.
817 *
818 * @param[in] port Pointer to a port structure. Must not be NULL.
819 * @param[in] cts CTS pin mode.
820 *
821 * @return SP_OK upon success, a negative error code otherwise.
822 *
823 * @since 0.1.0
824 */
825enum sp_return sp_set_cts(struct sp_port *port, enum sp_cts cts);
826
827/**
828 * Get the CTS pin behaviour from a port configuration.
829 *
830 * The user should allocate a variable of type enum sp_cts and
831 * pass a pointer to this to receive the result.
832 *
833 * @param[in] config Pointer to a configuration structure. Must not be NULL.
834 * @param[out] cts_ptr Pointer to a variable to store the result. Must not be NULL.
835 *
836 * @return SP_OK upon success, a negative error code otherwise.
837 *
838 * @since 0.1.0
839 */
840enum sp_return sp_get_config_cts(const struct sp_port_config *config, enum sp_cts *cts_ptr);
841
842/**
843 * Set the CTS pin behaviour in a port configuration.
844 *
845 * @param[in] config Pointer to a configuration structure. Must not be NULL.
846 * @param[in] cts CTS pin mode, or -1 to retain the current setting.
847 *
848 * @return SP_OK upon success, a negative error code otherwise.
849 *
850 * @since 0.1.0
851 */
852enum sp_return sp_set_config_cts(struct sp_port_config *config, enum sp_cts cts);
853
854/**
855 * Set the DTR pin behaviour for the specified serial port.
856 *
857 * @param[in] port Pointer to a port structure. Must not be NULL.
858 * @param[in] dtr DTR pin mode.
859 *
860 * @return SP_OK upon success, a negative error code otherwise.
861 *
862 * @since 0.1.0
863 */
864enum sp_return sp_set_dtr(struct sp_port *port, enum sp_dtr dtr);
865
866/**
867 * Get the DTR pin behaviour from a port configuration.
868 *
869 * The user should allocate a variable of type enum sp_dtr and
870 * pass a pointer to this to receive the result.
871 *
872 * @param[in] config Pointer to a configuration structure. Must not be NULL.
873 * @param[out] dtr_ptr Pointer to a variable to store the result. Must not be NULL.
874 *
875 * @return SP_OK upon success, a negative error code otherwise.
876 *
877 * @since 0.1.0
878 */
879enum sp_return sp_get_config_dtr(const struct sp_port_config *config, enum sp_dtr *dtr_ptr);
880
881/**
882 * Set the DTR pin behaviour in a port configuration.
883 *
884 * @param[in] config Pointer to a configuration structure. Must not be NULL.
885 * @param[in] dtr DTR pin mode, or -1 to retain the current setting.
886 *
887 * @return SP_OK upon success, a negative error code otherwise.
888 *
889 * @since 0.1.0
890 */
891enum sp_return sp_set_config_dtr(struct sp_port_config *config, enum sp_dtr dtr);
892
893/**
894 * Set the DSR pin behaviour for the specified serial port.
895 *
896 * @param[in] port Pointer to a port structure. Must not be NULL.
897 * @param[in] dsr DSR pin mode.
898 *
899 * @return SP_OK upon success, a negative error code otherwise.
900 *
901 * @since 0.1.0
902 */
903enum sp_return sp_set_dsr(struct sp_port *port, enum sp_dsr dsr);
904
905/**
906 * Get the DSR pin behaviour from a port configuration.
907 *
908 * The user should allocate a variable of type enum sp_dsr and
909 * pass a pointer to this to receive the result.
910 *
911 * @param[in] config Pointer to a configuration structure. Must not be NULL.
912 * @param[out] dsr_ptr Pointer to a variable to store the result. Must not be NULL.
913 *
914 * @return SP_OK upon success, a negative error code otherwise.
915 *
916 * @since 0.1.0
917 */
918enum sp_return sp_get_config_dsr(const struct sp_port_config *config, enum sp_dsr *dsr_ptr);
919
920/**
921 * Set the DSR pin behaviour in a port configuration.
922 *
923 * @param[in] config Pointer to a configuration structure. Must not be NULL.
924 * @param[in] dsr DSR pin mode, or -1 to retain the current setting.
925 *
926 * @return SP_OK upon success, a negative error code otherwise.
927 *
928 * @since 0.1.0
929 */
930enum sp_return sp_set_config_dsr(struct sp_port_config *config, enum sp_dsr dsr);
931
932/**
933 * Set the XON/XOFF configuration for the specified serial port.
934 *
935 * @param[in] port Pointer to a port structure. Must not be NULL.
936 * @param[in] xon_xoff XON/XOFF mode.
937 *
938 * @return SP_OK upon success, a negative error code otherwise.
939 *
940 * @since 0.1.0
941 */
942enum sp_return sp_set_xon_xoff(struct sp_port *port, enum sp_xonxoff xon_xoff);
943
944/**
945 * Get the XON/XOFF configuration from a port configuration.
946 *
947 * The user should allocate a variable of type enum sp_xonxoff and
948 * pass a pointer to this to receive the result.
949 *
950 * @param[in] config Pointer to a configuration structure. Must not be NULL.
951 * @param[out] xon_xoff_ptr Pointer to a variable to store the result. Must not be NULL.
952 *
953 * @return SP_OK upon success, a negative error code otherwise.
954 *
955 * @since 0.1.0
956 */
957enum sp_return sp_get_config_xon_xoff(const struct sp_port_config *config, enum sp_xonxoff *xon_xoff_ptr);
958
959/**
960 * Set the XON/XOFF configuration in a port configuration.
961 *
962 * @param[in] config Pointer to a configuration structure. Must not be NULL.
963 * @param[in] xon_xoff XON/XOFF mode, or -1 to retain the current setting.
964 *
965 * @return SP_OK upon success, a negative error code otherwise.
966 *
967 * @since 0.1.0
968 */
969enum sp_return sp_set_config_xon_xoff(struct sp_port_config *config, enum sp_xonxoff xon_xoff);
970
971/**
972 * Set the flow control type in a port configuration.
973 *
974 * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
975 * XON/XOFF settings as necessary for the specified flow control
976 * type. For more fine-grained control of these settings, use their
977 * individual configuration functions.
978 *
979 * @param[in] config Pointer to a configuration structure. Must not be NULL.
980 * @param[in] flowcontrol Flow control setting to use.
981 *
982 * @return SP_OK upon success, a negative error code otherwise.
983 *
984 * @since 0.1.0
985 */
986enum sp_return sp_set_config_flowcontrol(struct sp_port_config *config, enum sp_flowcontrol flowcontrol);
987
988/**
989 * Set the flow control type for the specified serial port.
990 *
991 * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
992 * XON/XOFF settings as necessary for the specified flow control
993 * type. For more fine-grained control of these settings, use their
994 * individual configuration functions.
995 *
996 * @param[in] port Pointer to a port structure. Must not be NULL.
997 * @param[in] flowcontrol Flow control setting to use.
998 *
999 * @return SP_OK upon success, a negative error code otherwise.
1000 *
1001 * @since 0.1.0
1002 */
1003enum sp_return sp_set_flowcontrol(struct sp_port *port, enum sp_flowcontrol flowcontrol);
1004
1005/**
1006 * @}
1007 *
1008 * @defgroup Data Data handling
1009 *
1010 * Reading, writing, and flushing data.
1011 *
1012 * @{
1013 */
1014
1015/**
1016 * Read bytes from the specified serial port, blocking until complete.
1017 *
1018 * @warning If your program runs on Unix, defines its own signal handlers, and
1019 * needs to abort blocking reads when these are called, then you
1020 * should not use this function. It repeats system calls that return
1021 * with EINTR. To be able to abort a read from a signal handler, you
1022 * should implement your own blocking read using sp_nonblocking_read()
1023 * together with a blocking method that makes sense for your program.
1024 * E.g. you can obtain the file descriptor for an open port using
1025 * sp_get_port_handle() and use this to call select() or pselect(),
1026 * with appropriate arrangements to return if a signal is received.
1027 *
1028 * @param[in] port Pointer to a port structure. Must not be NULL.
1029 * @param[out] buf Buffer in which to store the bytes read. Must not be NULL.
1030 * @param[in] count Requested number of bytes to read.
1031 * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1032 *
1033 * @return The number of bytes read on success, or a negative error code. If
1034 * the number of bytes returned is less than that requested, the
1035 * timeout was reached before the requested number of bytes was
1036 * available. If timeout is zero, the function will always return
1037 * either the requested number of bytes or a negative error code.
1038 *
1039 * @since 0.1.0
1040 */
1041enum sp_return sp_blocking_read(struct sp_port *port, void *buf, size_t count, unsigned int timeout_ms);
1042
1043/**
1044 * Read bytes from the specified serial port, without blocking.
1045 *
1046 * @param[in] port Pointer to a port structure. Must not be NULL.
1047 * @param[out] buf Buffer in which to store the bytes read. Must not be NULL.
1048 * @param[in] count Maximum number of bytes to read.
1049 *
1050 * @return The number of bytes read on success, or a negative error code. The
1051 * number of bytes returned may be any number from zero to the maximum
1052 * that was requested.
1053 *
1054 * @since 0.1.0
1055 */
1056enum sp_return sp_nonblocking_read(struct sp_port *port, void *buf, size_t count);
1057
1058/**
1059 * Write bytes to the specified serial port, blocking until complete.
1060 *
1061 * Note that this function only ensures that the accepted bytes have been
1062 * written to the OS; they may be held in driver or hardware buffers and not
1063 * yet physically transmitted. To check whether all written bytes have actually
1064 * been transmitted, use the sp_output_waiting() function. To wait until all
1065 * written bytes have actually been transmitted, use the sp_drain() function.
1066 *
1067 * @warning If your program runs on Unix, defines its own signal handlers, and
1068 * needs to abort blocking writes when these are called, then you
1069 * should not use this function. It repeats system calls that return
1070 * with EINTR. To be able to abort a write from a signal handler, you
1071 * should implement your own blocking write using sp_nonblocking_write()
1072 * together with a blocking method that makes sense for your program.
1073 * E.g. you can obtain the file descriptor for an open port using
1074 * sp_get_port_handle() and use this to call select() or pselect(),
1075 * with appropriate arrangements to return if a signal is received.
1076 *
1077 * @param[in] port Pointer to a port structure. Must not be NULL.
1078 * @param[in] buf Buffer containing the bytes to write. Must not be NULL.
1079 * @param[in] count Requested number of bytes to write.
1080 * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1081 *
1082 * @return The number of bytes written on success, or a negative error code.
1083 * If the number of bytes returned is less than that requested, the
1084 * timeout was reached before the requested number of bytes was
1085 * written. If timeout is zero, the function will always return
1086 * either the requested number of bytes or a negative error code. In
1087 * the event of an error there is no way to determine how many bytes
1088 * were sent before the error occurred.
1089 *
1090 * @since 0.1.0
1091 */
1092enum sp_return sp_blocking_write(struct sp_port *port, const void *buf, size_t count, unsigned int timeout_ms);
1093
1094/**
1095 * Write bytes to the specified serial port, without blocking.
1096 *
1097 * Note that this function only ensures that the accepted bytes have been
1098 * written to the OS; they may be held in driver or hardware buffers and not
1099 * yet physically transmitted. To check whether all written bytes have actually
1100 * been transmitted, use the sp_output_waiting() function. To wait until all
1101 * written bytes have actually been transmitted, use the sp_drain() function.
1102 *
1103 * @param[in] port Pointer to a port structure. Must not be NULL.
1104 * @param[in] buf Buffer containing the bytes to write. Must not be NULL.
1105 * @param[in] count Maximum number of bytes to write.
1106 *
1107 * @return The number of bytes written on success, or a negative error code.
1108 * The number of bytes returned may be any number from zero to the
1109 * maximum that was requested.
1110 *
1111 * @since 0.1.0
1112 */
1113enum sp_return sp_nonblocking_write(struct sp_port *port, const void *buf, size_t count);
1114
1115/**
1116 * Gets the number of bytes waiting in the input buffer.
1117 *
1118 * @param[in] port Pointer to a port structure. Must not be NULL.
1119 *
1120 * @return Number of bytes waiting on success, a negative error code otherwise.
1121 *
1122 * @since 0.1.0
1123 */
1124enum sp_return sp_input_waiting(struct sp_port *port);
1125
1126/**
1127 * Gets the number of bytes waiting in the output buffer.
1128 *
1129 * @param[in] port Pointer to a port structure. Must not be NULL.
1130 *
1131 * @return Number of bytes waiting on success, a negative error code otherwise.
1132 *
1133 * @since 0.1.0
1134 */
1135enum sp_return sp_output_waiting(struct sp_port *port);
1136
1137/**
1138 * Flush serial port buffers. Data in the selected buffer(s) is discarded.
1139 *
1140 * @param[in] port Pointer to a port structure. Must not be NULL.
1141 * @param[in] buffers Which buffer(s) to flush.
1142 *
1143 * @return SP_OK upon success, a negative error code otherwise.
1144 *
1145 * @since 0.1.0
1146 */
1147enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers);
1148
1149/**
1150 * Wait for buffered data to be transmitted.
1151 *
1152 * @warning If your program runs on Unix, defines its own signal handlers, and
1153 * needs to abort draining the output buffer when when these are
1154 * called, then you should not use this function. It repeats system
1155 * calls that return with EINTR. To be able to abort a drain from a
1156 * signal handler, you would need to implement your own blocking
1157 * drain by polling the result of sp_output_waiting().
1158 *
1159 * @param[in] port Pointer to a port structure. Must not be NULL.
1160 *
1161 * @return SP_OK upon success, a negative error code otherwise.
1162 *
1163 * @since 0.1.0
1164 */
1165enum sp_return sp_drain(struct sp_port *port);
1166
1167/**
1168 * @}
1169 *
1170 * @defgroup Waiting Waiting
1171 *
1172 * Waiting for events and timeout handling.
1173 *
1174 * @{
1175 */
1176
1177/**
1178 * Allocate storage for a set of events.
1179 *
1180 * The user should allocate a variable of type struct sp_event_set *,
1181 * then pass a pointer to this variable to receive the result.
1182 *
1183 * The result should be freed after use by calling sp_free_event_set().
1184 *
1185 * @param[out] result_ptr If any error is returned, the variable pointed to by
1186 * result_ptr will be set to NULL. Otherwise, it will
1187 * be set to point to the event set. Must not be NULL.
1188 *
1189 * @return SP_OK upon success, a negative error code otherwise.
1190 *
1191 * @since 0.1.0
1192 */
1193enum sp_return sp_new_event_set(struct sp_event_set **result_ptr);
1194
1195/**
1196 * Add events to a struct sp_event_set for a given port.
1197 *
1198 * The port must first be opened by calling sp_open() using the same port
1199 * structure.
1200 *
1201 * After the port is closed or the port structure freed, the results may
1202 * no longer be valid.
1203 *
1204 * @param[in,out] event_set Event set to update. Must not be NULL.
1205 * @param[in] port Pointer to a port structure. Must not be NULL.
1206 * @param[in] mask Bitmask of events to be waited for.
1207 *
1208 * @return SP_OK upon success, a negative error code otherwise.
1209 *
1210 * @since 0.1.0
1211 */
1212enum sp_return sp_add_port_events(struct sp_event_set *event_set,
1213 const struct sp_port *port, enum sp_event mask);
1214
1215/**
1216 * Wait for any of a set of events to occur.
1217 *
1218 * @param[in] event_set Event set to wait on. Must not be NULL.
1219 * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1220 *
1221 * @return SP_OK upon success, a negative error code otherwise.
1222 *
1223 * @since 0.1.0
1224 */
1225enum sp_return sp_wait(struct sp_event_set *event_set, unsigned int timeout_ms);
1226
1227/**
1228 * Free a structure allocated by sp_new_event_set().
1229 *
1230 * @param[in] event_set Event set to free. Must not be NULL.
1231 *
1232 * @since 0.1.0
1233 */
1234void sp_free_event_set(struct sp_event_set *event_set);
1235
1236/**
1237 * @}
1238 *
1239 * @defgroup Signals Signals
1240 *
1241 * Port signalling operations.
1242 *
1243 * @{
1244 */
1245
1246/**
1247 * Gets the status of the control signals for the specified port.
1248 *
1249 * The user should allocate a variable of type "enum sp_signal" and pass a
1250 * pointer to this variable to receive the result. The result is a bitmask
1251 * in which individual signals can be checked by bitwise OR with values of
1252 * the sp_signal enum.
1253 *
1254 * @param[in] port Pointer to a port structure. Must not be NULL.
1255 * @param[out] signal_mask Pointer to a variable to receive the result.
1256 * Must not be NULL.
1257 *
1258 * @return SP_OK upon success, a negative error code otherwise.
1259 *
1260 * @since 0.1.0
1261 */
1262enum sp_return sp_get_signals(struct sp_port *port, enum sp_signal *signal_mask);
1263
1264/**
1265 * Put the port transmit line into the break state.
1266 *
1267 * @param[in] port Pointer to a port structure. Must not be NULL.
1268 *
1269 * @return SP_OK upon success, a negative error code otherwise.
1270 *
1271 * @since 0.1.0
1272 */
1273enum sp_return sp_start_break(struct sp_port *port);
1274
1275/**
1276 * Take the port transmit line out of the break state.
1277 *
1278 * @param[in] port Pointer to a port structure. Must not be NULL.
1279 *
1280 * @return SP_OK upon success, a negative error code otherwise.
1281 *
1282 * @since 0.1.0
1283 */
1284enum sp_return sp_end_break(struct sp_port *port);
1285
1286/**
1287 * @}
1288 *
1289 * @defgroup Errors Errors
1290 *
1291 * Obtaining error information.
1292 *
1293 * @{
1294 */
1295
1296/**
1297 * Get the error code for a failed operation.
1298 *
1299 * In order to obtain the correct result, this function should be called
1300 * straight after the failure, before executing any other system operations.
1301 *
1302 * @return The system's numeric code for the error that caused the last
1303 * operation to fail.
1304 *
1305 * @since 0.1.0
1306 */
1307int sp_last_error_code(void);
1308
1309/**
1310 * Get the error message for a failed operation.
1311 *
1312 * In order to obtain the correct result, this function should be called
1313 * straight after the failure, before executing other system operations.
1314 *
1315 * @return The system's message for the error that caused the last
1316 * operation to fail. This string may be allocated by the function,
1317 * and should be freed after use by calling sp_free_error_message().
1318 *
1319 * @since 0.1.0
1320 */
1321char *sp_last_error_message(void);
1322
1323/**
1324 * Free an error message returned by sp_last_error_message().
1325 *
1326 * @param[in] message The error message string to free. Must not be NULL.
1327 *
1328 * @since 0.1.0
1329 */
1330void sp_free_error_message(char *message);
1331
1332/**
1333 * Set the handler function for library debugging messages.
1334 *
1335 * Debugging messages are generated by the library during each operation,
1336 * to help in diagnosing problems. The handler will be called for each
1337 * message. The handler can be set to NULL to ignore all debug messages.
1338 *
1339 * The handler function should accept a format string and variable length
1340 * argument list, in the same manner as e.g. printf().
1341 *
1342 * The default handler is sp_default_debug_handler().
1343 *
1344 * @param[in] handler The handler function to use. Can be NULL (in that case
1345 * all debug messages will be ignored).
1346 *
1347 * @since 0.1.0
1348 */
1349void sp_set_debug_handler(void (*handler)(const char *format, ...));
1350
1351/**
1352 * Default handler function for library debugging messages.
1353 *
1354 * This function prints debug messages to the standard error stream if the
1355 * environment variable LIBSERIALPORT_DEBUG is set. Otherwise, they are
1356 * ignored.
1357 *
1358 * @param[in] format The format string to use. Must not be NULL.
1359 * @param[in] ... The variable length argument list to use.
1360 *
1361 * @since 0.1.0
1362 */
1363void sp_default_debug_handler(const char *format, ...);
1364
1365/** @} */
1366
1367/**
1368 * @defgroup Versions Versions
1369 *
1370 * Version number querying functions, definitions, and macros.
1371 *
1372 * This set of API calls returns two different version numbers related
1373 * to libserialport. The "package version" is the release version number of the
1374 * libserialport tarball in the usual "major.minor.micro" format, e.g. "0.1.0".
1375 *
1376 * The "library version" is independent of that; it is the libtool version
1377 * number in the "current:revision:age" format, e.g. "2:0:0".
1378 * See http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning for details.
1379 *
1380 * Both version numbers (and/or individual components of them) can be
1381 * retrieved via the API calls at runtime, and/or they can be checked at
1382 * compile/preprocessor time using the respective macros.
1383 *
1384 * @{
1385 */
1386
1387/*
1388 * Package version macros (can be used for conditional compilation).
1389 */
1390
1391/** The libserialport package 'major' version number. */
1392#define SP_PACKAGE_VERSION_MAJOR @SP_PACKAGE_VERSION_MAJOR@
1393
1394/** The libserialport package 'minor' version number. */
1395#define SP_PACKAGE_VERSION_MINOR @SP_PACKAGE_VERSION_MINOR@
1396
1397/** The libserialport package 'micro' version number. */
1398#define SP_PACKAGE_VERSION_MICRO @SP_PACKAGE_VERSION_MICRO@
1399
1400/** The libserialport package version ("major.minor.micro") as string. */
1401#define SP_PACKAGE_VERSION_STRING "@SP_PACKAGE_VERSION@"
1402
1403/*
1404 * Library/libtool version macros (can be used for conditional compilation).
1405 */
1406
1407/** The libserialport libtool 'current' version number. */
1408#define SP_LIB_VERSION_CURRENT @SP_LIB_VERSION_CURRENT@
1409
1410/** The libserialport libtool 'revision' version number. */
1411#define SP_LIB_VERSION_REVISION @SP_LIB_VERSION_REVISION@
1412
1413/** The libserialport libtool 'age' version number. */
1414#define SP_LIB_VERSION_AGE @SP_LIB_VERSION_AGE@
1415
1416/** The libserialport libtool version ("current:revision:age") as string. */
1417#define SP_LIB_VERSION_STRING "@SP_LIB_VERSION@"
1418
1419/**
1420 * Get the major libserialport package version number.
1421 *
1422 * @return The major package version number.
1423 *
1424 * @since 0.1.0
1425 */
1426int sp_get_major_package_version(void);
1427
1428/**
1429 * Get the minor libserialport package version number.
1430 *
1431 * @return The minor package version number.
1432 *
1433 * @since 0.1.0
1434 */
1435int sp_get_minor_package_version(void);
1436
1437/**
1438 * Get the micro libserialport package version number.
1439 *
1440 * @return The micro package version number.
1441 *
1442 * @since 0.1.0
1443 */
1444int sp_get_micro_package_version(void);
1445
1446/**
1447 * Get the libserialport package version number as a string.
1448 *
1449 * @return The package version number string. The returned string is
1450 * static and thus should NOT be free'd by the caller.
1451 *
1452 * @since 0.1.0
1453 */
1454const char *sp_get_package_version_string(void);
1455
1456/**
1457 * Get the "current" part of the libserialport library version number.
1458 *
1459 * @return The "current" library version number.
1460 *
1461 * @since 0.1.0
1462 */
1463int sp_get_current_lib_version(void);
1464
1465/**
1466 * Get the "revision" part of the libserialport library version number.
1467 *
1468 * @return The "revision" library version number.
1469 *
1470 * @since 0.1.0
1471 */
1472int sp_get_revision_lib_version(void);
1473
1474/**
1475 * Get the "age" part of the libserialport library version number.
1476 *
1477 * @return The "age" library version number.
1478 *
1479 * @since 0.1.0
1480 */
1481int sp_get_age_lib_version(void);
1482
1483/**
1484 * Get the libserialport library version number as a string.
1485 *
1486 * @return The library version number string. The returned string is
1487 * static and thus should NOT be free'd by the caller.
1488 *
1489 * @since 0.1.0
1490 */
1491const char *sp_get_lib_version_string(void);
1492
1493/** @} */
1494
1495#ifdef __cplusplus
1496}
1497#endif
1498
1499#endif