Merge pull request #1 from j000/bloody-v8

Bloody v8
This commit is contained in:
Mateusz "Maxmati
2015-11-28 16:15:50 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -142,6 +142,9 @@ void Mouse::listDevices() {
case BLOODY_V7_PID:
name = "Bloody V7";
break;
case BLOODY_V8_PID:
name = "Bloody V8";
break;
case BLOODY_R7_PID:
name = "Bloody R7";
break;

View File

@@ -11,9 +11,10 @@ static const int A4TECH_VID = 0x09da;
static const int BLOODY_V5_PID = 0x172A;
static const int BLOODY_V7_PID = 0xF613;
static const int BLOODY_V8_PID = 0x11F5;
static const int BLOODY_R7_PID = 0x1485;
static const int COMPATIBLE_PIDS[] = {BLOODY_V5_PID, BLOODY_V7_PID, BLOODY_R7_PID};
static const int COMPATIBLE_PIDS[] = {BLOODY_V5_PID, BLOODY_V7_PID, BLOODY_V8_PID, BLOODY_R7_PID};
static const size_t COMPATIBLE_PIDS_SIZE = sizeof(COMPATIBLE_PIDS)/sizeof(COMPATIBLE_PIDS[0]);
static const int A4TECH_MAGIC = 0x07;