genesys: Add support for Plustek OpticFilm 7200 (v2)

merge-requests/213/head^2
Povilas Kanapickas 2020-04-01 20:56:56 +03:00
rodzic 726e3e5407
commit 4a1667865a
2 zmienionych plików z 18 dodań i 0 usunięć

Wyświetl plik

@ -2338,6 +2338,19 @@ void genesys_init_usb_device_tables()
s_usb_devices->emplace_back(0x07b3, 0x0c04, model);
// same as 7200i, just without the infrared channel
model.name = "plustek-opticfilm-7200-v2";
model.model = "OpticFilm 7200 v2";
model.resolutions = {
{
{ ScanMethod::TRANSPARENCY },
{ 7200, 3600, 1800, 900 },
{ 7200, 3600, 1800, 900 },
}
};
s_usb_devices->emplace_back(0x07b3, 0x0c07, model);
model = Genesys_Model();
model.name = "plustek-opticfilm-7300";
model.vendor = "PLUSTEK";

Wyświetl plik

@ -17,6 +17,11 @@
:status :basic
:comment "Has a Primax USB ID"
:model "OpticFilm 7200 (v2)"
:interface "USB"
:usbid "0x07b3" "0x0c07"
:status :basic
:model "OpticFilm 7200i"
:interface "USB"
:usbid "0x07b3" "0x0c04"