serial-dmm: sort the list of device drivers (part 12, vc870)

This commit puts 'vc870' meters into one group. Which completes the
series of commits which sort the list of supported serial DMMs.
This commit is contained in:
Gerhard Sittig 2016-11-05 17:54:29 +01:00 committed by Uwe Hermann
parent 53e875ab16
commit 89a3d8af3a
1 changed files with 5 additions and 1 deletions

View File

@ -583,11 +583,15 @@ SR_REGISTER_DEV_DRIVER_LIST(serial_dmm_drivers,
sr_ut71x_packet_valid, sr_ut71x_parse, NULL
),
/* }}} */
/* meters based on other chips (to get sorted) */
/* vc870 based meters {{{ */
DMM(
"voltcraft-vc870-ser", vc870,
"Voltcraft", "VC-870 (UT-D02 cable)", "9600/8n1/rts=0/dtr=1",
9600, VC870_PACKET_SIZE, 0, 0, NULL,
sr_vc870_packet_valid, sr_vc870_parse, NULL
),
/* }}} */
/*
* The list is sorted. Add new items in the respective chip's group.
*/
);