| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-04-28 | add aligned(4) for cdc_line_coding_t | hathach | |
| 2023-04-27 | cdc: fix line_coding aligment | Jean-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-28 | Merge pull request #2046 from hathach/add-usb2uart-host-driver | Ha Thach | |
| Add usb2uart serial host driver | |||
| 2023-04-27 | add tuh_cdc_set_baudrate() | hathach | |
| 2023-04-27 | add code to calculate divisor from baudrate for ftdi | hathach | |
| 2023-04-27 | clean up | hathach | |
| 2023-04-27 | forgot to add cp210x header | hathach | |
| 2023-04-27 | more refactor | hathach | |
| 2023-04-27 | cp210x seems to work well | hathach | |
| 2023-04-27 | more host serial refactor | hathach | |
| 2023-04-27 | refactor acm function | hathach | |
| 2023-04-27 | refactor ftdi driver | hathach | |
| 2023-04-27 | rename ftdi_host to ftdi_sio | hathach | |
| 2023-04-26 | enable CDC FTDI | hathach | |
| 2023-04-26 | hacky, but ftdi work with hard code baudrate = 9600 | hathach | |
| 2023-04-26 | fix pio vbus typo | hathach | |
| 2023-04-26 | Merge pull request #2043 from hathach/fix-nxp-build | Ha Thach | |
| fix build with nxp since mcux-sdk from 2.13.0 remove CMSIS folder | |||
| 2023-04-26 | fix build with nxp since mcux-sdk from 2.13.0 remove CMSIS folder | hathach | |
| 2023-04-24 | Merge pull request #2040 from hathach/update-imxrt-deps | Ha Thach | |
| bump up imxrt mcux-sdk to 2.13.1 | |||
| 2023-04-24 | bump up imxrt mcux-sdk to 2.13.1 commit f357a1150f6cf6c6b844f53f2d426bfb3e649850 | hathach | |
| 2023-04-24 | Merge pull request #2013 from tannewt/imx_1042 | Ha Thach | |
| Handle iMX RT 1042 usb naming | |||
| 2023-04-24 | Merge pull request #2039 from hathach/add-cmake-build | Ha Thach | |
| Add cmake build | |||
| 2023-04-24 | add wip note | hathach | |
| 2023-04-24 | minor update | hathach | |
| 2023-04-21 | build all freertos, not able to build net lwip due to lack of sio_open() | hathach | |
| 2023-04-21 | update freeRTOS kernel to latest for library cmake | hathach | |
| add per family freeRTOSConfig.h also make changes to build with freertos_kernel cmake - hard coded configPRIO_BITS based on family - change configSUPPORT_STATIC_ALLOCATION to 0, configSUPPORT_DYNAMIC_ALLOCATION to 1 - enable configRECORD_STACK_HIGH_ADDRESS for tracing - enable INCLUDE_xTaskGetCurrentTaskHandle which is required to compile stream_buffer (although we don't use it). | |||
| 2023-04-21 | update most examples cmake to build with imxrt | hathach | |
| 2023-04-21 | example run well with cmake for imxrt | hathach | |
| 2023-04-21 | Merge pull request #2024 from jfedor2/sie_ctrl_fix | Ha Thach | |
| [rp2040] Make writes to SIE_CTRL aware of concurrent access | |||
| 2023-04-20 | [rp2040] Make writes to SIE_CTRL aware of concurrent access | Jacek Fedorynski | |
| This commit makes it so that when setting the START_TRANS bit in the SIE_CTRL register, along with some other bits, we first set all the other bits, then wait some cycles, and then set the START_TRANS bit. Doing so protects against a situation where the USB controller is reading the register at the same time and gets an incorrect value. This mirrors the procedure already applied to buffer control registers. | |||
| 2023-04-20 | clean up | hathach | |
| 2023-04-20 | board test running with cmake | hathach | |
| 2023-04-20 | adding cmake build for imxrt1010 | hathach | |
| 2023-04-19 | Merge pull request #2033 from ReimuNotMoe/master | Ha Thach | |
| Fix compatibility with the latest Microchip XC16 compiler | |||
| 2023-04-18 | Merge branch 'hathach:master' into master | Reimu NotMoe | |
| 2023-04-18 | Use __GNUC__ macro to determine if __has_attribute is supported | Reimu NotMoe | |
| 2023-04-18 | Merge pull request #1920 from mikee47/fix/midi-definition | Ha Thach | |
| MIDI_CIN_NOTE_ON definition transposed with MIDI_CIN_NOTE_OFF | |||
| 2023-04-17 | Cleanup unnecessary code for 16bit access. | Mengsk | |
| 2023-04-17 | Implement TU_BSWAP{16,32} correctly for Microchip XC16 | Reimu NotMoe | |
| 2023-04-17 | Fix compatibility with the latest Microchip XC16 compiler | Reimu NotMoe | |
| 2023-04-14 | Update porting.rst | slc-tl | |
| Adds more in depth documentation of how tud_task does not need to be polled in implementations that use an RTOS / scheduler. | |||
| 2023-04-14 | Fix FIFO transfer and buffer alignment. | HiFiPhile | |
| 2023-04-14 | Fix GCC build. | HiFiPhile | |
| 2023-04-14 | Merge pull request #2025 from dauc/master | HiFiPhile | |
| Fix spelling configuraiton->configuration | |||
| 2023-04-14 | Fix CI | HiFiPhile | |
| 2023-04-14 | Use PLL clock. | HiFiPhile | |
| 2023-04-14 | Add stm32g0b1nucleo BSP. | HiFiPhile | |
| 2023-04-14 | Update lib & template. | HiFiPhile | |
| 2023-04-14 | Fix spelling configuraiton->configuration | Devin Auclair | |
| 2023-04-14 | Merge branch 'master' of https://github.com/hathach/tinyusb into pr1942 | HiFiPhile | |
