aboutsummaryrefslogtreecommitdiffstats
path: root/adb_usb/led.c
blob: 93009a52fe6f02660b7a5ff4a44ee4c94ff5f707 (plain)
1
2
3
4
5
6
7
8
9
#include "stdint.h"
#include "adb.h"
#include "led.h"


void led_set(uint8_t usb_led)
{
    adb_host_kbd_led(~usb_led);
}