From 894b7a98b8e1dd82261c9400d0a75c1ca5d6c542 Mon Sep 17 00:00:00 2001 From: vhaudiquet Date: Wed, 27 Sep 2023 20:29:00 +0200 Subject: [PATCH] driver: g-wolves hsk support fix --- drivers/g-wolves/g-wolves.c | 6 ++++++ drivers/g-wolves/g-wolves.h | 1 + 2 files changed, 7 insertions(+) diff --git a/drivers/g-wolves/g-wolves.c b/drivers/g-wolves/g-wolves.c index 72f0a13..f762418 100644 --- a/drivers/g-wolves/g-wolves.c +++ b/drivers/g-wolves/g-wolves.c @@ -60,6 +60,12 @@ uint32_t driver_getkey(void) case 4: id = HTS_PLUS_4K_PRODUCT_ID_WIRELESS; break; + case 5: + id = HSK_PRO_ACE_PRODUCT_ID_WIRED; + break; + case 6: + id = HSK_PRO_ACE_PRODUCT_ID_WIRELESS; + break; default: id = 0; } diff --git a/drivers/g-wolves/g-wolves.h b/drivers/g-wolves/g-wolves.h index dd2ec2f..53e7951 100644 --- a/drivers/g-wolves/g-wolves.h +++ b/drivers/g-wolves/g-wolves.h @@ -7,6 +7,7 @@ #include #include #include +#include // Devices #include "devices/htx.h"