2011-07-20 15:32:52 +00: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 04:26:44 +00:00
|
|
|
#ifndef HOST_H
|
|
|
|
#define HOST_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2012-11-13 01:04:35 +00:00
|
|
|
#include <stdbool.h>
|
2011-09-17 13:39:50 +00:00
|
|
|
#include "report.h"
|
|
|
|
#include "host_driver.h"
|
2011-02-03 04:26:44 +00:00
|
|
|
|
|
|
|
|
2012-08-25 06:49:08 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-09-17 13:39:50 +00:00
|
|
|
#ifdef NKRO_ENABLE
|
2011-02-12 15:15:51 +00:00
|
|
|
extern bool keyboard_nkro;
|
|
|
|
#endif
|
|
|
|
|
2014-06-17 13:41:14 +00:00
|
|
|
extern uint8_t keyboard_idle;
|
|
|
|
extern uint8_t keyboard_protocol;
|
2014-04-25 06:32:21 +00:00
|
|
|
|
2011-02-10 06:51:30 +00:00
|
|
|
|
2012-10-09 07:50:14 +00:00
|
|
|
/* host driver */
|
2011-09-17 13:39:50 +00:00
|
|
|
void host_set_driver(host_driver_t *driver);
|
|
|
|
host_driver_t *host_get_driver(void);
|
2012-10-09 07:50:14 +00:00
|
|
|
|
2012-10-11 19:46:37 +00:00
|
|
|
/* host driver interface */
|
2011-02-12 15:15:51 +00:00
|
|
|
uint8_t host_keyboard_leds(void);
|
2012-10-11 19:46:37 +00: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 15:15:51 +00:00
|
|
|
|
2012-10-11 19:46:37 +00:00
|
|
|
uint16_t host_last_sysytem_report(void);
|
|
|
|
uint16_t host_last_consumer_report(void);
|
2011-02-03 04:26:44 +00:00
|
|
|
|
2012-08-25 06:49:08 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-03 04:26:44 +00:00
|
|
|
#endif
|