X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;ds=sidebyside;f=common%2Fhost.h;h=918af69e8f41242083912519d9486b16f758572a;hb=af556d39d2f5a1ee30c34ee65ecd5d1b7a519bdc;hp=26bf3c362f985cec8b70f29c77ac2b9f65792efe;hpb=c5060ea81942b0e3f8577536ff78402a19abe3d3;p=max%2Ftmk_keyboard.git diff --git a/common/host.h b/common/host.h index 26bf3c36..918af69e 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,24 @@ extern "C" { extern bool keyboard_nkro; #endif -extern report_keyboard_t *keyboard_report; -extern report_keyboard_t *keyboard_report_prev; +extern uint8_t keyboard_idle; +extern uint8_t keyboard_protocol; +/* 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