]> sigrok.org Git - libserialport.git/blame - libserialport.h.in
Add sp_get_port_handle() function.
[libserialport.git] / libserialport.h.in
CommitLineData
74510d4b
ML
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
cd5f5281 20/**
cf9d365c
UH
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 Data
38 * - @ref Errors
39 *
40 * libserialport is an open source project released under the LGPL3+ license.
41 *
42 * API principles
43 * ==============
44 *
45 * The API is simple, and designed to be a minimal wrapper around the serial
46 * port support in each OS.
47 *
48 * Most functions take a pointer to a struct sp_port, which represents a serial
49 * port. These structures are always allocated and freed by the library, using
50 * the functions in the @ref Enumeration "Enumeration" section.
51 *
6aabf62a 52 * All functions can return only four possible error values:
cf9d365c 53 *
6aabf62a
ML
54 * - @ref SP_ERR_ARG means that a function was called with invalid
55 * arguments. This implies a bug in the caller. The arguments passed would
56 * be invalid regardless of the underlying OS or serial device involved.
57 *
58 * - @ref SP_ERR_FAIL means that the OS reported a failure. The error code or
59 * message provided by the OS can be obtained by calling sp_last_error_code()
60 * or sp_last_error_message().
61 *
62 * - @ref SP_ERR_SUPP indicates that there is no support for the requested
63 * operation in the current OS, driver or device. No error message is
64 * available from the OS in this case. There is either no way to request
65 * the operation in the first place, or libserialport does not know how to
66 * do so in the current version.
67 *
68 * - @ref SP_ERR_MEM indicates that a memory allocation failed.
69 *
70 * All of these error values are negative.
cf9d365c
UH
71 *
72 * Function calls that succeed return @ref SP_OK, which is equal to zero,
73 * or where otherwise documented a positive value.
74 */
cd5f5281 75
8645feda
UH
76#ifndef LIBSERIALPORT_LIBSERIALPORT_H
77#define LIBSERIALPORT_LIBSERIALPORT_H
e8ffaee9 78
5ef8a1ed
UH
79#ifdef __cplusplus
80extern "C" {
81#endif
82
74510d4b
ML
83#include <stddef.h>
84#ifdef _WIN32
85#include <windows.h>
86#endif
87
baba0759
UH
88/* Package version macros (e.g. for conditional compilation). */
89#define SP_PACKAGE_VERSION_MAJOR @SP_PACKAGE_VERSION_MAJOR@
90#define SP_PACKAGE_VERSION_MINOR @SP_PACKAGE_VERSION_MINOR@
7de20e39 91#define SP_PACKAGE_VERSION_MICRO @SP_PACKAGE_VERSION_MICRO@
baba0759
UH
92#define SP_PACKAGE_VERSION_STRING "@SP_PACKAGE_VERSION@"
93
94/* Library/libtool version macros (e.g. for conditional compilation). */
95#define SP_LIB_VERSION_CURRENT @SP_LIB_VERSION_CURRENT@
96#define SP_LIB_VERSION_REVISION @SP_LIB_VERSION_REVISION@
97#define SP_LIB_VERSION_AGE @SP_LIB_VERSION_AGE@
98#define SP_LIB_VERSION_STRING "@SP_LIB_VERSION@"
99
cd5f5281 100/** Return values. */
eb6ed20f 101enum sp_return {
cd5f5281 102 /** Operation completed successfully. */
74510d4b 103 SP_OK = 0,
cd5f5281 104 /** Invalid arguments were passed to the function. */
e9a2f9c9 105 SP_ERR_ARG = -1,
cd5f5281 106 /** A system error occured while executing the operation. */
e9a2f9c9 107 SP_ERR_FAIL = -2,
cd5f5281 108 /** A memory allocation failed while executing the operation. */
f92f1f0c 109 SP_ERR_MEM = -3,
6aabf62a
ML
110 /** The requested operation is not supported by this system or device. */
111 SP_ERR_SUPP = -4,
74510d4b
ML
112};
113
cd5f5281 114/** Port access modes. */
eb6ed20f 115enum sp_mode {
a036341b
ML
116 /** Open port for read access. */
117 SP_MODE_READ = 1,
118 /** Open port for write access. */
119 SP_MODE_WRITE = 2,
cd5f5281 120 /** Open port in non-blocking mode. */
f92f1f0c 121 SP_MODE_NONBLOCK = 4,
74510d4b
ML
122};
123
fd8fd11a
ML
124/** Buffer selection. */
125enum sp_buffer {
126 /** Input buffer. */
127 SP_BUF_INPUT = 1,
128 /** Output buffer. */
129 SP_BUF_OUTPUT = 2,
130 /** Both buffers. */
131 SP_BUF_BOTH = 3,
132};
133
cd5f5281 134/** Parity settings. */
eb6ed20f 135enum sp_parity {
c200f5c1 136 /** Special value to indicate setting should be left alone. */
eb6ed20f 137 SP_PARITY_INVALID = -1,
cd5f5281 138 /** No parity. */
74510d4b 139 SP_PARITY_NONE = 0,
cd5f5281 140 /** Odd parity. */
20e63a77
ML
141 SP_PARITY_ODD = 1,
142 /** Even parity. */
143 SP_PARITY_EVEN = 2,
74510d4b
ML
144};
145
cd5f5281 146/** RTS pin behaviour. */
eb6ed20f 147enum sp_rts {
c200f5c1 148 /** Special value to indicate setting should be left alone. */
eb6ed20f 149 SP_RTS_INVALID = -1,
cd5f5281 150 /** RTS off. */
d514a26f 151 SP_RTS_OFF = 0,
cd5f5281 152 /** RTS on. */
d514a26f 153 SP_RTS_ON = 1,
cd5f5281 154 /** RTS used for flow control. */
cf9d365c 155 SP_RTS_FLOW_CONTROL = 2,
d514a26f
ML
156};
157
cd5f5281 158/** CTS pin behaviour. */
eb6ed20f 159enum sp_cts {
c200f5c1 160 /** Special value to indicate setting should be left alone. */
eb6ed20f 161 SP_CTS_INVALID = -1,
cd5f5281 162 /** CTS ignored. */
d514a26f 163 SP_CTS_IGNORE = 0,
cd5f5281 164 /** CTS used for flow control. */
cf9d365c 165 SP_CTS_FLOW_CONTROL = 1,
d514a26f
ML
166};
167
cd5f5281 168/** DTR pin behaviour. */
eb6ed20f 169enum sp_dtr {
c200f5c1 170 /** Special value to indicate setting should be left alone. */
eb6ed20f 171 SP_DTR_INVALID = -1,
cd5f5281 172 /** DTR off. */
d514a26f 173 SP_DTR_OFF = 0,
cd5f5281 174 /** DTR on. */
d514a26f 175 SP_DTR_ON = 1,
cd5f5281 176 /** DTR used for flow control. */
cf9d365c 177 SP_DTR_FLOW_CONTROL = 2,
d514a26f
ML
178};
179
cd5f5281 180/** DSR pin behaviour. */
eb6ed20f 181enum sp_dsr {
c200f5c1 182 /** Special value to indicate setting should be left alone. */
eb6ed20f 183 SP_DSR_INVALID = -1,
cd5f5281 184 /** DSR ignored. */
d514a26f 185 SP_DSR_IGNORE = 0,
cd5f5281 186 /** DSR used for flow control. */
cf9d365c 187 SP_DSR_FLOW_CONTROL = 1,
d514a26f
ML
188};
189
cd5f5281 190/** XON/XOFF flow control behaviour. */
eb6ed20f 191enum sp_xonxoff {
c200f5c1 192 /** Special value to indicate setting should be left alone. */
eb6ed20f 193 SP_XONXOFF_INVALID = -1,
cd5f5281 194 /** XON/XOFF disabled. */
d514a26f 195 SP_XONXOFF_DISABLED = 0,
cd5f5281 196 /** XON/XOFF enabled for input only. */
d514a26f 197 SP_XONXOFF_IN = 1,
cd5f5281 198 /** XON/XOFF enabled for output only. */
d514a26f 199 SP_XONXOFF_OUT = 2,
cd5f5281 200 /** XON/XOFF enabled for input and output. */
cf9d365c 201 SP_XONXOFF_INOUT = 3,
ac74fdaf
ML
202};
203
cd5f5281 204/** Standard flow control combinations. */
eb6ed20f 205enum sp_flowcontrol {
cd5f5281 206 /** No flow control. */
18fc2dd1 207 SP_FLOWCONTROL_NONE = 0,
cd5f5281 208 /** Software flow control using XON/XOFF characters. */
18fc2dd1 209 SP_FLOWCONTROL_XONXOFF = 1,
cd5f5281 210 /** Hardware flow control using RTS/CTS signals. */
18fc2dd1 211 SP_FLOWCONTROL_RTSCTS = 2,
cd5f5281 212 /** Hardware flow control using DTR/DSR signals. */
cf9d365c 213 SP_FLOWCONTROL_DTRDSR = 3,
18fc2dd1
ML
214};
215
8cf7c697
ML
216/** Input signals. */
217enum sp_signal {
218 /** Clear to send. */
219 SP_SIG_CTS = 1,
220 /** Data set ready. */
221 SP_SIG_DSR = 2,
222 /** Data carrier detect. */
223 SP_SIG_DCD = 4,
224 /** Ring indicator. */
225 SP_SIG_RI = 8,
226};
227
eb6ed20f 228/** A serial port. */
1c5aae9d 229struct sp_port;
eb6ed20f
ML
230
231/** Configuration for a serial port. */
232struct sp_port_config {
233 /** Baud rate in bits per second. */
234 int baudrate;
235 /** Number of data bits to use. Valid values are 5 to 8. */
236 int bits;
237 /** Parity setting to use. */
238 enum sp_parity parity;
239 /** Number of stop bits to use (1 or 2). */
240 int stopbits;
241 /** RTS pin mode. */
242 enum sp_rts rts;
243 /** CTS pin mode. */
244 enum sp_cts cts;
245 /** DTR pin mode. */
246 enum sp_dtr dtr;
247 /** DSR pin mode. */
248 enum sp_dsr dsr;
249 /** XON/XOFF flow control mode. */
250 enum sp_xonxoff xon_xoff;
251};
252
091e75fe 253/**
626d280f 254@defgroup Enumeration Port enumeration
091e75fe
ML
255@{
256*/
257
cd5f5281 258/**
cf9d365c
UH
259 * Obtain a pointer to a new sp_port structure representing the named port.
260 *
261 * The user should allocate a variable of type "struct sp_port *" and pass a
262 * pointer to this to receive the result.
263 *
264 * The result should be freed after use by calling sp_free_port().
265 *
f36c6395
ML
266 * If any error is returned, the variable pointed to by port_ptr will be set
267 * to NULL. Otherwise, it will be set to point to the newly allocated port.
268 *
269 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 270 */
eb6ed20f 271enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr);
cd5f5281 272
1c5aae9d
ML
273/**
274 * Get the name of a port.
275 *
276 * The name returned is whatever is normally used to refer to a port on the
277 * current operating system; e.g. for Windows it will usually be a "COMn"
278 * device name, and for Unix it will be a device path beginning with "/dev/".
279 *
280 * @param port Pointer to port structure.
281 *
282 * @return The port name, or NULL if an invalid port is passed. The name
283 * string is part of the port structure and may not be used after the
284 * port structure has been freed.
285 */
286char *sp_get_port_name(const struct sp_port *port);
287
3c126654
ML
288/**
289 * Get the operating system handle for a port.
290 *
291 * The type of the handle depends on the operating system. On Unix based
292 * systems, the handle is a file descriptor of type "int". On Windows, the
293 * handle is of type "HANDLE". The user should allocate a variable of the
294 * appropriate type and pass a pointer to this to receive the result.
295 *
296 * To obtain a valid handle, the port must first be opened by calling
297 * sp_open() using the same port structure.
298 *
299 * After the port is closed or the port structure freed, the handle may
300 * no longer be valid.
301 *
302 * @warning This feature is provided so that programs may make use of
303 * OS-specific functionality where desired. Obviously this comes
304 * at a cost in portability, however it also cannot be guaranteed
305 * that direct usage of the OS handle will not conflict with the
306 * library's own usage of the port. Be careful.
307 *
308 * @return SP_OK upon success, a negative error code otherwise.
309 */
310enum sp_return sp_get_port_handle(const struct sp_port *port, void *result);
311
cd5f5281 312/**
cf9d365c
UH
313 * Free a port structure obtained from sp_get_port_by_name() or sp_copy_port().
314 */
e3b2f7a4 315void sp_free_port(struct sp_port *port);
cd5f5281
ML
316
317/**
cf9d365c
UH
318 * List the serial ports available on the system.
319 *
320 * The result obtained is an array of pointers to sp_port structures,
321 * terminated by a NULL. The user should allocate a variable of type
322 * "struct sp_port **" and pass a pointer to this to receive the result.
323 *
324 * The result should be freed after use by calling sp_free_port_list().
325 * If a port from the list is to be used after freeing the list, it must be
326 * copied first using sp_copy_port().
327 *
f36c6395
ML
328 * If any error is returned, the variable pointed to by list_ptr will be set
329 * to NULL. Otherwise, it will be set to point to the newly allocated array.
330 *
331 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 332 */
eb6ed20f 333enum sp_return sp_list_ports(struct sp_port ***list_ptr);
cd5f5281
ML
334
335/**
cf9d365c
UH
336 * Make a new copy of a sp_port structure.
337 *
338 * The user should allocate a variable of type "struct sp_port *" and pass a
339 * pointer to this to receive the result.
340 *
341 * The copy should be freed after use by calling sp_free_port().
342 *
f36c6395
ML
343 * If any error is returned, the variable pointed to by copy_ptr will be set
344 * to NULL. Otherwise, it will be set to point to the newly allocated copy.
345 *
346 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 347 */
eb6ed20f 348enum sp_return sp_copy_port(const struct sp_port *port, struct sp_port **copy_ptr);
cd5f5281
ML
349
350/**
cf9d365c
UH
351 * Free a port list obtained from sp_list_ports().
352 *
353 * This will also free all the sp_port structures referred to from the list;
354 * any that are to be retained must be copied first using sp_copy_port().
355 */
d54e9004 356void sp_free_port_list(struct sp_port **ports);
e96d8bd2 357
091e75fe 358/**
cf9d365c
UH
359 * @}
360 * @defgroup Ports Opening and closing ports
361 * @{
362 */
091e75fe 363
cd5f5281 364/**
cf9d365c
UH
365 * Open the specified serial port.
366 *
367 * @param port Pointer to port structure.
368 * @param flags Flags to use when opening the serial port.
369 *
f36c6395 370 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 371 */
eb6ed20f 372enum sp_return sp_open(struct sp_port *port, enum sp_mode flags);
cd5f5281
ML
373
374/**
cf9d365c
UH
375 * Close the specified serial port.
376 *
f36c6395 377 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 378 */
eb6ed20f 379enum sp_return sp_close(struct sp_port *port);
e96d8bd2 380
cd5f5281 381/**
cf9d365c
UH
382 * @}
383 * @defgroup Configuration Setting port parameters
384 * @{
385 */
e96d8bd2 386
cd5f5281 387/**
cf9d365c
UH
388 * Get the current configuration of the specified serial port.
389 *
390 * The user should allocate a struct sp_port_config, then pass a pointer to it
391 * as the config parameter. The struct will be populated with the port
392 * configuration.
393 *
394 * Any setting that is in a state not recognised or supported by
395 * libserialport will have its value set to -1 in the struct.
396 *
f36c6395 397 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 398 */
eb6ed20f 399enum sp_return sp_get_config(struct sp_port *port, struct sp_port_config *config);
cd5f5281
ML
400
401/**
cf9d365c
UH
402 * Set the configuration for the specified serial port.
403 *
404 * The user should populate a struct sp_port_config, then pass a pointer to it
405 * as the config parameter.
406 *
407 * To retain the current value of any setting, set that field to -1.
408 *
f36c6395 409 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 410 */
eb6ed20f 411enum sp_return sp_set_config(struct sp_port *port, const struct sp_port_config *config);
cd5f5281
ML
412
413/**
cf9d365c
UH
414 * Set the baud rate for the specified serial port.
415 *
416 * @param port Pointer to port structure.
417 * @param baudrate Baud rate in bits per second.
418 *
f36c6395 419 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 420 */
eb6ed20f 421enum sp_return sp_set_baudrate(struct sp_port *port, int baudrate);
cd5f5281
ML
422
423/**
cf9d365c
UH
424 * Set the number of data bits for the specified serial port.
425 *
426 * @param port Pointer to port structure.
427 * @param bits Number of data bits to use. Valid values are 5 to 8.
428 *
f36c6395 429 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 430 */
eb6ed20f 431enum sp_return sp_set_bits(struct sp_port *port, int bits);
cd5f5281
ML
432
433/**
cf9d365c
UH
434 * Set the parity for the specified serial port.
435 *
436 * @param port Pointer to port structure.
437 * @param parity Parity setting to use.
438 *
f36c6395 439 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 440 */
eb6ed20f 441enum sp_return sp_set_parity(struct sp_port *port, enum sp_parity parity);
cd5f5281
ML
442
443/**
cf9d365c
UH
444 * Set the number of stop bits for the specified port.
445 *
446 * @param port Pointer to port structure.
447 * @param stopbits Number of stop bits to use (1 or 2).
448 *
f36c6395 449 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 450 */
eb6ed20f 451enum sp_return sp_set_stopbits(struct sp_port *port, int stopbits);
cd5f5281
ML
452
453/**
cf9d365c
UH
454 * Set the flow control type for the specified serial port.
455 *
456 * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
457 * XON/XOFF settings as necessary for the specified flow control
458 * type. For more fine-grained control of these settings, use their
459 * individual configuration functions or the sp_set_config() function.
460 *
461 * @param port Pointer to port structure.
462 * @param flowcontrol Flow control setting to use.
463 *
f36c6395 464 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 465 */
eb6ed20f 466enum sp_return sp_set_flowcontrol(struct sp_port *port, enum sp_flowcontrol flowcontrol);
18fc2dd1 467
cd5f5281 468/**
cf9d365c
UH
469 * Set the RTS pin behaviour for the specified port.
470 *
471 * @param port Pointer to port structure.
472 * @param rts RTS pin mode.
473 *
f36c6395 474 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 475 */
eb6ed20f 476enum sp_return sp_set_rts(struct sp_port *port, enum sp_rts rts);
cd5f5281
ML
477
478/**
cf9d365c
UH
479 * Set the CTS pin behaviour for the specified port.
480 *
481 * @param port Pointer to port structure.
482 * @param cts CTS pin mode.
483 *
f36c6395 484 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 485 */
eb6ed20f 486enum sp_return sp_set_cts(struct sp_port *port, enum sp_cts cts);
cd5f5281
ML
487
488/**
cf9d365c
UH
489 * Set the DTR pin behaviour for the specified port.
490 *
491 * @param port Pointer to port structure.
492 * @param dtr DTR pin mode.
493 *
f36c6395 494 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 495 */
eb6ed20f 496enum sp_return sp_set_dtr(struct sp_port *port, enum sp_dtr dtr);
cd5f5281
ML
497
498/**
cf9d365c
UH
499 * Set the RTS pin behaviour for the specified port.
500 *
501 * @param port Pointer to port structure.
502 * @param dsr DSR pin mode.
503 *
f36c6395 504 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 505 */
eb6ed20f 506enum sp_return sp_set_dsr(struct sp_port *port, enum sp_dsr dsr);
cd5f5281
ML
507
508/**
cf9d365c
UH
509 * Configure XON/XOFF flow control for the specified port.
510 *
511 * @param port Pointer to port structure.
512 * @param xon_xoff XON/XOFF flow control mode.
513 *
f36c6395 514 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 515 */
eb6ed20f 516enum sp_return sp_set_xon_xoff(struct sp_port *port, enum sp_xonxoff xon_xoff);
e96d8bd2 517
091e75fe 518/**
cf9d365c
UH
519 * @}
520 * @defgroup Data Reading, writing, and flushing data
521 * @{
091e75fe
ML
522*/
523
524/**
cf9d365c
UH
525 * Read bytes from the specified serial port.
526 *
527 * Note that this function may return after reading less than the specified
528 * number of bytes; it is the user's responsibility to iterate as necessary
529 * in this case.
530 *
531 * @param port Pointer to port structure.
532 * @param buf Buffer in which to store the bytes read.
533 * @param count Maximum number of bytes to read.
534 *
f36c6395 535 * @return The number of bytes read on success, or a negative error code.
cf9d365c 536 */
091e75fe
ML
537enum sp_return sp_read(struct sp_port *port, void *buf, size_t count);
538
539/**
cf9d365c
UH
540 * Write bytes to the specified serial port.
541 *
542 * Note that this function may return after writing less than the specified
543 * number of bytes; it is the user's responsibility to iterate as necessary
544 * in this case.
545 *
546 * @param port Pointer to port structure.
547 * @param buf Buffer containing the bytes to write.
548 * @param count Maximum number of bytes to write.
549 *
f36c6395 550 * @return The number of bytes written on success, or a negative error code.
cf9d365c 551 */
091e75fe
ML
552enum sp_return sp_write(struct sp_port *port, const void *buf, size_t count);
553
554/**
fd8fd11a
ML
555 * Flush serial port buffers. Data in the selected buffer(s) is discarded.
556 *
ea34fba8 557 * @param port Pointer to port structure.
fd8fd11a 558 * @param buffers Which buffer(s) to flush.
cf9d365c 559 *
f36c6395 560 * @return SP_OK upon success, a negative error code otherwise.
cf9d365c 561 */
fd8fd11a 562enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers);
091e75fe 563
69a3739c
ML
564/**
565 * Wait for buffered data to be transmitted.
566 *
3f099f4f
ML
567 * @param port Pointer to port structure.
568 *
f36c6395 569 * @return SP_OK upon success, a negative error code otherwise.
69a3739c
ML
570 */
571enum sp_return sp_drain(struct sp_port *port);
572
90cc3ee6
ML
573/**
574 * @}
575 * @defgroup Signal Port signalling operations
576 * @{
577 */
578
8cf7c697
ML
579/**
580 * Gets the status of the control signals for the specified port.
581 *
582 * The user should allocate a variable of type "enum sp_signal" and pass a
583 * pointer to this variable to receive the result. The result is a bitmask
584 * in which individual signals can be checked by bitwise OR with values of
585 * the sp_signal enum.
586 *
587 * @param port Pointer to port structure.
588 * @param signals Pointer to variable to receive result.
589 *
f36c6395 590 * @return SP_OK upon success, a negative error code otherwise.
8cf7c697
ML
591 */
592enum sp_return sp_get_signals(struct sp_port *port, enum sp_signal *signals);
593
90cc3ee6
ML
594/**
595 * Put the port transmit line into the break state.
596 *
3f099f4f
ML
597 * @param port Pointer to port structure.
598 *
f36c6395 599 * @return SP_OK upon success, a negative error code otherwise.
90cc3ee6
ML
600 */
601enum sp_return sp_start_break(struct sp_port *port);
602
603/**
604 * Take the port transmit line out of the break state.
605 *
3f099f4f
ML
606 * @param port Pointer to port structure.
607 *
f36c6395 608 * @return SP_OK upon success, a negative error code otherwise.
90cc3ee6
ML
609 */
610enum sp_return sp_end_break(struct sp_port *port);
611
091e75fe 612/**
cf9d365c
UH
613 * @}
614 * @defgroup Errors Obtaining error information
615 * @{
091e75fe
ML
616*/
617
cd5f5281 618/**
cf9d365c
UH
619 * Get the error code for a failed operation.
620 *
621 * In order to obtain the correct result, this function should be called
622 * straight after the failure, before executing any other system operations.
623 *
624 * @return The system's numeric code for the error that caused the last
625 * operation to fail.
626 */
74510d4b 627int sp_last_error_code(void);
cd5f5281
ML
628
629/**
cf9d365c
UH
630 * Get the error message for a failed operation.
631 *
632 * In order to obtain the correct result, this function should be called
633 * straight after the failure, before executing other system operations.
634 *
635 * @return The system's message for the error that caused the last
636 * operation to fail. This string may be allocated by the function,
637 * and should be freed after use by calling sp_free_error_message().
638 */
74510d4b 639char *sp_last_error_message(void);
cd5f5281
ML
640
641/**
cf9d365c
UH
642 * Free an error message returned by sp_last_error_message().
643 */
74510d4b 644void sp_free_error_message(char *message);
e8ffaee9 645
863b35e6
ML
646/**
647 * Set the handler function for library debugging messages.
648 *
649 * Debugging messages are generated by the library during each operation,
650 * to help in diagnosing problems. The handler will be called for each
651 * message. The handler can be set to NULL to ignore all debug messages.
652 *
653 * The handler function should accept a format string and variable length
654 * argument list, in the same manner as e.g. printf().
655 *
656 * The default handler is sp_default_debug_handler().
657 */
658void sp_set_debug_handler(void (*handler)(const char *format, ...));
659
660/**
661 * Default handler function for library debugging messages.
662 *
663 * This function prints debug messages to the standard error stream if the
664 * environment variable LIBSERIALPORT_DEBUG is set. Otherwise, they are
665 * ignored.
666 */
667void sp_default_debug_handler(const char *format, ...);
668
cf9d365c 669/** @} */
091e75fe 670
5ef8a1ed
UH
671#ifdef __cplusplus
672}
673#endif
674
8645feda 675#endif