1
0
Fork 0

fixed adb_usb to comply new API.

This commit is contained in:
tmk 2011-02-21 23:05:28 +09:00
parent fb8d23c60c
commit c958b2d19b
8 changed files with 76 additions and 103 deletions

9
adb_usb/led.c Normal file
View file

@ -0,0 +1,9 @@
#include "stdint.h"
#include "adb.h"
#include "led.h"
void led_set(uint8_t usb_led)
{
adb_host_kbd_led(~usb_led);
}