selphyneo: Add USB ID for new SELPHY CP1500

This commit is contained in:
Solomon Peachy 2022-10-10 15:03:09 -04:00
parent a9bd694245
commit 78179680a3
2 changed files with 5 additions and 9 deletions

10
README
View File

@ -25,7 +25,7 @@
Supported Printers:
Canon SELPHY ES series
Canon SELPHY CP series (except CP1500)
Canon SELPHY CP series
Ciaat Brava 21
Citizen CW-01
Citizen CW-02 / OP900II
@ -447,7 +447,7 @@
Model IDs recognized:
canon-cp820 canon-cp910 canon-cp1000 canon-cp1200 canon-cp1300
canon-cp820 canon-cp910 canon-cp1000 canon-cp1200 canon-cp1300 canon-cp1500
Model IDs for backwards compatibility with older releases:
@ -459,11 +459,7 @@
Untested, but expected to work:
CP820, CP910
Not supported (Unknown USB VID/PID):
CP1500
CP820, CP910, CP1500
Valid commands:

View File

@ -534,7 +534,7 @@ static const char *canonselphyneo_prefixes[] = {
const struct dyesub_backend canonselphyneo_backend = {
.name = "Canon SELPHY CP (new)",
.version = "0.23",
.version = "0.24",
.uri_prefixes = canonselphyneo_prefixes,
.cmdline_usage = selphyneo_cmdline,
.cmdline_arg = selphyneo_cmdline_arg,
@ -550,7 +550,7 @@ const struct dyesub_backend canonselphyneo_backend = {
{ 0x04a9, 0x32ae, P_CP910, NULL, "canon-cp1000"},
{ 0x04a9, 0x32b1, P_CP910, NULL, "canon-cp1200"},
{ 0x04a9, 0x32db, P_CP910, NULL, "canon-cp1300"},
// { 0x04a9, 0x32db, P_CP910, NULL, "canon-cp1500"},
{ 0x04a9, 0x3302, P_CP910, NULL, "canon-cp1500"},
{ 0, 0, 0, NULL, NULL}
}
};