]> sigrok.org Git - libserialport.git/commitdiff
libserialport.h.in: Add @since tags for new enums.
authorUwe Hermann <redacted>
Wed, 15 Apr 2015 22:53:50 +0000 (00:53 +0200)
committerUwe Hermann <redacted>
Sun, 19 Apr 2015 16:14:48 +0000 (18:14 +0200)
libserialport.h.in

index 88628fcc9881307b5fdb5e6a9963077fb920c0f8..d945d4f06ff096c173c18a7f1f58fb90cbff02ec 100644 (file)
@@ -109,7 +109,7 @@ enum sp_mode {
        SP_MODE_READ = 1,
        /** Open port for write access. */
        SP_MODE_WRITE = 2,
-       /** Open port for read and write access. */
+       /** Open port for read and write access. @since 0.1.1 */
        SP_MODE_READ_WRITE = 3
 };
 
@@ -231,13 +231,17 @@ enum sp_signal {
        SP_SIG_RI = 8
 };
 
-/** Transport types. */
+/**
+ * Transport types.
+ *
+ * @since 0.1.1
+ */
 enum sp_transport {
-       /** Native platform serial port. */
+       /** Native platform serial port. @since 0.1.1 */
        SP_TRANSPORT_NATIVE,
-       /** USB serial port adapter. */
+       /** USB serial port adapter. @since 0.1.1 */
        SP_TRANSPORT_USB,
-       /** Bluetooth serial port adapter. */
+       /** Bluetooth serial port adapter. @since 0.1.1 */
        SP_TRANSPORT_BLUETOOTH
 };