summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-05-15update nrf cmake and make to support nrf5340 (pca10095)hathach
2023-05-15Update build_arm.ymlHa Thach
try bump up gcc to 12
2023-05-15adding nrfhathach
2023-05-13revert family.mkHa Thach
2023-05-13add support for other lpc55 boardshathach
2023-05-13able to build lpc55hathach
2023-05-12Merge pull request #2057 from abakosh/developHiFiPhile
fix(iar_template.ipcf): add missing portable links, and delete the us…
2023-05-12Remove deprecated dcd_synopsysHiFiPhile
2023-05-10Merge pull request #2058 from hathach/cmake-imxrtHa Thach
Add Cmake for imxrt and Fix EHCI PortSC issue
2023-05-10more doc build fixhathach
2023-05-10try to fix build dochathach
2023-05-10remove imxrt from makebuildhathach
2023-05-10forgot sudohathach
2023-05-10install ninjahathach
2023-05-10add python script to help building cmake, build all imxrt boards with cihathach
2023-05-10try to build with cmake on cihathach
2023-05-10allow imxrt build with dual exmapleshathach
2023-05-09skip link option --print-memory-usage for renesas rx since it does not ↵hathach
support this option
2023-05-09fix ehci issue with portsc when enable port power and port resethathach
fix attached device not regconized if attached before power on
2023-05-09simplify cmake target, remove -bsphathach
2023-05-08fix(iar_template.ipcf): add missing portable links, and delete the ↵Aladdin Bakosh
usbh_control.c from the list
2023-05-08change imxrt board_uart_read() to non-blockinghathach
simple host seems to work
2023-05-08fix linking missing ivt symbol for imxrt with cmakehathach
changed device port = 0, host port =1 for imxrt 1060 and 1064
2023-05-08build host examples with imxhathach
2023-05-07update all device cmake example for imxhathach
2023-05-06cmake work well with imxrthathach
2023-05-05more temp workhathach
2023-05-05add clion fileshathach
2023-05-04wiphathach
2023-05-04renesas: update fsp to 4.0.0Martino Facchin
2023-05-04fix cmake buildhathach
2023-05-04Use double-sized fifo only for IN endpointsMichiel van Leeuwen
2023-05-03renesas: add fallback for targets not defining CFG_TUSB_RHPORT*_MODEMartino Facchin
2023-05-03renesas_ra: fix existing boards supportMartino Facchin
2023-05-03renesas_ra: support RA2A1 (FS only)Martino Facchin
2023-05-03renesas_ra: host: handle retry on attach()Martino Facchin
2023-05-03renesas_ra: add support for HS portMartino Facchin
2023-04-28Merge pull request #2051 from hathach/improve-serial-hostHa Thach
Improve serial host
2023-04-28more update to host serial APIhathach
2023-04-28allow call tuh cdc with blocking (callback = NULL)hathach
- tuh_cdc_set_control_line_state() - tuh_cdc_set_baudrate() - tuh_cdc_set_line_coding()
2023-04-28improve host serial drivershathach
- tuh_control_xfer() update xfer result to user_data if complete callback = NULL (sync/blocking) - refactor host serial driver for acm/ftdi/cp210x
2023-04-28Check correct interrupt flagMichiel van Leeuwen
Fixes #1737
2023-04-28dwc2: configure fifo size to be twice the max_sizeMichiel van Leeuwen
This is needed in order to always be able to fit a packet in the fifo. Writing to the fifo is done from an interrupts that fires when the fifo is half-empty, so the fifo must be twice the packet size.
2023-04-28Merge pull request #2030 from slc-tl/patch-1Ha Thach
Update porting.rst
2023-04-28update osal notehathach
2023-04-28Merge pull request #2047 from jbtheou/masterHa Thach
cdc: fix line_coding aligment
2023-04-28add aligned(4) for cdc_line_coding_thathach
2023-04-27cdc: fix line_coding aligmentJean-Baptiste Theou
While calling tud_cdc_n_get_line_coding, the structure is copied into the destination. Dump of assembler code for function tud_cdc_n_get_line_coding: 0x000193f4 <+0>: mov.w r2, #2112 @ 0x840 0x000193f8 <+4>: ldr r3, [pc, #20] @ (0x19410 <tud_cdc_n_get_line_coding+28>) 0x000193fa <+6>: mla r0, r2, r0, r3 => 0x000193fe <+10>: ldr.w r3, [r0, #6] 0x00019402 <+14>: str r3, [r1, #0] On some platform (tested on LPC55S28), the address needs to be 4-bytes aligned. Without this, the address is (gdb) p &_cdcd_itf.line_coding $3 = (cdc_line_coding_t *) 0x40100006 <_cdcd_itf+6> which leads to a HardFault. With this fix (gdb) p &_cdcd_itf.line_coding $5 = (cdc_line_coding_t *) 0x40100008 <_cdcd_itf+8> and the function can be called properly Signed-off-by: Jean-Baptiste Theou <[email protected]>
2023-04-28Merge pull request #2046 from hathach/add-usb2uart-host-driverHa Thach
Add usb2uart serial host driver
2023-04-27add tuh_cdc_set_baudrate()hathach