Fix references to `mouse_report_t` (which doesnt exist) (#19107)
parent
8449a4a11f
commit
fe652e6247
|
@ -332,10 +332,10 @@ The following configuration options are only available when using `SPLIT_POINTIN
|
|||
| `pointing_device_handle_buttons(buttons, pressed, button)` | Callback to handle hardware button presses. Returns a `uint8_t`. |
|
||||
| `pointing_device_get_cpi(void)` | Gets the current CPI/DPI setting from the sensor, if supported. |
|
||||
| `pointing_device_set_cpi(uint16_t)` | Sets the CPI/DPI, if supported. |
|
||||
| `pointing_device_get_report(void)` | Returns the current mouse report (as a `mouse_report_t` data structure). |
|
||||
| `pointing_device_set_report(mouse_report)` | Sets the mouse report to the assigned `mouse_report_t` data structured passed to the function. |
|
||||
| `pointing_device_get_report(void)` | Returns the current mouse report (as a `report_mouse_t` data structure). |
|
||||
| `pointing_device_set_report(mouse_report)` | Sets the mouse report to the assigned `report_mouse_t` data structured passed to the function. |
|
||||
| `pointing_device_send(void)` | Sends the current mouse report to the host system. Function can be replaced. |
|
||||
| `has_mouse_report_changed(new_report, old_report)` | Compares the old and new `mouse_report_t` data and returns true only if it has changed. |
|
||||
| `has_mouse_report_changed(new_report, old_report)` | Compares the old and new `report_mouse_t` data and returns true only if it has changed. |
|
||||
| `pointing_device_adjust_by_defines(mouse_report)` | Applies rotations and invert configurations to a raw mouse report. |
|
||||
|
||||
|
||||
|
@ -345,9 +345,9 @@ The combined functions below are only available when using `SPLIT_POINTING_ENABL
|
|||
|
||||
| Function | Description |
|
||||
| --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `pointing_device_set_shared_report(mouse_report)` | Sets the shared mouse report to the assigned `mouse_report_t` data structured passed to the function. |
|
||||
| `pointing_device_set_shared_report(mouse_report)` | Sets the shared mouse report to the assigned `report_mouse_t` data structured passed to the function. |
|
||||
| `pointing_device_set_cpi_on_side(bool, uint16_t)` | Sets the CPI/DPI of one side, if supported. Passing `true` will set the left and `false` the right |
|
||||
| `pointing_device_combine_reports(left_report, right_report)` | Returns a combined mouse_report of left_report and right_report (as a `mouse_report_t` data structure) |
|
||||
| `pointing_device_combine_reports(left_report, right_report)` | Returns a combined mouse_report of left_report and right_report (as a `report_mouse_t` data structure) |
|
||||
| `pointing_device_task_combined_kb(left_report, right_report)` | Callback, so keyboard code can intercept and modify the data. Returns a combined mouse report. |
|
||||
| `pointing_device_task_combined_user(left_report, right_report)` | Callback, so user code can intercept and modify. Returns a combined mouse report using `pointing_device_combine_reports` |
|
||||
| `pointing_device_adjust_by_defines_right(mouse_report)` | Applies right side rotations and invert configurations to a raw mouse report. |
|
||||
|
|
|
@ -75,7 +75,7 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
|
|||
#ifdef MOUSEKEY_ENABLE
|
||||
tap_code(clockwise ? KC_WH_U : KC_WH_D);
|
||||
#else
|
||||
mouse_report_t mouse_report = pointing_device_get_report();
|
||||
report_mouse_t mouse_report = pointing_device_get_report();
|
||||
mouse_report.v = clockwise ? 1 : -1;
|
||||
pointing_device_set_report(mouse_report);
|
||||
pointing_device_send();
|
||||
|
|
|
@ -75,7 +75,7 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
|
|||
#ifdef MOUSEKEY_ENABLE
|
||||
tap_code(clockwise ? KC_WH_U : KC_WH_D);
|
||||
#else
|
||||
mouse_report_t mouse_report = pointing_device_get_report();
|
||||
report_mouse_t mouse_report = pointing_device_get_report();
|
||||
mouse_report.v = clockwise ? 1 : -1;
|
||||
pointing_device_set_report(mouse_report);
|
||||
pointing_device_send();
|
||||
|
|
|
@ -83,7 +83,7 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
|
|||
#ifdef MOUSEKEY_ENABLE
|
||||
tap_code(clockwise ? KC_WH_U : KC_WH_D);
|
||||
#else
|
||||
mouse_report_t mouse_report = pointing_device_get_report();
|
||||
report_mouse_t mouse_report = pointing_device_get_report();
|
||||
mouse_report.v = clockwise ? 1 : -1;
|
||||
pointing_device_set_report(mouse_report);
|
||||
pointing_device_send();
|
||||
|
|
|
@ -67,7 +67,7 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
|
|||
#ifdef MOUSEKEY_ENABLE
|
||||
tap_code(clockwise ? KC_WH_U : KC_WH_D);
|
||||
#else
|
||||
mouse_report_t mouse_report = pointing_device_get_report();
|
||||
report_mouse_t mouse_report = pointing_device_get_report();
|
||||
mouse_report.v = clockwise ? 1 : -1;
|
||||
pointing_device_set_report(mouse_report);
|
||||
pointing_device_send();
|
||||
|
|
Loading…
Reference in New Issue