s2145: Add support for the Olmec OP1000
parent
9420bef7e1
commit
34ee1f2305
4
README
4
README
|
@ -63,6 +63,7 @@
|
|||
Mitsubishi CP-M15
|
||||
Mitsubishi P95DW
|
||||
Mitsubishi P93DW
|
||||
Olmec OP1000
|
||||
Shinko CHC-S1245 (aka Sinfonia E1 and DNP Q8)
|
||||
Shinko CHC-S2145 (aka Sinfonia S2)
|
||||
Shinko CHC-S6145 (aka Sinfonia CS2)
|
||||
|
@ -626,11 +627,12 @@
|
|||
|
||||
Model IDs recognized:
|
||||
|
||||
shinko-chcs2145 sinfonia-chcs2145
|
||||
shinko-chcs2145 sinfonia-chcs2145 olmec-op1000
|
||||
|
||||
Verified supported printers:
|
||||
|
||||
Shinko CHC-S2145 (aka "Sinfonia S2")
|
||||
Olmec OP1000
|
||||
|
||||
Development was sponsored in part by:
|
||||
|
||||
|
|
|
@ -1222,7 +1222,7 @@ static const char *shinkos2145_prefixes[] = {
|
|||
|
||||
const struct dyesub_backend shinkos2145_backend = {
|
||||
.name = "Shinko/Sinfonia CHC-S2145/S2",
|
||||
.version = "0.67" " (lib " LIBSINFONIA_VER ")",
|
||||
.version = "0.68" " (lib " LIBSINFONIA_VER ")",
|
||||
.uri_prefixes = shinkos2145_prefixes,
|
||||
.cmdline_usage = shinkos2145_cmdline,
|
||||
.cmdline_arg = shinkos2145_cmdline_arg,
|
||||
|
@ -1237,6 +1237,7 @@ const struct dyesub_backend shinkos2145_backend = {
|
|||
.devices = {
|
||||
{ 0x10ce, 0x000e, P_SHINKO_S2145, NULL, "shinko-chcs2145"},
|
||||
{ 0x10ce, 0x000e, P_SHINKO_S2145, NULL, "sinfonia-chcs2145"}, /* Duplicate */
|
||||
{ 0x10ce, 0x0011, P_SHINKO_S2145, NULL, "olmec-op1000"},
|
||||
{ 0, 0, 0, NULL, NULL}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue