Skip to content

Commit 26ac4e5

Browse files
committed
Remove "debugging LED" from USBHost.cpp
1 parent 1c088ee commit 26ac4e5

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

libraries/USBHost/USBHost/USBHost.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ USBHost * USBHost::instHost = NULL;
2828

2929
#define MIN(a, b) ((a > b) ? b : a)
3030

31-
DigitalOut l4(LED4);
32-
3331
/**
3432
* How interrupts are processed:
3533
* - new device connected:
@@ -72,7 +70,6 @@ void USBHost::usb_process() {
7270

7371
if (evt.status == osEventMail) {
7472

75-
l4 = !l4;
7673
message_t * usb_msg = (message_t*)evt.value.p;
7774

7875
switch (usb_msg->event_id) {

0 commit comments

Comments
 (0)