qmk_firmware/keyboard/hhkb_rn42/rn42/rn42.h

20 lines
354 B
C
Raw Normal View History

2014-06-25 04:57:36 +00:00
#ifndef RN42_H
#define RN42_H
2014-06-30 19:29:45 +00:00
#include <stdbool.h>
2014-06-25 04:57:36 +00:00
host_driver_t rn42_driver;
2014-06-30 19:29:45 +00:00
host_driver_t rn42_config_driver;
void rn42_init(void);
void rn42_putc(uint8_t c);
2014-07-17 04:06:48 +00:00
bool rn42_autoconnecting(void);
2014-06-30 19:29:45 +00:00
void rn42_autoconnect(void);
void rn42_disconnect(void);
2014-07-17 04:06:48 +00:00
bool rn42_rts(void);
void rn42_cts_hi(void);
void rn42_cts_lo(void);
bool rn42_linked(void);
2014-06-25 04:57:36 +00:00
#endif