X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=common%2Fhost.h;h=8ff26298527587f50347e5ef6160c7a54991eb70;hb=6d76e600958c72491c3a9eda661d23076dde38b0;hp=26bf3c362f985cec8b70f29c77ac2b9f65792efe;hpb=c5060ea81942b0e3f8577536ff78402a19abe3d3;p=max%2Ftmk_keyboard.git diff --git a/common/host.h b/common/host.h index 26bf3c36..8ff26298 100644 --- a/common/host.h +++ b/common/host.h @@ -19,6 +19,7 @@ along with this program. If not, see . #define HOST_H #include +#include #include "report.h" #include "host_driver.h" @@ -31,33 +32,21 @@ extern "C" { 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