You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
2.0 KiB

  1. /*
  2. Copyright 2017 Joshua Broekhuijsen <snipeye+qmk@gmail.com>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #include <stdint.h>
  15. #include "report.h"
  16. #include "host.h"
  17. #include "timer.h"
  18. #include "print.h"
  19. #include "debug.h"
  20. #include "pointing_device.h"
  21. static report_mouse_t mouseReport = {};
  22. __attribute__((weak)) void pointing_device_init(void) {
  23. // initialize device, if that needs to be done.
  24. }
  25. __attribute__((weak)) void pointing_device_send(void) {
  26. // If you need to do other things, like debugging, this is the place to do it.
  27. host_mouse_send(&mouseReport);
  28. // send it and 0 it out except for buttons, so those stay until they are explicity over-ridden using update_pointing_device
  29. mouseReport.x = 0;
  30. mouseReport.y = 0;
  31. mouseReport.v = 0;
  32. mouseReport.h = 0;
  33. }
  34. __attribute__((weak)) void pointing_device_task(void) {
  35. // gather info and put it in:
  36. // mouseReport.x = 127 max -127 min
  37. // mouseReport.y = 127 max -127 min
  38. // mouseReport.v = 127 max -127 min (scroll vertical)
  39. // mouseReport.h = 127 max -127 min (scroll horizontal)
  40. // mouseReport.buttons = 0x1F (decimal 31, binary 00011111) max (bitmask for mouse buttons 1-5, 1 is rightmost, 5 is leftmost) 0x00 min
  41. // send the report
  42. pointing_device_send();
  43. }
  44. report_mouse_t pointing_device_get_report(void) { return mouseReport; }
  45. void pointing_device_set_report(report_mouse_t newMouseReport) { mouseReport = newMouseReport; }