Fixup Pointing device functions (#20311)

This commit is contained in:
Drashna Jaelre 2023-04-01 11:01:46 -07:00 committed by GitHub
parent 9359504255
commit bf986579dd
Failed to generate hash of commit
7 changed files with 15 additions and 15 deletions

View file

@ -713,7 +713,7 @@ _Note: The Cirque pinnacle track pad already implements a custom activation func
When using a custom pointing device (overwriting `pointing_device_task`) the following code should be somewhere in the `pointing_device_task_*` stack:
```c
void pointing_device_task(void) {
bool pointing_device_task(void) {
//...Custom pointing device task code
// handle automatic mouse layer (needs report_mouse_t as input)
@ -721,7 +721,7 @@ void pointing_device_task(void) {
//...More custom pointing device task code
pointing_device_send();
return pointing_device_send();
}
```