aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/USBDesc.h
AgeCommit message (Collapse)Author
2021-01-06Allow disabling CDC with -DCDC_DISABLEDDaniel Gibson
Sometimes Arduino-based USB devices don't work because some hardware (like KVM switches) gets confused by the CDC sub-devices. This change makes it relatively easy to disable CDC at compiletime. Disabling it of course means that the serial console won't work anymore, so you need to use the reset button when flashing. CDC_DISABLED is also used in ArduinoCore-samd for the same purpose. based on https://github.com/gdsports/usb-metamorph/tree/master/USBSerPassThruLine See also https://github.com/NicoHood/HID/issues/225 and https://github.com/arduino/Arduino/issues/6387 and https://forum.arduino.cc/index.php?topic=545288.msg3717028#msg3717028
2015-10-21[USB] use plugged modules name to create iSerial fieldMartino Facchin
2015-10-02[HID] Code cleanup (no semantic changes)Cristian Maglie
2015-10-02[PUSB] Fixed the correct number of endpointsCristian Maglie
2015-07-16make CDC function non removableMartino Facchin
2015-07-16add PluggableUSB moduleMartino Facchin
2015-07-16Remove HID core libraryMartino Facchin
2012-04-09sketch USB VID and PID values are passed in from boards.txt at compile time ↵Zach Eveland
now. changed sketch PIDs to final values. also uncommented Micro section in boards.txt
2012-02-13changed Leonardo bootloader and sketch PID values again (now 0x0701 for ↵Zach Eveland
bootloader, 0x0801 for sketch)
2012-02-08adjusting descriptors - trying to prevent sketch and bootloader from ↵Zach Eveland
grabbing different COM numbers on Windows
2011-09-16added to sketch iProduct and iManufacturer strings identifying board as ↵Zach Eveland
either an "Arduino Leonardo" or "Arduino Micro" manufactured by "Arduino LLC"
2011-09-08added compile-time definition of sketch PID. PID is pulled from ↵Zach Eveland
variants/leonardo or the new variants/micro as appropriate.
2011-09-08Revert "support compile-time passing of PID to Leonardo/Micro sketches. PID ↵Zach Eveland
comes from boards.txt - different for Micro and Leonardo" This reverts commit 3e0d195492247a7e7c2ec72476bf2a0991ea6d48.
2011-09-08support compile-time passing of PID to Leonardo/Micro sketches. PID comes ↵Zach Eveland
from boards.txt - different for Micro and Leonardo
2011-08-14Serial via USB worksZach Eveland
Integrated rest of Peter's USB implementation