2010-09-23 11:23:50 +00:00
|
|
|
#ifndef USB_KEYBOARD_H
|
|
|
|
#define USB_KEYBOARD_H 1
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2010-10-23 16:17:26 +00:00
|
|
|
#include <stdbool.h>
|
2010-09-30 05:17:01 +00:00
|
|
|
#include "usb.h"
|
2011-02-12 15:15:51 +00:00
|
|
|
#include "host.h"
|
2010-09-23 11:23:50 +00:00
|
|
|
|
|
|
|
|
2010-11-03 08:33:20 +00:00
|
|
|
extern uint8_t usb_keyboard_protocol;
|
|
|
|
extern uint8_t usb_keyboard_idle_config;
|
|
|
|
extern uint8_t usb_keyboard_idle_count;
|
|
|
|
extern volatile uint8_t usb_keyboard_leds;
|
|
|
|
|
2010-12-07 16:47:57 +00:00
|
|
|
|
2011-02-12 15:15:51 +00:00
|
|
|
int8_t usb_keyboard_send_report(report_keyboard_t *report);
|
|
|
|
void usb_keyboard_print_report(report_keyboard_t *report);
|
2010-09-23 11:23:50 +00:00
|
|
|
|
|
|
|
#endif
|