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/serial_mouse.h | |
| 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/serial_mouse.h')
| -rw-r--r-- | protocol/serial_mouse.h | 9 |
1 files changed, 8 insertions, 1 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 |
