diff options
Diffstat (limited to 'converter/adb_usb/led.c')
-rw-r--r-- | converter/adb_usb/led.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/converter/adb_usb/led.c b/converter/adb_usb/led.c index 0e162f379b..1e7911f942 100644 --- a/converter/adb_usb/led.c +++ b/converter/adb_usb/led.c @@ -15,12 +15,15 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "stdint.h" +#include <stdint.h> +#include <util/delay.h> #include "adb.h" #include "led.h" void led_set(uint8_t usb_led) { + // need a wait to send command without miss + _delay_ms(100); adb_host_kbd_led(~usb_led); } |