aboutsummaryrefslogtreecommitdiff
path: root/src/stm32/cdcacm.c
AgeCommit message (Collapse)Author
2012-06-10Renamed platforms to 'native' and 'libftdi' and moved into 'platforms' dir.Gareth McMullin
2012-05-26Separated USB UART interface into separate file.Gareth McMullin
2012-05-26Improve USB UART handling. Fix interrupt priorities.Gareth McMullin
2012-05-26Use our new USB VID/PID. Thanks OpenMoko, Inc.Gareth McMullin
DFU now uses the same short serial number as application.
2012-05-23Detect hardware version. Disable UART on mini h/w under debug.Gareth McMullin
2012-04-22Fixed TRACESWO capture.Gareth McMullin
'mon traceswo' reports serial number and interface/endpoint no for libusb. Interrupt priorities set so TIM3 for trace is highest priority. Increased trace endpoint packet size to 64. Buffer many trace packets into a single usb packet. Stall on overflow. Fixed stop bit detection in TIM3 interrupt handler.
2012-04-18Added capture of SWO, passed to host over a vendor specific USB interface.Gareth McMullin
2012-03-24Monitor USB VBUS to control D+ pull-up resistor.Gareth McMullin
2012-01-19Support DFU GET_STATUS request when in application mode.Gareth McMullin
2012-01-16Changed the unique id generation to be 8 characters long. This is so Mac OS ↵Piotr Esden-Tempski
X uses the the unique id for naming the device file instead of the location.
2012-01-09Configure CDC ACM packet size in a #define for easy access.Gareth McMullin
This doesn't work for >64 bytes. Suspect bug in libopencm3.
2012-01-07Advertise that we accept SET_LINE_CODING and ignore it on GDB interface.Gareth McMullin
This fixes SetCommState failure on Windows.
2011-12-29Use USB Interface Association Descriptors.Gareth McMullin
This allows windows to see it as a composite device and load different driver for each interface.
2011-12-07Default to DTR=1 if no request received.Gareth McMullin
This is needed on Mac where opening the port doesn't assert DTR. Thanks to Mike Smith.
2011-10-30Merge branch 'master' of github.com:gsmcmullin/blackmagicGareth McMullin
2011-10-30Updated to build with new libopenstm32 with f1/f2 split.Gareth McMullin
2011-07-02Halt and detach target if host releases DTR.Gareth McMullin
Port reads 0x04 (EOF) when DTR is released. GDB loop detaches from target if EOF is read. Fixes bug 3307433.
2011-02-17CDC-ACM now asserts DCD to allow opening tty devs in BSD/MacOS.Gareth McMullin
Cleaned up compiler warnings.
2011-02-16Fixed DFU_DETACH request handling when usb-uart is excluded.Gareth McMullin
2011-02-12Fixed interface number of DFU when UART isn't included.Gareth McMullin
2011-02-12Added extra ACM interface for serial emulation using USART1.Gareth McMullin
2011-02-04Import of working source tree.Gareth McMullin