You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
330 B
C
19 lines
330 B
C
#ifndef RN42_H
|
|
#define RN42_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
host_driver_t rn42_driver;
|
|
host_driver_t rn42_config_driver;
|
|
|
|
void rn42_init(void);
|
|
void rn42_putc(uint8_t c);
|
|
bool rn42_autoconnecting(void);
|
|
void rn42_autoconnect(void);
|
|
void rn42_disconnect(void);
|
|
bool rn42_rts(void);
|
|
void rn42_cts_hi(void);
|
|
void rn42_cts_lo(void);
|
|
|
|
#endif
|