2011-07-20 17:32:52 +02:00
|
|
|
/*
|
|
|
|
Copyright 2011 Jun Wako <wakojun@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-02-03 05:26:44 +01:00
|
|
|
#ifndef HOST_H
|
|
|
|
#define HOST_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2012-11-13 02:04:35 +01:00
|
|
|
#include <stdbool.h>
|
2011-09-17 15:39:50 +02:00
|
|
|
#include "report.h"
|
|
|
|
#include "host_driver.h"
|
2011-02-03 05:26:44 +01:00
|
|
|
|
|
|
|
|
2012-08-25 08:49:08 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-09-17 15:39:50 +02:00
|
|
|
#ifdef NKRO_ENABLE
|
2011-02-12 16:15:51 +01:00
|
|
|
extern bool keyboard_nkro;
|
|
|
|
#endif
|
|
|
|
|
2012-10-11 21:46:37 +02:00
|
|
|
/* report */
|
2011-02-10 07:51:30 +01:00
|
|
|
extern report_keyboard_t *keyboard_report;
|
2012-10-11 21:46:37 +02:00
|
|
|
extern report_mouse_t mouse_report;
|
2011-02-10 07:51:30 +01:00
|
|
|
|
|
|
|
|
2012-10-09 09:50:14 +02:00
|
|
|
/* host driver */
|
2011-09-17 15:39:50 +02:00
|
|
|
void host_set_driver(host_driver_t *driver);
|
|
|
|
host_driver_t *host_get_driver(void);
|
2012-10-09 09:50:14 +02:00
|
|
|
|
2012-10-11 21:46:37 +02:00
|
|
|
/* host driver interface */
|
2011-02-12 16:15:51 +01:00
|
|
|
uint8_t host_keyboard_leds(void);
|
2012-10-11 21:46:37 +02:00
|
|
|
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);
|
2011-02-12 16:15:51 +01:00
|
|
|
|
2012-10-11 21:46:37 +02:00
|
|
|
/* keyboard report utils */
|
2011-02-10 07:51:30 +01:00
|
|
|
void host_add_key(uint8_t key);
|
2012-05-27 07:04:28 +02:00
|
|
|
void host_del_key(uint8_t key);
|
2012-10-09 09:50:14 +02:00
|
|
|
void host_clear_keys(void);
|
2013-01-13 02:24:20 +01:00
|
|
|
|
|
|
|
uint8_t host_get_mods(void);
|
2012-12-15 18:32:07 +01:00
|
|
|
void host_add_mods(uint8_t mods);
|
|
|
|
void host_del_mods(uint8_t mods);
|
2011-02-10 07:51:30 +01:00
|
|
|
void host_set_mods(uint8_t mods);
|
2012-10-09 09:50:14 +02:00
|
|
|
void host_clear_mods(void);
|
2013-01-13 02:24:20 +01:00
|
|
|
|
2011-02-10 07:51:30 +01:00
|
|
|
uint8_t host_has_anykey(void);
|
2012-10-11 21:46:37 +02:00
|
|
|
uint8_t host_has_anymod(void);
|
2011-02-21 17:21:53 +01:00
|
|
|
uint8_t host_get_first_key(void);
|
2012-10-09 09:50:14 +02:00
|
|
|
void host_send_keyboard_report(void);
|
2011-02-10 07:51:30 +01:00
|
|
|
|
2012-10-11 21:46:37 +02:00
|
|
|
/* mouse report utils */
|
|
|
|
uint8_t host_mouse_in_use(void);
|
2011-02-10 07:51:30 +01:00
|
|
|
|
2012-10-11 21:46:37 +02:00
|
|
|
uint16_t host_last_sysytem_report(void);
|
|
|
|
uint16_t host_last_consumer_report(void);
|
2011-02-03 05:26:44 +01:00
|
|
|
|
2012-08-25 08:49:08 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-03 05:26:44 +01:00
|
|
|
#endif
|