2014-06-24 21:57:36 -07:00
|
|
|
#ifndef RN42_H
|
|
|
|
#define RN42_H
|
|
|
|
|
2014-06-30 12:29:45 -07:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2014-06-24 21:57:36 -07:00
|
|
|
host_driver_t rn42_driver;
|
2014-06-30 12:29:45 -07:00
|
|
|
host_driver_t rn42_config_driver;
|
|
|
|
|
|
|
|
void rn42_init(void);
|
2015-01-10 09:39:32 -08:00
|
|
|
int16_t rn42_getc(void);
|
2015-01-11 11:32:53 -08:00
|
|
|
const char *rn42_gets(uint16_t timeout);
|
2014-06-30 12:29:45 -07:00
|
|
|
void rn42_putc(uint8_t c);
|
2015-01-10 09:39:32 -08:00
|
|
|
void rn42_puts(char *s);
|
2014-07-16 21:06:48 -07:00
|
|
|
bool rn42_autoconnecting(void);
|
2014-06-30 12:29:45 -07:00
|
|
|
void rn42_autoconnect(void);
|
|
|
|
void rn42_disconnect(void);
|
2014-07-16 21:06:48 -07:00
|
|
|
bool rn42_rts(void);
|
|
|
|
void rn42_cts_hi(void);
|
|
|
|
void rn42_cts_lo(void);
|
2014-07-22 20:23:00 -07:00
|
|
|
bool rn42_linked(void);
|
2014-09-21 22:20:49 -07:00
|
|
|
void rn42_set_leds(uint8_t l);
|
2014-06-24 21:57:36 -07:00
|
|
|
|
|
|
|
#endif
|