Remove "debugging LED" from USBHost.cpp

pull/93/head
Bogdan Marinescu 2013-10-16 15:55:04 +03:00
parent 1c088eed13
commit 26ac4e5288
1 changed files with 0 additions and 3 deletions

View File

@ -28,8 +28,6 @@ USBHost * USBHost::instHost = NULL;
#define MIN(a, b) ((a > b) ? b : a)
DigitalOut l4(LED4);
/**
* How interrupts are processed:
* - new device connected:
@ -72,7 +70,6 @@ void USBHost::usb_process() {
if (evt.status == osEventMail) {
l4 = !l4;
message_t * usb_msg = (message_t*)evt.value.p;
switch (usb_msg->event_id) {