summaryrefslogtreecommitdiff
path: root/usb.h
diff options
context:
space:
mode:
authortmk2011-01-17 21:51:51 +0900
committertmk2011-01-23 04:10:35 +0900
commitbf1a37ba712b3c42861e7cfabb174724791b41b6 (patch)
treef6df1afe42e3421ae3646fb981727f2e5aa1c3e9 /usb.h
parent7ad93f7850cd3d20260628b10a8b123d97736e4e (diff)
PS/2 to USB keyboard converter
Diffstat (limited to 'usb.h')
-rw-r--r--usb.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/usb.h b/usb.h
index 594f307db..85e0e33df 100644
--- a/usb.h
+++ b/usb.h
@@ -6,6 +6,9 @@
#include <avr/io.h>
+extern bool remote_wakeup;
+extern bool suspend;
+
void usb_init(void); // initialize everything
uint8_t usb_configured(void); // is the USB port configured
void usb_remote_wakeup(void);
@@ -85,8 +88,11 @@ void usb_remote_wakeup(void);
#define ENDPOINT_HALT 0
#define TEST_MODE 2
-
-extern bool remote_wakeup;
-extern bool suspend;
+// LEDS
+#define USB_LED_NUM_LOCK 0
+#define USB_LED_CAPS_LOCK 1
+#define USB_LED_SCROLL_LOCK 2
+#define USB_LED_COMPOSE 3
+#define USB_LED_KANA 4
#endif