1
0
mirror of git://sigrok.org/libserialport synced 2023-08-10 21:13:24 +03:00

Minor Doxygen updates/fixes.

This commit is contained in:
Uwe Hermann 2013-12-17 22:31:12 +01:00
parent 1a2a1544d7
commit 0a1ab8bf8f

View File

@ -73,7 +73,7 @@
* *
* Calls that succeed return @ref SP_OK, which is equal to zero. Some functions * Calls that succeed return @ref SP_OK, which is equal to zero. Some functions
* declared @ref sp_return can also return a positive value for a successful * declared @ref sp_return can also return a positive value for a successful
* numeric result, e.g. sp_read() and sp_write(). * numeric result, e.g. sp_blocking_read() or sp_blocking_write().
*/ */
#ifndef LIBSERIALPORT_LIBSERIALPORT_H #ifndef LIBSERIALPORT_LIBSERIALPORT_H
@ -230,10 +230,16 @@ enum sp_signal {
SP_SIG_RI = 8, SP_SIG_RI = 8,
}; };
/** A serial port. */ /**
* @struct sp_port
* An opaque structure representing a serial port.
*/
struct sp_port; struct sp_port;
/** Configuration for a serial port. */ /**
* @struct sp_port_config
* An opaque structure representing the configuration for a serial port.
*/
struct sp_port_config; struct sp_port_config;
/** /**