Keyboard firmwares for Atmel AVR and Cortex-M
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

rn42.h 330B

123456789101112131415161718
  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. bool rn42_autoconnecting(void);
  9. void rn42_autoconnect(void);
  10. void rn42_disconnect(void);
  11. bool rn42_rts(void);
  12. void rn42_cts_hi(void);
  13. void rn42_cts_lo(void);
  14. #endif