Detect ICCC as a reader

This commit is contained in:
Matt Bilker 2018-09-06 17:42:45 +00:00
parent 4c5ea185cb
commit 4ead179876
No known key found for this signature in database
GPG Key ID: 69ADF8AEB6C8B5D1
1 changed files with 4 additions and 1 deletions

View File

@ -445,6 +445,9 @@ reader_type_t ACIO::getReaderType( HANDLE hSerial, unsigned int id )
if (strcmp(code, "ICCB") == 0) {
return TYPE_READER;
}
if (strcmp(code, "ICCC") == 0) {
return TYPE_READER;
}
if (strcmp(code, "HBHI") == 0) {
return TYPE_DISPENSER;
}