summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-04update ci to also build host examplehathach
2020-09-04fflush(stdout) for keyboard host examplehathach
2020-09-04keyboard host work as proof of concepthathach
2020-09-03more hid host workhathach
2020-09-03fix vector assignhathach
2020-09-03fix #449 remove obsolete pipehandle from hid hosthathach
2020-09-03rename tuh_isr/hcd_isr to tuh_int_handler/hcd_int_handlerhathach
2020-09-03revert to use __USE_LPCOPENhathach
properly init fpu on LPC M4
2020-09-02ohci work, tested with lpc1769hathach
2020-09-02fix ci buildhathach
2020-09-02revert to use float-abihathach
define __USE_CMSIS instead of __USE_LPCOPEN will have startup enable FPU on startup properly. Although it is only relevant to lpx43/40 series, change all to __USE_CMSIS for consistency
2020-09-01fix unit testhathach
2020-09-01add more logging to host stackhathach
tested host with lpc4357, don't use fpu with lpc m4 since it seems to cause hardfault (stack does not make use of fpu anyway).
2020-09-01clean uphathach
2020-09-01Merge branch 'master' into update-hosthathach
2020-08-27Merge pull request #497 from hathach/improve-midiHa Thach
Improve midi
2020-08-27Merge pull request #499 from hathach/bsp-itsy-nrf52840Ha Thach
add itsybitsy nrf52840 board support
2020-08-27add itsybitsy nrf52840 board supporthathach
2020-08-24fix typohathach
2020-08-24improve midihathach
- fix #436 tud_midi_rx_cb() not invoked - fix xfer_cb() not handle ep in - add ZLP if needed
2020-08-24Merge pull request #486 from kasjer/kasjer/add-endpoint-close-to-synopsysHa Thach
Add dcd_edpt_close() to synopsys
2020-08-22Update README.mdHa Thach
2020-08-22Merge pull request #493 from hathach/followup-490-samd11Ha Thach
add OPT_MCU_SAMD11
2020-08-22add OPT_MCU_SAMD11hathach
skip ci build for example that need more ROM/RAM could fit into SAMD11
2020-08-22Merge pull request #490 from ktemkin/masterHa Thach
add support for SAMD11 devices / add samd11_xplained board
2020-08-21add support for SAMD11 devices / add samd11_xplained boardKatherine Temkin
2020-08-21Merge pull request #491 from hathach/fix-samg55-buildHa Thach
fix samg55 ci build
2020-08-21fix samg55 ci buildhathach
2020-08-21Merge pull request #434 from gh2o/masterHa Thach
Add TX callback to CDC device
2020-08-20Slight optimization for cdc tx refillGavin Li
2020-08-20Smarter CDC TX refill logicGavin Li
2020-08-14Add dcd_edpt_close() to synopsysJerzy Kasenberg
Endpoint close was implemented only in one driver so far. This function is needed for interfaces with several alternate settings. The way FIFO is allocated in dcd_edpt_open() allows to correctly close only one IN endpoint (the one that was opened last).
2020-08-13Merge pull request #485 from kasjer/kasjer/fix-synopsys-fifo-flush-in-stallHa Thach
Fix synopsys fifo flush during stall
2020-08-12Fix synopsys fifo flush during stallJerzy Kasenberg
Wrong FIFO was flushed in dcd_edpt_stall(). (epnum - 1) should only be used when accessing DIEPTXF registers. For DIEPCTL and GRSTCTL epnum is correct index.
2020-08-11Merge pull request #484 from hathach/fix-bt-warningHa Thach
use usbd_edpt_open in bth driver
2020-08-11use usbd_edpt_open in bth driverhathach
2020-08-11Merge pull request #385 from hathach/add-app-driverHa Thach
support class drivers implemented by application
2020-08-07update note for app driver list mustbe accesible at all time.hathach
2020-08-07allow application driver to overwrite built-in onehathach
- position application driver before built-in - remove dcd.h from public include.
2020-08-07Merge branch 'master' into add-app-driverhathach
2020-08-06Merge pull request #483 from majbthrd/masterHa Thach
update lib/lwip to STABLE-2_1_2_RELEASE
2020-08-05update lib/lwip to STABLE-2_1_2_RELEASEPeter Lawrence
2020-08-05Merge pull request #476 from kasjer/kasjer/fix-synopsys-fix-iso-frame-bitHa Thach
Fix synopsys odd/even frame bit for IN ISO endpoints
2020-08-04Merge pull request #480 from hathach/fix-nrf-disconnectHa Thach
manually submit unplugged event for nrf dcd_disconnect()
2020-08-04Fix synopsys odd/even frame bit for IN ISO endpointsJerzy Kasenberg
For ISO endpoint driver has to specify when data is to be transmitted (odd or even frame). Currently code was not updating this bit resulting in data being sent every other frame. If interval was 1ms full data packed was sent every 2ms, and ZLP was sent in between.
2020-08-04manually submit unplugged event for nrf dcd_disconnect()hathach
2020-08-04Merge pull request #478 from hathach/move-dcdconnect-to-dcdinitHa Thach
Move pull-up enabling to dcd_init() instead of usbd
2020-08-02Merge pull request #472 from hathach/fix-msp430-warningHa Thach
fix msp430 gcc 9.2.0 warning
2020-08-01enable pull-up in dcd_init() instead of usbdhathach
2020-08-01Merge pull request #477 from hathach/fix-nrf-unplugg-isr-eventHa Thach
correct isr context for nrf DCD_EVENT_UNPLUGGED