aboutsummaryrefslogtreecommitdiff
path: root/protocol/serial_mouse.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocol/serial_mouse.h')
-rw-r--r--protocol/serial_mouse.h9
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
23uint8_t serial_mouse_init(void); 23#include "serial.h"
24
25static inline uint8_t serial_mouse_init(void)
26{
27 serial_init();
28 return 0;
29}
30
24void serial_mouse_task(void); 31void serial_mouse_task(void);
25 32
26#endif 33#endif