]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/uni-t-dmm/api.c
uni-t-dmm: sort supported devices, sort in the es519xx group
[libsigrok.git] / src / hardware / uni-t-dmm / api.c
index f3180e79a3a395d94868840b49f91595cd8e230b..8321f005cf508bec50fa50101639b1705fdf21d8 100644 (file)
@@ -178,6 +178,14 @@ static int dev_acquisition_stop(struct sr_dev_inst *sdi)
 
 SR_REGISTER_DEV_DRIVER_LIST(uni_t_dmm_drivers,
        /* {{{ es519xx */
+       DMM(
+               "tenma-72-7750", es519xx,
+               /* The baudrate is actually 19230, see "Note 1" below. */
+               "Tenma", "72-7750", 19200,
+               ES519XX_11B_PACKET_SIZE,
+               sr_es519xx_19200_11b_packet_valid, sr_es519xx_19200_11b_parse,
+               NULL
+       ),
        DMM(
                "uni-t-ut60g", es519xx,
                /* The baudrate is actually 19230, see "Note 1" below. */
@@ -194,14 +202,6 @@ SR_REGISTER_DEV_DRIVER_LIST(uni_t_dmm_drivers,
                sr_es519xx_19200_14b_packet_valid, sr_es519xx_19200_14b_parse,
                NULL
        ),
-       DMM(
-               "tenma-72-7750", es519xx,
-               /* The baudrate is actually 19230, see "Note 1" below. */
-               "Tenma", "72-7750", 19200,
-               ES519XX_11B_PACKET_SIZE,
-               sr_es519xx_19200_11b_packet_valid, sr_es519xx_19200_11b_parse,
-               NULL
-       ),
        /* }}} */
        /* {{{ fs9721 */
        DMM(
@@ -247,6 +247,41 @@ SR_REGISTER_DEV_DRIVER_LIST(uni_t_dmm_drivers,
                sr_fs9721_00_temp_c
        ),
        /* }}} */
+       /* {{{ fs9922 */
+       DMM(
+               "uni-t-ut61b", fs9922,
+               "UNI-T", "UT61B", 2400,
+               FS9922_PACKET_SIZE,
+               sr_fs9922_packet_valid, sr_fs9922_parse,
+               NULL
+       ),
+       DMM(
+               "uni-t-ut61c", fs9922,
+               "UNI-T", "UT61C", 2400,
+               FS9922_PACKET_SIZE,
+               sr_fs9922_packet_valid, sr_fs9922_parse,
+               NULL
+       ),
+       DMM(
+               "uni-t-ut61d", fs9922,
+               "UNI-T", "UT61D", 2400,
+               FS9922_PACKET_SIZE,
+               sr_fs9922_packet_valid, sr_fs9922_parse,
+               NULL
+       ),
+       DMM(
+               "voltcraft-vc830", fs9922,
+               /*
+                * Note: The VC830 doesn't set the 'volt' and 'diode' bits of
+                * the FS9922 protocol. Instead, it only sets the user-defined
+                * bit "z1" to indicate "diode mode" and "voltage".
+                */
+               "Voltcraft", "VC-830", 2400,
+               FS9922_PACKET_SIZE,
+               sr_fs9922_packet_valid, sr_fs9922_parse,
+               &sr_fs9922_z1_diode
+       ),
+       /* }}} */
        /* {{{ ut372 */
        DMM(
                "uni-t-ut372", ut372,
@@ -321,42 +356,11 @@ SR_REGISTER_DEV_DRIVER_LIST(uni_t_dmm_drivers,
                sr_ut71x_packet_valid, sr_ut71x_parse, NULL
        ),
        /* }}} */
-       DMM(
-               "uni-t-ut61b", fs9922,
-               "UNI-T", "UT61B", 2400,
-               FS9922_PACKET_SIZE,
-               sr_fs9922_packet_valid, sr_fs9922_parse,
-               NULL
-       ),
-       DMM(
-               "uni-t-ut61c", fs9922,
-               "UNI-T", "UT61C", 2400,
-               FS9922_PACKET_SIZE,
-               sr_fs9922_packet_valid, sr_fs9922_parse,
-               NULL
-       ),
-       DMM(
-               "uni-t-ut61d", fs9922,
-               "UNI-T", "UT61D", 2400,
-               FS9922_PACKET_SIZE,
-               sr_fs9922_packet_valid, sr_fs9922_parse,
-               NULL
-       ),
-       DMM(
-               "voltcraft-vc830", fs9922,
-               /*
-                * Note: The VC830 doesn't set the 'volt' and 'diode' bits of
-                * the FS9922 protocol. Instead, it only sets the user-defined
-                * bit "z1" to indicate "diode mode" and "voltage".
-                */
-               "Voltcraft", "VC-830", 2400,
-               FS9922_PACKET_SIZE,
-               sr_fs9922_packet_valid, sr_fs9922_parse,
-               &sr_fs9922_z1_diode
-       ),
+       /* {{{ vc870 */
        DMM(
                "voltcraft-vc870", vc870,
                "Voltcraft", "VC-870", 9600, VC870_PACKET_SIZE,
                sr_vc870_packet_valid, sr_vc870_parse, NULL
        ),
+       /* }}} */
 );