diff options
author | tmk <nobody@nowhere> | 2012-10-21 22:12:36 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-10-21 22:12:36 +0900 |
commit | edce1d19a6af040df994243e7b6b1851e3eccebc (patch) | |
tree | 3f8d385a39979dcabdefea019e9671503cda8eba /converter/sun_usb/led.c | |
parent | 454f7bc71657020d0574e849dad92a14e71230c4 (diff) |
Add LED feature to Sun converter
Diffstat (limited to 'converter/sun_usb/led.c')
-rw-r--r-- | converter/sun_usb/led.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/converter/sun_usb/led.c b/converter/sun_usb/led.c index 5490ec0c62..48c3f1c2b2 100644 --- a/converter/sun_usb/led.c +++ b/converter/sun_usb/led.c @@ -16,10 +16,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "stdint.h" +#include "serial.h" #include "led.h" void led_set(uint8_t usb_led) { - // not supported now + uint8_t sun_led = 0; + if (usb_led & (1<<USB_LED_NUM_LOCK)) sun_led |= (1<<0); + if (usb_led & (1<<USB_LED_COMPOSE)) sun_led |= (1<<1); + if (usb_led & (1<<USB_LED_SCROLL_LOCK)) sun_led |= (1<<2); + if (usb_led & (1<<USB_LED_CAPS_LOCK)) sun_led |= (1<<3); + + serial_send(0x0E); + serial_send(sun_led); } |