summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-11-26add OPT_MODE_HIGH_SPEEDhathach
2018-11-26clean up warningshathach
2018-11-25Introduce a Makefile for the OS_NONE device exampleScott Shawcroft
It currently supports the SAMD21 and SAMD51 only. More will be added later.
2018-11-23One tweak to make -Wdiscarded-qualifiers happy.Scott Shawcroft
2018-11-23Make sure OUT endpoint 0 on the SAMDs always has a valid buffer to storeScott Shawcroft
a SETUP token into.
2018-11-23Turn off interrupts when working with the event queue.Scott Shawcroft
2018-11-23Reset USB peripheral and wait for startupScott Shawcroft
2018-11-23remove pragma GCC diagnostichathach
2018-11-23rename DCD_XFER_SUCCESS to XFER_RESULT_SUCCESShathach
2018-11-23rename xfer complete enumhathach
2018-11-23rename tusb_event_t to xfer_result_thathach
2018-11-23nrf5x add DCD_EVENT_UNPLUGGED eventhathach
2018-11-22more clean uphathach
2018-11-22clean up dcd lpc43xxhathach
2018-11-22cdc work ok with lpc43xxhathach
2018-11-22rename CFG_TUSB_MEM_SECTION to CFG_TUSB_MEM_SECTIONhathach
2018-11-22msc device block count and block numhathach
- replace CFG_TUD_MSC_BLOCK_NUM & CFG_TUD_MSC_BLOCK_SZ by tud_msc_capacity_cb() (mandatory callback)
2018-11-21clean uphathach
2018-11-21samd21 work well with cdchathach
2018-11-21clean uphathach
2018-11-21update dcd samd21hathach
2018-11-21fix ses irq vectorhathach
2018-11-20samd51 fix stable issue with dcdhathach
2018-11-20clean uphathach
2018-11-16rename control_statehathach
2018-11-16nrf5x: clean up dcd, add commenthathach
2018-11-16rename control.c to usbd_controlhathach
2018-11-16remove control.h (move prototype to usbd_pvt.h)hathach
2018-11-16nrf5x: refactor device control transfer.hathach
- make control transfer as part of usbd. Class driver must use usbd_control_ API() instead of dcd_ api. - change the signature of class driver's control_request - allow control request complete to stall in staus stage - move control request parser & handling to usbd.
2018-11-16nrf5x: correct control transfer directionhathach
added dcd description.
2018-11-14remove control from class driver arrayhathach
2018-11-14usbd clean uphathach
2018-11-14clean uphathach
2018-11-14change osal_queue_receive() signaturehathach
- fix build issue with freertos
2018-11-14update example for PR. correct share_control definitionhathach
- rename dcd,hal to dcd_samd51, hal_samd51 since some IDE has issue with duplicated names (e.g keil, ses).
2018-11-14Merge pull request #7 from tannewt/tinyusb_samdhathach
Add SAMD support and simplify OS_NONE
2018-11-13added tud_cdc_write_str, tu_fifo only use mutex for RTOS confighathach
2018-11-09Support the no CDC protocol as well.Scott Shawcroft
2018-11-09Exempt from strict warnings for struct packing and add MCU optionsScott Shawcroft
2018-11-08Polish up control split and treat it more like a normal endpoint.Scott Shawcroft
2018-11-07Split out the control endpoint logicScott Shawcroft
2018-11-07Add SAMD21 and SAMD51 support for CircuitPython.Scott Shawcroft
The ProtoThreads style subtasks were removed because it led to extremely unclear control flow. RTOSes can be used if threading is needed. Also added some additional functionality to MSC to support dynamic LUNs and read-only LUNs.
2018-11-02use mutex for cdc device fifohathach
2018-11-02defer DCD_EVENT_BUS_RESET, DCD_EVENT_UNPLUGGED to usbd taskhathach
2018-11-02add mutex support (optional) for tu_fifohathach
2018-11-02clean up osalhathach
2018-11-02add osal_mutexhathach
2018-10-25add dcd event helper setup_recieved and bus_signalhathach
2018-10-24fix nrf52 freeRTOS interrupt priorityhathach
2018-10-24rename verify_breakpoint to TU_BREAKPOINThathach