2015-04-09 18:32:04 +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/>.
|
|
|
|
*/
|
|
|
|
|
2019-01-21 05:16:36 +01:00
|
|
|
#pragma once
|
2015-04-09 18:32:04 +02:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "report.h"
|
|
|
|
#include "host_driver.h"
|
2019-11-06 01:42:16 +01:00
|
|
|
#include "led.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern uint8_t keyboard_idle;
|
|
|
|
extern uint8_t keyboard_protocol;
|
|
|
|
|
|
|
|
/* host driver */
|
2019-08-30 20:19:03 +02:00
|
|
|
void host_set_driver(host_driver_t *driver);
|
2015-04-09 18:32:04 +02:00
|
|
|
host_driver_t *host_get_driver(void);
|
|
|
|
|
|
|
|
/* host driver interface */
|
|
|
|
uint8_t host_keyboard_leds(void);
|
2019-11-06 01:42:16 +01:00
|
|
|
led_t host_keyboard_led_state(void);
|
2019-08-30 20:19:03 +02:00
|
|
|
void host_keyboard_send(report_keyboard_t *report);
|
2023-10-23 06:43:46 +02:00
|
|
|
void host_nkro_send(report_nkro_t *report);
|
2019-08-30 20:19:03 +02:00
|
|
|
void host_mouse_send(report_mouse_t *report);
|
2022-10-07 04:35:01 +02:00
|
|
|
void host_system_send(uint16_t usage);
|
|
|
|
void host_consumer_send(uint16_t usage);
|
2021-09-15 17:40:22 +02:00
|
|
|
void host_programmable_button_send(uint32_t data);
|
2015-04-09 18:32:04 +02:00
|
|
|
|
2022-10-07 04:35:01 +02:00
|
|
|
uint16_t host_last_system_usage(void);
|
|
|
|
uint16_t host_last_consumer_usage(void);
|
2015-04-09 18:32:04 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|