tmk_keyboard/pjrc/usb_keyboard.h

20 lines
419 B
C
Raw Normal View History

#ifndef USB_KEYBOARD_H
#define USB_KEYBOARD_H 1
#include <stdint.h>
2010-10-23 18:17:26 +02:00
#include <stdbool.h>
2010-09-30 07:17:01 +02:00
#include "usb.h"
2011-02-12 16:15:51 +01:00
#include "host.h"
2010-11-03 09:33:20 +01: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;
2011-02-12 16:15:51 +01:00
int8_t usb_keyboard_send_report(report_keyboard_t *report);
void usb_keyboard_print_report(report_keyboard_t *report);
#endif