sonyupdneo: Add USB ID for Stryker SDP1000 (rebaded UP-DR80MD)
This commit is contained in:
parent
ae990da966
commit
a0e3326316
8
README
8
README
|
@ -64,6 +64,7 @@
|
|||
Sony UP-DR200
|
||||
Sony UP-D895
|
||||
Sony UP-D897
|
||||
Stryker SDP1000
|
||||
|
||||
Work-in-progress Printers:
|
||||
|
||||
|
@ -863,6 +864,7 @@
|
|||
Verified supported printers:
|
||||
|
||||
Sony UP-DR80MD
|
||||
Stryker SDP1000
|
||||
|
||||
Work-in-progress printers
|
||||
|
||||
|
@ -1041,9 +1043,9 @@
|
|||
the input data to be gamma corrected (and transformed in other ways)
|
||||
before it is sent to the printer.
|
||||
|
||||
Considerable progress has been made in decoding the CP-98xx data
|
||||
tables and algorithms, and everything but sharpening has now been
|
||||
implemented. In theory, the output quality should be comparable to
|
||||
Considerable progress has been made in decoding the CP-98xx data
|
||||
tables and algorithms, and everything but sharpening has now been
|
||||
implemented. In theory, the output quality should be comparable to
|
||||
Mitsubishi's own drivers.
|
||||
|
||||
This code has been implemented in the lib70 driver, and note that while
|
||||
|
|
|
@ -623,6 +623,7 @@ static const char *sonyupdneo_prefixes[] = {
|
|||
#define USB_PID_SONY_UPD898MD 0xabcd // 0x589a?
|
||||
#define USB_PID_SONY_UPCR20L 0xbcde
|
||||
#define USB_PID_SONY_UPDR80MD 0x03c3
|
||||
#define USB_PID_STRYKER_SDP1000 0x03c4
|
||||
#define USB_PID_SONY_UPDR80 0x03c5
|
||||
#define USB_PID_SONY_UPCX1 0x02d4
|
||||
|
||||
|
@ -644,6 +645,7 @@ struct dyesub_backend sonyupdneo_backend = {
|
|||
{ USB_VID_SONY, USB_PID_SONY_UPCR20L, P_SONY_UPCR20L, NULL, "sony-upcr20l"},
|
||||
{ USB_VID_SONY, USB_PID_SONY_UPDR80, P_SONY_UPDR80, NULL, "sony-updr80"},
|
||||
{ USB_VID_SONY, USB_PID_SONY_UPDR80MD, P_SONY_UPDR80, NULL, "sony-updr80md"},
|
||||
{ USB_VID_SONY, USB_PID_STRYKER_SDP1000, P_SONY_UPDR80, NULL, "stryker-sdp1000"},
|
||||
|
||||
{ 0, 0, 0, NULL, NULL}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue