diff options
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 c3c19d7696..2ccd3d900c 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/>. #include <stdint.h> -uint8_t serial_mouse_init(void); +#include "serial.h" + +static inline uint8_t serial_mouse_init(void) +{ + serial_init(); + return 0; +} + void serial_mouse_task(void); #endif |