diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-07-27 17:18:14 +0200 |
|---|---|---|
| committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-07-27 17:38:31 +0200 |
| commit | 0bfba7acc4e05e66c8ab448286fc51bc94d03a57 (patch) | |
| tree | 9552d87e289c4dcffd401decd6fd10d99ee5d35e /protocol | |
| parent | 7dde35d4f7cc3cc1569a31e752ea4043133b1a72 (diff) | |
| download | qmk_firmware-0bfba7acc4e05e66c8ab448286fc51bc94d03a57.tar.gz qmk_firmware-0bfba7acc4e05e66c8ab448286fc51bc94d03a57.zip | |
factored out serial_mouse_init() into serial_mouse.h
Diffstat (limited to 'protocol')
| -rw-r--r-- | protocol/serial_mouse.h | 9 | ||||
| -rw-r--r-- | protocol/serial_mouse_microsoft.c | 6 | ||||
| -rw-r--r-- | protocol/serial_mouse_mousesystems.c | 6 |
3 files changed, 8 insertions, 13 deletions
diff --git a/protocol/serial_mouse.h b/protocol/serial_mouse.h index c3c19d769..2ccd3d900 100644 --- a/protocol/serial_mouse.h +++ b/protocol/serial_mouse.h | |||
| @@ -20,7 +20,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 20 | 20 | ||
| 21 | #include <stdint.h> | 21 | #include <stdint.h> |
| 22 | 22 | ||
| 23 | uint8_t serial_mouse_init(void); | 23 | #include "serial.h" |
| 24 | |||
| 25 | static inline uint8_t serial_mouse_init(void) | ||
| 26 | { | ||
| 27 | serial_init(); | ||
| 28 | return 0; | ||
| 29 | } | ||
| 30 | |||
| 24 | void serial_mouse_task(void); | 31 | void serial_mouse_task(void); |
| 25 | 32 | ||
| 26 | #endif | 33 | #endif |
diff --git a/protocol/serial_mouse_microsoft.c b/protocol/serial_mouse_microsoft.c index 6b3f80648..f83036a31 100644 --- a/protocol/serial_mouse_microsoft.c +++ b/protocol/serial_mouse_microsoft.c | |||
| @@ -29,12 +29,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 29 | 29 | ||
| 30 | static void print_usb_data(const report_mouse_t *report); | 30 | static void print_usb_data(const report_mouse_t *report); |
| 31 | 31 | ||
| 32 | uint8_t serial_mouse_init(void) | ||
| 33 | { | ||
| 34 | serial_init(); | ||
| 35 | return 0; | ||
| 36 | } | ||
| 37 | |||
| 38 | void serial_mouse_task(void) | 32 | void serial_mouse_task(void) |
| 39 | { | 33 | { |
| 40 | /* 3 byte ring buffer */ | 34 | /* 3 byte ring buffer */ |
diff --git a/protocol/serial_mouse_mousesystems.c b/protocol/serial_mouse_mousesystems.c index 68b2b5b35..36c67386f 100644 --- a/protocol/serial_mouse_mousesystems.c +++ b/protocol/serial_mouse_mousesystems.c | |||
| @@ -31,12 +31,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 31 | 31 | ||
| 32 | static void print_usb_data(const report_mouse_t *report); | 32 | static void print_usb_data(const report_mouse_t *report); |
| 33 | 33 | ||
| 34 | uint8_t serial_mouse_init(void) | ||
| 35 | { | ||
| 36 | serial_init(); | ||
| 37 | return 0; | ||
| 38 | } | ||
| 39 | |||
| 40 | void serial_mouse_task(void) | 34 | void serial_mouse_task(void) |
| 41 | { | 35 | { |
| 42 | /* 5 byte ring buffer */ | 36 | /* 5 byte ring buffer */ |
