diff options
author | tmk <nobody@nowhere> | 2011-02-21 15:43:17 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-02-22 03:09:14 +0900 |
commit | fb8d23c60c757d5d9c2270cb0123a53be2049a28 (patch) | |
tree | 2f5d695f9d501468dc83f4861e7367cdf905ed3f /ps2_usb/led.c | |
parent | 47f5d8b545eec12ca74d8e7048bb5daa290d937e (diff) |
integrate V-USB support into ps2_usb
Diffstat (limited to 'ps2_usb/led.c')
-rw-r--r-- | ps2_usb/led.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ps2_usb/led.c b/ps2_usb/led.c new file mode 100644 index 0000000000..d69b1c6759 --- /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); +} |