summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryiancar <yiangosyiangou@cytanet.com.cy>2018-11-21 15:12:40 -0800
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2018-11-21 15:12:40 -0800
commit87f06e7297c10020912beaba10013f11d2e8e570 (patch)
treebb2a09a6ce994c7b2d752879c50a7d49ccc9b6d3
parent2f34252278280c34b6958066240e38a2ee6a7237 (diff)
Fix raw hid define for chibios (#4460)0.6.182
-rw-r--r--tmk_core/protocol/chibios/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c
index 6cceccd23c..ee9571c950 100644
--- a/tmk_core/protocol/chibios/main.c
+++ b/tmk_core/protocol/chibios/main.c
@@ -75,7 +75,7 @@ host_driver_t chibios_driver = {
void virtser_task(void);
#endif
-#ifdef RAW_HID_ENABLE
+#ifdef RAW_ENABLE
void raw_hid_task(void);
#endif
@@ -220,7 +220,7 @@ int main(void) {
#ifdef VIRTSER_ENABLE
virtser_task();
#endif
-#ifdef RAW_HID_ENABLE
+#ifdef RAW_ENABLE
raw_hid_task();
#endif
}