gwinstek-gpd: Add support for GPD-3303S.

This commit is contained in:
Timo Kokkonen 2020-07-13 21:44:25 -07:00 committed by Gerhard Sittig
parent dc172c38d2
commit 3b316fdca0
2 changed files with 11 additions and 0 deletions

View File

@ -60,6 +60,16 @@ static const struct gpd_model models[] = {
{ { 0, 30, 0.001 }, { 0, 3, 0.001 } },
},
},
{ GPD_3303S, "GPD-3303S",
CHANMODE_INDEPENDENT,
2,
{
/* Channel 1 */
{ { 0, 32, 0.001 }, { 0, 3.2, 0.001 } },
/* Channel 2 */
{ { 0, 32, 0.001 }, { 0, 3.2, 0.001 } },
},
},
};
static GSList *scan(struct sr_dev_driver *di, GSList *options)

View File

@ -29,6 +29,7 @@
enum {
GPD_2303S,
GPD_3303S,
};
/* Maximum number of output channels handled by this driver. */