diff options
| author | yiancar <yiangosyiangou@cytanet.com.cy> | 2018-11-21 15:12:40 -0800 |
|---|---|---|
| committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2018-11-21 15:12:40 -0800 |
| commit | 87f06e7297c10020912beaba10013f11d2e8e570 (patch) | |
| tree | bb2a09a6ce994c7b2d752879c50a7d49ccc9b6d3 /tmk_core/protocol/chibios/main.c | |
| parent | 2f34252278280c34b6958066240e38a2ee6a7237 (diff) | |
| download | qmk_firmware-87f06e7297c10020912beaba10013f11d2e8e570.tar.gz qmk_firmware-87f06e7297c10020912beaba10013f11d2e8e570.zip | |
Fix raw hid define for chibios (#4460)
Diffstat (limited to 'tmk_core/protocol/chibios/main.c')
| -rw-r--r-- | tmk_core/protocol/chibios/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c index 6cceccd23..ee9571c95 100644 --- a/tmk_core/protocol/chibios/main.c +++ b/tmk_core/protocol/chibios/main.c | |||
| @@ -75,7 +75,7 @@ host_driver_t chibios_driver = { | |||
| 75 | void virtser_task(void); | 75 | void virtser_task(void); |
| 76 | #endif | 76 | #endif |
| 77 | 77 | ||
| 78 | #ifdef RAW_HID_ENABLE | 78 | #ifdef RAW_ENABLE |
| 79 | void raw_hid_task(void); | 79 | void raw_hid_task(void); |
| 80 | #endif | 80 | #endif |
| 81 | 81 | ||
| @@ -220,7 +220,7 @@ int main(void) { | |||
| 220 | #ifdef VIRTSER_ENABLE | 220 | #ifdef VIRTSER_ENABLE |
| 221 | virtser_task(); | 221 | virtser_task(); |
| 222 | #endif | 222 | #endif |
| 223 | #ifdef RAW_HID_ENABLE | 223 | #ifdef RAW_ENABLE |
| 224 | raw_hid_task(); | 224 | raw_hid_task(); |
| 225 | #endif | 225 | #endif |
| 226 | } | 226 | } |
