You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

rn42.h 252B

123456789101112131415
  1. #ifndef RN42_H
  2. #define RN42_H
  3. #include <stdbool.h>
  4. host_driver_t rn42_driver;
  5. host_driver_t rn42_config_driver;
  6. void rn42_init(void);
  7. void rn42_putc(uint8_t c);
  8. void rn42_autoconnect(void);
  9. void rn42_disconnect(void);
  10. bool rn42_ready(void);
  11. #endif