X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=common%2Fhost.h;h=918af69e8f41242083912519d9486b16f758572a;hb=fa545c87f74833856761572ef631d20accc1d026;hp=a0a661af57aa6fd865dc457907a8345beee43c8b;hpb=71ac82337f803e8ec0c081b3221ac0ccf61035b0;p=tmk_firmware.git diff --git a/common/host.h b/common/host.h index a0a661a..918af69 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,39 +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); +/* host driver interface */ uint8_t host_keyboard_leds(void); - - -/* keyboard report operations */ -/* key */ -void host_add_key(uint8_t key); -void host_del_key(uint8_t key); -void host_clear_keys(void); -/* modifier */ -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_clear_mods(void); -/* query */ -uint8_t host_has_anykey(void); -uint8_t host_get_first_key(void); -/* send report */ -void host_send_keyboard_report(void); - - -/* send report: mouse, system contorl and consumer page */ +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