2 * (c) 2015 flabberast <s3+flabbergast@sdfeu.org>
4 * Based on the following work:
5 * - Guillaume Duc's raw hid example (MIT License)
6 * https://github.com/guiduc/usb-hid-chibios-example
7 * - PJRC Teensy examples (MIT License)
8 * https://www.pjrc.com/teensy/usb_keyboard.html
9 * - hasu's TMK keyboard code (GPL v2 and some code Modified BSD)
10 * https://github.com/tmk/tmk_keyboard/
11 * - ChibiOS demo code (Apache 2.0 License)
12 * http://www.chibios.org
14 * Since some GPL'd code is used, this work is licensed under
23 // extern uint8_t blinkLed;
28 /* -------------------------
29 * General USB driver header
30 * -------------------------
33 /* The USB driver to use */
34 #define USB_DRIVER USBD1
36 /* Initialize the USB driver and bus */
37 void init_usb_driver(USBDriver *usbp);
39 /* Send remote wakeup packet */
40 void send_remote_wakeup(USBDriver *usbp);
47 /* main keyboard (6kro) */
48 #define KBD_INTERFACE 0
49 #define KBD_ENDPOINT 1
51 #define KBD_REPORT_KEYS (KBD_EPSIZE - 2)
53 /* secondary keyboard */
55 #define NKRO_INTERFACE 4
56 #define NKRO_ENDPOINT 5
57 #define NKRO_EPSIZE 16
58 #define NKRO_REPORT_KEYS (NKRO_EPSIZE - 1)
61 /* extern report_keyboard_t keyboard_report_sent; */
63 /* keyboard IN request callback handler */
64 void kbd_in_cb(USBDriver *usbp, usbep_t ep);
66 /* start-of-frame handler */
67 void kbd_sof_cb(USBDriver *usbp);
70 /* nkro IN callback hander */
71 void nkro_in_cb(USBDriver *usbp, usbep_t ep);
72 #endif /* NKRO_ENABLE */
81 #define MOUSE_INTERFACE 1
82 #define MOUSE_ENDPOINT 2
83 #define MOUSE_EPSIZE 8
85 /* mouse IN request callback handler */
86 void mouse_in_cb(USBDriver *usbp, usbep_t ep);
87 #endif /* MOUSE_ENABLE */
94 #ifdef EXTRAKEY_ENABLE
96 #define EXTRA_INTERFACE 3
97 #define EXTRA_ENDPOINT 4
98 #define EXTRA_EPSIZE 8
100 /* extrakey IN request callback handler */
101 void extra_in_cb(USBDriver *usbp, usbep_t ep);
103 /* extra report structure */
107 } __attribute__ ((packed)) report_extra_t;
108 #endif /* EXTRAKEY_ENABLE */
115 #ifdef CONSOLE_ENABLE
117 #define CONSOLE_INTERFACE 2
118 #define CONSOLE_ENDPOINT 3
119 #define CONSOLE_EPSIZE 16
121 /* Number of IN reports that can be stored inside the output queue */
122 #define CONSOLE_QUEUE_CAPACITY 4
124 /* Console flush time */
125 #define CONSOLE_FLUSH_MS 50
127 /* Putchar over the USB console */
128 int8_t sendchar(uint8_t c);
130 /* Flush output (send everything immediately) */
131 void console_flush_output(void);
133 /* console IN request callback handler */
134 void console_in_cb(USBDriver *usbp, usbep_t ep);
135 #endif /* CONSOLE_ENABLE */
137 void sendchar_pf(void *p, char c);
139 #endif /* _USB_MAIN_H_ */