1234567891011121314151617181920212223242526272829303132 |
- #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
|