diff options
| author | tmk <nobody@nowhere> | 2011-01-02 23:52:13 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2011-01-02 23:52:13 +0900 |
| commit | 2a562a4191a5b9e88731efb5eabd921821f25f7e (patch) | |
| tree | 20f5bb311ff99ced3dd8ee2d9430e2fbe8183f7b /mousekey.h | |
| parent | 1ed336a06499c1baee2421141d59d115f0ee3c4b (diff) | |
| download | qmk_firmware-2a562a4191a5b9e88731efb5eabd921821f25f7e.tar.gz qmk_firmware-2a562a4191a5b9e88731efb5eabd921821f25f7e.zip | |
Add PS/2 mouse support to connect TrackPoint Unit.
Change build options: Makefile and config.h. See README.
Diffstat (limited to 'mousekey.h')
| -rw-r--r-- | mousekey.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mousekey.h b/mousekey.h new file mode 100644 index 000000000..c5d4561cd --- /dev/null +++ b/mousekey.h | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | #ifndef MOUSEKEY_H | ||
| 2 | #define MOUSEKEY_H | ||
| 3 | |||
| 4 | #include <stdbool.h> | ||
| 5 | |||
| 6 | void mousekey_decode(uint8_t code); | ||
| 7 | bool mousekey_changed(void); | ||
| 8 | void mousekey_usb_send(void); | ||
| 9 | |||
| 10 | #endif | ||
| 11 | |||
