summaryrefslogtreecommitdiff
path: root/ps2_usb/led.c
diff options
context:
space:
mode:
authortmk2011-02-21 15:43:17 +0900
committertmk2011-02-22 03:09:14 +0900
commitfb8d23c60c757d5d9c2270cb0123a53be2049a28 (patch)
tree2f5d695f9d501468dc83f4861e7367cdf905ed3f /ps2_usb/led.c
parent47f5d8b545eec12ca74d8e7048bb5daa290d937e (diff)
integrate V-USB support into ps2_usb
Diffstat (limited to 'ps2_usb/led.c')
-rw-r--r--ps2_usb/led.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/ps2_usb/led.c b/ps2_usb/led.c
new file mode 100644
index 000000000..d69b1c675
--- /dev/null
+++ b/ps2_usb/led.c
@@ -0,0 +1,16 @@
+#include "stdint.h"
+#include "ps2.h"
+#include "led.h"
+
+
+void led_set(uint8_t usb_led)
+{
+ uint8_t ps2_led = 0;
+ if (usb_led & (1<<USB_LED_SCROLL_LOCK))
+ ps2_led |= (1<<PS2_LED_SCROLL_LOCK);
+ if (usb_led & (1<<USB_LED_NUM_LOCK))
+ ps2_led |= (1<<PS2_LED_NUM_LOCK);
+ if (usb_led & (1<<USB_LED_CAPS_LOCK))
+ ps2_led |= (1<<PS2_LED_CAPS_LOCK);
+ ps2_host_set_led(ps2_led);
+}