]> git.donarmstrong.com Git - tmk_firmware.git/blob - keyboard/hhkb_rn42/rn42.h
Add RN-42 Bluetooth module support
[tmk_firmware.git] / keyboard / hhkb_rn42 / rn42.h
1 #ifndef RN42_H
2 #define RN42_H
3
4 #include <stdbool.h>
5
6 host_driver_t rn42_driver;
7 host_driver_t rn42_config_driver;
8
9 void rn42_init(void);
10 void rn42_putc(uint8_t c);
11 void rn42_autoconnect(void);
12 void rn42_disconnect(void);
13 bool rn42_ready(void);
14
15 #endif