X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=common%2Fhost.h;h=8ff26298527587f50347e5ef6160c7a54991eb70;hb=76c7ebebd7a7b55d2eddabc7bb7978a904f5706f;hp=11b9aacd7cc50f89537ea3c614952dee72ac32f0;hpb=62d1ebb91c7b381ce3d88aad9ee0b03bea9fce26;p=tmk_firmware.git diff --git a/common/host.h b/common/host.h index 11b9aac..8ff2629 100644 --- a/common/host.h +++ b/common/host.h @@ -19,39 +19,36 @@ along with this program. If not, see . #define HOST_H #include +#include #include "report.h" #include "host_driver.h" +#ifdef __cplusplus +extern "C" { +#endif + #ifdef NKRO_ENABLE extern bool keyboard_nkro; #endif -extern report_keyboard_t *keyboard_report; -extern report_keyboard_t *keyboard_report_prev; - +/* host driver */ void host_set_driver(host_driver_t *driver); host_driver_t *host_get_driver(void); -uint8_t host_keyboard_leds(void); -/* keyboard report operations */ -void host_add_key(uint8_t key); -void host_del_key(uint8_t key); -void host_add_mod_bit(uint8_t mod); -void host_del_mod_bit(uint8_t mod); -void host_set_mods(uint8_t mods); -void host_add_code(uint8_t code); -void host_del_code(uint8_t code); -void host_swap_keyboard_report(void); -void host_clear_keyboard_report(void); -uint8_t host_has_anykey(void); -uint8_t host_get_first_key(void); - - -void host_send_keyboard_report(void); +/* host driver interface */ +uint8_t host_keyboard_leds(void); +void host_keyboard_send(report_keyboard_t *report); void host_mouse_send(report_mouse_t *report); void host_system_send(uint16_t data); void host_consumer_send(uint16_t data); +uint16_t host_last_sysytem_report(void); +uint16_t host_last_consumer_report(void); + +#ifdef __cplusplus +} +#endif + #endif