Skip to content

Commit 87bf6e1

Browse files
committed
Fixed some comments
1 parent 3ba1a35 commit 87bf6e1

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

cores/arduino/USB/USBCore.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2015 Arduino LLC. All right reserved.
2+
Copyright (c) 2016 Arduino LLC. All right reserved.
33
44
This library is free software; you can redistribute it and/or
55
modify it under the terms of the GNU Lesser General Public
@@ -86,6 +86,9 @@ uint8_t udd_ep_out_cache_buffer[7][64];
8686
static __attribute__((__aligned__(4))) //__attribute__((__section__(".bss_hram0")))
8787
uint8_t udd_ep_in_cache_buffer[7][64];
8888

89+
// Some EP are handled using EPHanlders.
90+
// Possibly all the sparse EP handling subroutines will be
91+
// converted into reusable EPHandlers in the future.
8992
static EPHandler *epHandlers[7];
9093

9194
//==================================================================
@@ -898,7 +901,3 @@ void USBDeviceClass::ISRHandler()
898901
// USBDevice class instance
899902
USBDeviceClass USBDevice;
900903

901-
// USB_Handler ISR
902-
// extern "C" void USB_Handler(void) {
903-
// USBDevice.ISRHandler();
904-
// }

0 commit comments

Comments
 (0)