summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2022-07-14abtract attribute fallthroughhathach
2022-07-01mimxrt: Change OPT_MCU_MIMXRT1xXX to OPT_MCU_MIMXRT.robert-hh
Which fits both MIMXRT10XX and MIMXRT11XX.
2022-06-30mimxrt: Add/change definitions for MIMXRT11XX boards.robert-hh
These are mostly identical to the MIMXRT10XX, with one tiny difference.
2022-06-24add more warning option, also fix -Wconversion with rp2040hathach
-Wuninitialized, -Wunused, -Wredundant-decls
2022-06-08make all hcd/dcd function used in isr into ram with ↵hathach
__no_inline_not_in_flash_func() for faster irq handling result is 1KB of code moved from rom -> ram
2022-06-02rhport argument in usbd_ API() is not used (always use the initialized port)hathach
remove the usage of TUD_OPT_RHPORT in class driver
2022-05-31Merge pull request #1381 from hathach/add-sof-isrHa Thach
Add SOF IRQ Handler
2022-05-24Merge pull request #1451 from kasjer/kasjer/pic32-sanity-fixesHa Thach
pic32 sanity fixes
2022-05-13changes proposal to audio feedback computationhathach
2022-05-01Add TU_BREAKPOINT for mips architectureJerzy Kasenberg
_mips is provided by xc32-gcc
2022-04-27clean uphathach
2022-04-27add TU_ATTR_FAST_FUNC for rp2040 __not_in_flash() sectionhathach
2022-04-22keep up with pio usbhathach
2022-04-20add tud_task_ext(), tuh_task_ext() as exteneded version that take timeout ↵hathach
and in_isr also allow exit tud_task,tuh_task after processing all events for running other background task for user
2022-03-19Implement power of two, shift, and float calculationReinhard Panhuber
2022-03-13add synchronous (blocking) support for usbh control transferhathach
- add synchronous version of all get descriptor API - update bare example to use sync API for string descriptor - change order of index, language_id in tuh_descriptor_get_string() to match similar API of libusb - add index to tuh_descriptor_get_hid_report()
2022-03-10remove obsolete device statehathach
2022-03-10merge control stage host and device valuehathach
2022-03-09implement tu_edpt_release()hathach
2022-03-09adding tusb_private.h to implement common edpt claimhathach
2022-03-09add tusb_debug.h remove tusb_error.hhathach
move debug utils to new header
2022-03-07Merge pull request #1374 from kasjer/kasjer/stm32wb55Ha Thach
stm32wb55 support
2022-03-07Add support for STM32WB mcuJerzy Kasenberg
2022-03-04add tuh_descriptor_get() and tuh_descriptor_device_get()hathach
2022-03-03Add host string descriptor functionsScott Shawcroft
Plus typo fixes, GCC11 array bounds fix, snprintf for malloc-free debug and pragmas for alignment checks.
2022-02-28Merge pull request #1345 from alexandre-perrin/iar-cpp-verify-staticHa Thach
Fix CPP compilation with IAR
2022-02-26add highspeed detect for f723/730/733hathach
2022-02-26add TUP_USBIP_DWC2hathach
2022-02-26more internal renamehathach
2022-02-26mcu specific renamehathach
2022-02-26Merge pull request #1311 from Wini-Buh/CCRX_ExtHa Thach
Solve problems with CCRX toolchain
2022-02-25more symbol renamehathach
2022-02-25internal symbol renamehathach
2022-02-25minor house keepinghathach
2022-02-25rename and move dcd_attr.h to tusb_mcu_attr.hhathach
2022-02-23Fix CPP compilation with IARAlexandre Perrin
IAR defines __STDC_VERSION__ in cpp as well. Which causes TU_VERIFY_STATIC to be defined as _Static_assert instead of cpp's static_assert. This reorders __cplusplus__ to be first, then to fallback to __STDC_VERSION__ if not CPP.
2022-02-01Modifications for CCRX toolchainRoland
2022-01-25Merge branch 'master' into masterHa Thach
2022-01-19fix idfgh-6508: return type in tu_fifo_peek_n()email
https://github.com/espressif/esp-idf/issues/8161
2022-01-19fix locked mutex when fifo is fullhathach
2022-01-06Enable breakpoints for ARM8M (e.g. cortex-m33)EmergReanimator
2021-11-30Ignore certain compiler options on ARMCCYunhao Tian
ARMCC also sets __GNU__ macro, but doesn't support GCC diagnostic pragmas.
2021-10-29skip snpsid check for gd32, abstract phyfs turnaround, set max timeout ↵hathach
calibration. still has issue with gd32 with msc (does work with running with rtt as log).
2021-10-29correctly init hs phy for bcmhathach
2021-10-26add hw config structhathach
2021-10-25change usage of TU_CHECK_MCU() to prevent macro conflicthathach
2021-10-25add TU_ARGS_APPLY(), TU_CHECK_MCU() now could check list of mcushathach
2021-10-24remove ep descriptor wMaxPacketSize bitfield due to endian issuehathach
2021-10-15fix -Wcast-qualhathach
2021-09-29moved ISO attributes from audio to commonkkitayam