]> git.donarmstrong.com Git - tmk_firmware.git/blobdiff - common/host.h
Remove MCU dependent code from common/keyboard.c
[tmk_firmware.git] / common / host.h
index 11b9aacd7cc50f89537ea3c614952dee72ac32f0..918af69e8f41242083912519d9486b16f758572a 100644 (file)
@@ -19,39 +19,39 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #define HOST_H
 
 #include <stdint.h>
+#include <stdbool.h>
 #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;
+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
+
 #endif