Skip to content

Commit

Permalink
Fix raw hid define for chibios (qmk#4460)
Browse files Browse the repository at this point in the history
  • Loading branch information
yiancar authored and mechmerlin committed Nov 21, 2018
1 parent 2f34252 commit 87f06e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tmk_core/protocol/chibios/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -220,7 +220,7 @@ int main(void) {
#ifdef VIRTSER_ENABLE
virtser_task();
#endif
#ifdef RAW_HID_ENABLE
#ifdef RAW_ENABLE
raw_hid_task();
#endif
}
Expand Down

0 comments on commit 87f06e7

Please sign in to comment.