diff options
author | Joshua Liu <joshua.liu@sourceobby.com> | 2025-06-19 23:06:49 -0400 |
---|---|---|
committer | Joshua Liu <joshua.liu@sourceobby.com> | 2025-06-19 23:06:49 -0400 |
commit | 4141d9b0dd04200aee0a2fee893081665bafdd8a (patch) | |
tree | 507a0c5050bdc8b422cf79e2c0c4c50664efc2ea /devdetails.h | |
parent | 01b75df8550289f9b6a4910a5448c740b912f2bb (diff) |
feat: removed more unnecessary macro constants and moved enumeration declaration into devdetails.hmaster
Diffstat (limited to 'devdetails.h')
-rw-r--r-- | devdetails.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devdetails.h b/devdetails.h index a9e21bd..101f394 100644 --- a/devdetails.h +++ b/devdetails.h @@ -1,8 +1,6 @@ #define MINI_VENID 0x0fd9 #define MINI_PROID 0x0063 -#define MINI_KEYS 6 - static unsigned char BLANK_KEY_IMAGE[] = { 0x42, 0x4d, 0xf6, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x28, 0x00, @@ -12,3 +10,5 @@ static unsigned char BLANK_KEY_IMAGE[] = { 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; + +enum numkeys {STREAMDECK_ORIG = 12, STREAMDECK_MINI = 6}; |