aboutsummaryrefslogtreecommitdiffstats
path: root/core/usb/usb.c
Commit message (Collapse)AuthorAgeFilesLines
* added carraige feed to newline send on the test function usbSendHelloAJM2010-05-201-2/+2
|
* fixed the FIFO bug, tx/rx now seems stable and ready for integration.AJM2010-05-201-3/+7
|
* theres still a remaining bug whereby fast consecutive read/writes to serial ↵AJM2010-05-201-5/+6
| | | | might crash the fifo, but other than that it seems to work. see usbSendHello for an example. include usb.h in your application, and call setupUSB() to turn everything on.
* FINALLY figured out the tx/rx bugs, so the whole stack is officially ↵AJM2010-05-201-1/+0
| | | | working. for future reference its ESSENTIAL that you set the EPNUM flag of the global device struct appropriately regardless of whether or not you enable or configure more endpoints.
* finally got TX working without any delay, there is some weird timing ↵AJM2010-05-201-5/+84
| | | | involved in what happens when the line state is toggled (host port disconnected) and theres still data waiting to go out, this will hang any while(txCount != 0) calls. similarly, sending data without checking txCount != 0 will hard fault the chip. This is all handled now by usbSendBytes, which returns -1 for unconnected, and 0 for simply 'waiting to send'
* c++ ified all of the usb_core files, added the auto-reset feature to the ↵AJM2010-05-201-13/+25
| | | | virtual com port, got the descriptors in functional although not pretty order that can be fixed using the attribute packing
* finished the entire low level usb app for virtual com minus the precise ↵AJM2010-05-201-61/+307
| | | | handling of get/send data callbacks and toggle line state. completely undebugged for now.
* added the skeleton dir for the usb application lib, since were still ↵AJM2010-05-201-0/+85
dependent on st for low level access, the entire usb stack lives in the core application level (not in libmaple). the next project should be to include some low level usb stack in the libmaple