123456789101112131415161718192021222324252627282930313233 |
- #ifndef SERIAL_MOUSE_H
- #define SERIAL_MOUSE_H
- #include <stdint.h>
- #include "serial.h"
- static inline uint8_t serial_mouse_init(void)
- {
- serial_init();
- return 0;
- }
- void serial_mouse_task(void);
- #endif
|