Fix raw hid define for chibios (#4460)
This commit is contained in:
parent
2f34252278
commit
87f06e7297
1 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ host_driver_t chibios_driver = {
|
||||||
void virtser_task(void);
|
void virtser_task(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef RAW_HID_ENABLE
|
#ifdef RAW_ENABLE
|
||||||
void raw_hid_task(void);
|
void raw_hid_task(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -220,7 +220,7 @@ int main(void) {
|
||||||
#ifdef VIRTSER_ENABLE
|
#ifdef VIRTSER_ENABLE
|
||||||
virtser_task();
|
virtser_task();
|
||||||
#endif
|
#endif
|
||||||
#ifdef RAW_HID_ENABLE
|
#ifdef RAW_ENABLE
|
||||||
raw_hid_task();
|
raw_hid_task();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue