summaryrefslogtreecommitdiffstats
path: root/protocol/serial_mouse_mousesystems.c
Commit message (Collapse)AuthorAgeFilesLines
* updated copyrights: serial_mouse.h, serial_mouse_microsoft.c and ↵Robin Haberkorn2014-07-271-1/+1
| | | | serial_mouse_mousesystems.c are new
* serial_mouse: simplified clipping of X/Y/V/H changes below -127 using a MAX ↵Robin Haberkorn2014-07-271-16/+13
| | | | macro
* factored out serial_mouse_init() into serial_mouse.hRobin Haberkorn2014-07-271-6/+0
|
* integrated serial mouse drivers as a feature into the firmware architectureRobin Haberkorn2014-07-271-1/+1
| | | | | | | | | * can be enabled by defining Makefile macro SERIAL_MOUSE_MICROSOFT_ENABLE or SERIAL_MOUSE_MOUSESYSTEMS_ENABLE. * Serial implementation can be chosen via SERIAL_MOUSE_USE_SOFT and SERIAL_MOUSE_USE_UART macros * UART configuration still has to be done in config.h: I added working clauses for both mouse protocols to ps2_usb's config.h
* added serial mouse driver for Microsoft and Mousesystems miceRobin Haberkorn2014-07-271-0/+140
* Both drivers use the interface defined in serial_mouse.h * They should work with any UART implementation (hardware/software UART) * The Microsoft driver is currently untested. The Mousesystems driver is confirmed to work.