gwinstek-gpd: Add support for GPD-3303S.
This commit is contained in:
parent
dc172c38d2
commit
3b316fdca0
|
@ -60,6 +60,16 @@ static const struct gpd_model models[] = {
|
||||||
{ { 0, 30, 0.001 }, { 0, 3, 0.001 } },
|
{ { 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)
|
static GSList *scan(struct sr_dev_driver *di, GSList *options)
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
GPD_2303S,
|
GPD_2303S,
|
||||||
|
GPD_3303S,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Maximum number of output channels handled by this driver. */
|
/* Maximum number of output channels handled by this driver. */
|
||||||
|
|
Loading…
Reference in New Issue