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/>.
22 \mainpage libserialport API
27 libserialport is a minimal library written in C that is intended to take care
28 of the OS-specific details when writing software that uses serial ports.
30 By writing your serial code to use libserialport, you enable it to work
31 transparently on any platform supported by the library.
33 The operations that are supported are:
35 - \ref Enumeration (obtaining a list of serial ports on the system).
37 - \ref Configuration (baud rate, parity, etc)
41 libserialport is an open source project released under the LGPL3+ license.
46 The API is simple, and designed to be a minimal wrapper around the serial port
49 Most functions take a pointer to a struct sp_port, which represents a serial
50 port. These structures are always allocated and freed by the library, using
51 the functions in the \ref Enumeration "Enumeration" section.
53 All functions can return only three possible error values. SP_ERR_ARG indicates
54 the function was called with invalid arguments. SP_ERR_FAIL indicates that the
55 OS reported a failure. SP_ERR_MEM indicates that a memory allocation failed.
56 All of these error values are negative.
58 When SP_ERR_FAIL is returned, an error code or string description of the error
59 can be obtained by calling sp_last_error_code() or sp_last_error_message(). The
60 error code or message is that provided by the OS; libserialport does not define
61 any error codes or messages of its own.
63 Function calls that succeed return SP_OK, which is equal to zero, or where
64 otherwise documented a positive value.
68 #ifndef LIBSERIALPORT_H
69 #define LIBSERIALPORT_H
80 /* Package version macros (e.g. for conditional compilation). */
81 #define SP_PACKAGE_VERSION_MAJOR @SP_PACKAGE_VERSION_MAJOR@
82 #define SP_PACKAGE_VERSION_MINOR @SP_PACKAGE_VERSION_MINOR@
83 #define SP_PACKAGE_VERSION_STRING "@SP_PACKAGE_VERSION@"
85 /* Library/libtool version macros (e.g. for conditional compilation). */
86 #define SP_LIB_VERSION_CURRENT @SP_LIB_VERSION_CURRENT@
87 #define SP_LIB_VERSION_REVISION @SP_LIB_VERSION_REVISION@
88 #define SP_LIB_VERSION_AGE @SP_LIB_VERSION_AGE@
89 #define SP_LIB_VERSION_STRING "@SP_LIB_VERSION@"
93 /** Operation completed successfully. */
95 /** Invalid arguments were passed to the function. */
97 /** A system error occured while executing the operation. */
99 /** A memory allocation failed while executing the operation. */
103 /** Port access modes. */
105 /** Open port for read/write access. */
107 /** Open port for read access only. */
109 /** Open port in non-blocking mode. */
110 SP_MODE_NONBLOCK
= 4,
113 /** Parity settings. */
115 /** Special value to indicate setting should be left alone. */
116 SP_PARITY_INVALID
= -1,
125 /** RTS pin behaviour. */
127 /** Special value to indicate setting should be left alone. */
133 /** RTS used for flow control. */
134 SP_RTS_FLOW_CONTROL
= 2
137 /** CTS pin behaviour. */
139 /** Special value to indicate setting should be left alone. */
143 /** CTS used for flow control. */
144 SP_CTS_FLOW_CONTROL
= 1
147 /** DTR pin behaviour. */
149 /** Special value to indicate setting should be left alone. */
155 /** DTR used for flow control. */
156 SP_DTR_FLOW_CONTROL
= 2
159 /** DSR pin behaviour. */
161 /** Special value to indicate setting should be left alone. */
165 /** DSR used for flow control. */
166 SP_DSR_FLOW_CONTROL
= 1
169 /** XON/XOFF flow control behaviour. */
171 /** Special value to indicate setting should be left alone. */
172 SP_XONXOFF_INVALID
= -1,
173 /** XON/XOFF disabled. */
174 SP_XONXOFF_DISABLED
= 0,
175 /** XON/XOFF enabled for input only. */
177 /** XON/XOFF enabled for output only. */
179 /** XON/XOFF enabled for input and output. */
183 /** Standard flow control combinations. */
184 enum sp_flowcontrol
{
185 /** No flow control. */
186 SP_FLOWCONTROL_NONE
= 0,
187 /** Software flow control using XON/XOFF characters. */
188 SP_FLOWCONTROL_XONXOFF
= 1,
189 /** Hardware flow control using RTS/CTS signals. */
190 SP_FLOWCONTROL_RTSCTS
= 2,
191 /** Hardware flow control using DTR/DSR signals. */
192 SP_FLOWCONTROL_DTRDSR
= 3
195 /** A serial port. */
197 /** Name used to open the port */
200 /* OS-specific port handle */
209 /** Configuration for a serial port. */
210 struct sp_port_config
{
211 /** Baud rate in bits per second. */
213 /** Number of data bits to use. Valid values are 5 to 8. */
215 /** Parity setting to use. */
216 enum sp_parity parity
;
217 /** Number of stop bits to use (1 or 2). */
227 /** XON/XOFF flow control mode. */
228 enum sp_xonxoff xon_xoff
;
232 \defgroup Enumeration Port enumeration
237 Obtains a pointer to a new sp_port structure representing the named port. The
238 user should allocate a variable of type "struct sp_port *" and pass a pointer
239 to this to receive the result.
241 The result should be freed after use by calling sp_free_port().
243 @return SP_OK on success, SP_ERR_FAIL on failure, SP_ERR_MEM on allocation
244 failure, or SP_ERR_ARG if an invalid pointer is passed. If any error
245 is returned, the variable pointed to by port_ptr will be set to NULL.
246 Otherwise, it will be set to point to the newly allocated port.
248 enum sp_return
sp_get_port_by_name(const char *portname
, struct sp_port
**port_ptr
);
251 Frees a port structure obtained from sp_get_port_by_name() or sp_copy_port().
253 void sp_free_port(struct sp_port
*port
);
256 Lists the serial ports available on the system. The result obtained is an
257 array of pointers to sp_port structures, terminated by a NULL. The user should
258 allocate a variable of type "struct sp_port **" and pass a pointer to this to
261 The result should be freed after use by calling sp_free_port_list(). If a port
262 from the list is to be used after freeing the list, it must be copied first
263 using sp_copy_port().
265 @return SP_OK on success, SP_ERR_FAIL on failure, SP_ERR_MEM on allocation
266 failure, or SP_ERR_ARG if an invalid pointer is passed. If any error
267 is returned, the variable pointed to by list_ptr will be set to NULL.
268 Otherwise, it will be set to point to the newly allocated array.
270 enum sp_return
sp_list_ports(struct sp_port
***list_ptr
);
273 Makes a new copy of a sp_port structure. The user should allocate a variable
274 of type "struct sp_port *" and pass a pointer to this to receive the result.
276 The copy should be freed after use by calling sp_free_port().
278 @return SP_OK on success, SP_ERR_MEM on allocation failure, or SP_ERR_ARG
279 if an invalid port or pointer is passed. If any error is returned,
280 the variable pointed to by copy_ptr will be set to NULL. Otherwise,
281 it will be set to point to the newly allocated copy.
283 enum sp_return
sp_copy_port(const struct sp_port
*port
, struct sp_port
**copy_ptr
);
286 Frees a port list obtained from sp_list_ports(). This will also free all
287 the sp_port structures referred to from the list; any that are to be retained
288 must be copied first using sp_copy_port().
290 void sp_free_port_list(struct sp_port
**ports
);
294 \defgroup Ports Opening & closing ports
299 Opens the specified serial port.
301 @param port Pointer to port structure.
302 @param flags Flags to use when opening the serial port.
304 @return SP_OK on success, SP_ERR_FAIL on failure, SP_ERR_MEM on allocation
305 failure, or SP_ERR_ARG if an invalid port is passed.
307 enum sp_return
sp_open(struct sp_port
*port
, enum sp_mode flags
);
310 Closes the specified serial port.
312 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
313 if an invalid port is passed.
315 enum sp_return
sp_close(struct sp_port
*port
);
319 \defgroup Configuration Setting port parameters
324 Gets current configuration of the specified serial port.
326 The user should allocate a struct sp_port_config, then pass a pointer to it
327 as the config parameter. The struct will be populated with the port
330 Any setting that is in a state not recognised or supported by
331 libserialport will have its value set to -1 in the struct.
333 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
334 for invalid arguments.
336 enum sp_return
sp_get_config(struct sp_port
*port
, struct sp_port_config
*config
);
339 Sets configuration for the specified serial port.
341 The user should populate a struct sp_port_config, then pass a pointer to it
342 as the config parameter.
344 To retain the current value of any setting, set that field to -1.
346 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
347 for invalid arguments.
349 enum sp_return
sp_set_config(struct sp_port
*port
, const struct sp_port_config
*config
);
352 Sets the baud rate for the specified serial port.
354 @param port Pointer to port structure.
355 @param baudrate Baud rate in bits per second.
357 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
358 for invalid arguments.
360 enum sp_return
sp_set_baudrate(struct sp_port
*port
, int baudrate
);
363 Sets the number of data bits for the specified serial port.
365 @param port Pointer to port structure.
366 @param bits Number of data bits to use. Valid values are 5 to 8.
368 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
369 for invalid arguments.
371 enum sp_return
sp_set_bits(struct sp_port
*port
, int bits
);
374 Sets the parity for the specified serial port.
376 @param port Pointer to port structure.
377 @param parity Parity setting to use.
379 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
380 for invalid arguments.
382 enum sp_return
sp_set_parity(struct sp_port
*port
, enum sp_parity parity
);
385 Sets the number of stop bits for the specified port.
387 @param port Pointer to port structure.
388 @param stopbits Number of stop bits to use (1 or 2).
390 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
391 for invalid arguments.
393 enum sp_return
sp_set_stopbits(struct sp_port
*port
, int stopbits
);
396 Sets the flow control type for the specified serial port.
398 This function is a wrapper that sets the RTS, CTS, DTR, DSR and
399 XON/XOFF settings as necessary for the specified flow control
400 type. For more fine-grained control of these settings, use their
401 individual configuration functions or the sp_set_config() function.
403 @param port Pointer to port structure.
404 @param flowcontrol Flow control setting to use.
406 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
407 for invalid arguments.
409 enum sp_return
sp_set_flowcontrol(struct sp_port
*port
, enum sp_flowcontrol flowcontrol
);
412 Sets the RTS pin behaviour for the specified port.
414 @param port Pointer to port structure.
415 @param rts RTS pin mode.
417 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
418 for invalid arguments.
420 enum sp_return
sp_set_rts(struct sp_port
*port
, enum sp_rts rts
);
423 Sets the CTS pin behaviour for the specified port.
425 @param port Pointer to port structure.
426 @param cts CTS pin mode.
428 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
429 for invalid arguments.
431 enum sp_return
sp_set_cts(struct sp_port
*port
, enum sp_cts cts
);
434 Sets the DTR pin behaviour for the specified port.
436 @param port Pointer to port structure.
437 @param dtr DTR pin mode.
439 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
440 for invalid arguments.
442 enum sp_return
sp_set_dtr(struct sp_port
*port
, enum sp_dtr dtr
);
445 Sets the RTS pin behaviour for the specified port.
447 @param port Pointer to port structure.
448 @param dsr DSR pin mode.
450 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
451 for invalid arguments.
453 enum sp_return
sp_set_dsr(struct sp_port
*port
, enum sp_dsr dsr
);
456 Configures XON/XOFF flow control for the specified port.
458 @param port Pointer to port structure.
459 @param xon_xoff XON/XOFF flow control mode.
461 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
462 for invalid arguments.
464 enum sp_return
sp_set_xon_xoff(struct sp_port
*port
, enum sp_xonxoff xon_xoff
);
468 \defgroup Data Reading, writing & flushing data
473 Reads bytes from the specified serial port. Note that this function may
474 return after reading less than the specified number of bytes; it is the
475 user's responsibility to iterate as necessary in this case.
477 @param port Pointer to port structure.
478 @param buf Buffer in which to store the bytes read.
479 @param count Maximum number of bytes to read.
481 @return The number of bytes read, SP_ERR_FAIL on failure,
482 or SP_ERR_ARG for invalid arguments.
484 enum sp_return
sp_read(struct sp_port
*port
, void *buf
, size_t count
);
487 Write bytes to the specified serial port. Note that this function may
488 return after writing less than the specified number of bytes; it is the
489 user's responsibility to iterate as necessary in this case.
491 @param port Pointer to port structure.
492 @param buf Buffer containing the bytes to write.
493 @param count Maximum number of bytes to write.
495 @return The number of bytes written, SP_ERR_FAIL on failure,
496 or SP_ERR_ARG for invalid arguments.
498 enum sp_return
sp_write(struct sp_port
*port
, const void *buf
, size_t count
);
501 Flushes serial port buffers.
503 @return SP_OK on success, SP_ERR_FAIL on failure, or SP_ERR_ARG
504 if an invalid port is passed.
506 enum sp_return
sp_flush(struct sp_port
*port
);
510 \defgroup Errors Obtaining error information
515 Gets the error code for a failed operation.
517 In order to obtain the correct result, this function should be called
518 straight after the failure, before executing any other system operations.
520 @return The system's numeric code for the error that caused the last
523 int sp_last_error_code(void);
526 Gets the error message for a failed operation.
528 In order to obtain the correct result, this function should be called
529 straight after the failure, before executing other system operations.
531 @return The system's message for the error that caused the last
532 operation to fail. This string may be allocated by the function,
533 and should be freed after use by calling sp_free_error_message.
535 char *sp_last_error_message(void);
538 Frees an error message returned by sp_last_error_message().
540 void sp_free_error_message(char *message
);
550 #endif /* LIBSERIALPORT_H */