| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-04-07 | more cleanup | hathach | |
| 2021-04-07 | remove tu_fifo_backward_write/read_pointer API | hathach | |
| since it is illegal from fifo perspective | |||
| 2021-04-07 | more _ff_pull/push clean up | hathach | |
| 2021-04-07 | clean up _ff_push_n | hathach | |
| 2021-04-07 | use tu_unaligned_write32() for _ff_push_const_addr | hathach | |
| 2021-04-07 | rename | hathach | |
| 2021-04-07 | fix cast-align warning | hathach | |
| 2021-04-06 | more clean up for _ff_pull_const_addr_in_full_words() | hathach | |
| 2021-04-06 | refactor _ff_pull_n() with const addr | hathach | |
| 2021-04-06 | Merge branch 'master' of github.com:hathach/tinyusb into edpt_ISO_xfer | hathach | |
| 2021-04-06 | add tu_unaligned_read32/write32 (#772) | Ha Thach | |
| * add tu_unaligned_read32/write32 * added tu_unaligned_read16/write16 * add TU_ATTR_ALWAYS_INLINE, add to most of simple inline function | |||
| 2021-04-03 | Generalize audio driver for 3 audio functions plus a lot more. | Reinhard Panhuber | |
| - Audio format and parameters are parsed from descriptors thus user no longer needs to give them explicitely - Tested for 4 channel software type I PCM encoding with 16 bit with 1 channel per FIFO and 2 channels per FIFO (this is I2S specific) | |||
| 2021-03-25 | Fix shadowing parameter in fifo.c | Reinhard Panhuber | |
| 2021-03-25 | Implement unaligned word copy. | Reinhard Panhuber | |
| 2021-03-25 | Rework to copy wrapped word bytes by byte in copy_to_cont_dst etc. | Reinhard Panhuber | |
| 2021-03-23 | Fix bug in writing to constant src/dst address. | Reinhard Panhuber | |
| Copying has to be conduct in full words (at least for STM32). Renamed copy function to tu_fifo_write_n_const_addr_full_words() | |||
| 2021-03-13 | fix fifo unlock typo, also clean up a bit | hathach | |
| 2021-03-10 | Merge remote-tracking branch 'upstream/edpt_ISO_xfer' into edpt_ISO_xfer | Reinhard Panhuber | |
| 2021-03-10 | Implement audio PCM type I enc./decoding acc. to 2.3.1.5 Audio Streams | Reinhard Panhuber | |
| Extending capabilities of support FIFOs Removing copy from to FIFO Adjusting audio examples Remove peek/read into other FIFO | |||
| 2021-03-10 | fix ci build with rp2040 | hathach | |
| 2021-03-10 | fix build with freertos | hathach | |
| 2021-03-04 | Adapt mutexes in fifo.c | Reinhard Panhuber | |
| 2021-03-04 | Remove TODOs done. | Reinhard Panhuber | |
| 2021-03-04 | Extend FIFO mutex to use separate write and read mutexes. | Reinhard Panhuber | |
| Adjust all USB drivers using FIFO and mutexes. | |||
| 2021-03-03 | Fix unused parameter in _ff_push_copy_fct() and _ff_pull_copy_fct | Reinhard Panhuber | |
| 2021-03-02 | Remove set_copy_modes(), implement: | Reinhard Panhuber | |
| tu_fifo_read_n_const_addr(), tu_fifo_write_n_const_addr() | |||
| 2021-02-25 | Revert tusb_fifo.h include form to original. | Reinhard Panhuber | |
| 2021-02-23 | Fix missing , in tusb_fifo.h | Reinhard Panhuber | |
| 2021-02-23 | Merge remote-tracking branch 'upstream/master' into edpt_ISO_xfer | Reinhard Panhuber | |
| Conflicts: src/common/tusb_fifo.h src/osal/osal_none.h | |||
| 2021-02-19 | add TU_FIFO_INIT() to help with tu_fifo declaration | hathach | |
| tu_fifo_clear() also reset max_pointer_idx and non_used_index_space | |||
| 2021-02-19 | Merge pull request #654 from xmos-jmccarthy/master | Ha Thach | |
| Add alternate bitfield padding option | |||
| 2021-02-18 | Exclude #include "osal/osal.h" for OPT_OS_NONE | Reinhard Panhuber | |
| 2021-02-18 | Add #include "osal/osal.h" in tu_fifo.h | Reinhard Panhuber | |
| 2021-02-18 | Implement requested PR changes | Jeremiah McCarthy | |
| Removes CFG_TUSB_ALT_BIT_PACKING_ALIGNMENT, and makes the manual padding behavior standard. Replaced unused variable name with TU_RESERVED. | |||
| 2021-02-18 | Correct for wrong pointer type in audio_device.c | Reinhard Panhuber | |
| 2021-02-17 | Merge remote-tracking branch 'upstream/master' into edpt_ISO_xfer | Reinhard Panhuber | |
| Conflicts: src/common/tusb_fifo.h | |||
| 2021-02-17 | Improve tu_fifo capabilites | Reinhard Panhuber | |
| Added tu_fifo_get_linear_write_info(), tu_fifo_backward_write_pointer(), and tu_fifo_backward_read_pointer() | |||
| 2021-02-16 | This fixes the overflow mathmatic in the fifo | Nicholas R Dinsmore | |
| 2021-02-16 | Add alternate bitfield padding option | Jeremiah McCarthy | |
| Adds configuration option CFG_TUSB_ALT_BIT_PACKING_ALIGNMENT, which substitutes bitfield variable " : 0" padding syntax with an unused variable of size equal to the remaining number of bits. This change resolves aligned access issues for some platforms. Default behavior is original if the option is not explicitly enabled. | |||
| 2021-02-12 | Merge remote-tracking branch 'upstream/master' into edpt_ISO_xfer | Reinhard Panhuber | |
| 2021-01-25 | fix host build | hathach | |
| 2021-01-20 | Add __restrict keyword and memore alignment to src/dst pointer of | Reinhard Panhuber | |
| _tu_fifo_read_from_const_src_ptr() _tu_fifo_write_to_const_dst_ptr() | |||
| 2021-01-18 | Explicitly add cast to uint32_t before shifting uint8 to left | Reinhard Panhuber | |
| 2021-01-18 | Clean up | Reinhard Panhuber | |
| 2021-01-18 | Add FIFO copy modes: tu_fifo_copy_mode_t | Reinhard Panhuber | |
| Allows to copy from/to constant pointers required for STM32 hardware FIFO copies. | |||
| 2021-01-17 | Add tu_fifo_read_n_into_other_fifo() to copy into from FIFO into another | Reinhard Panhuber | |
| Fix overflow in tu_fifo_write_n() | |||
| 2020-12-24 | Merge pull request #571 from HiFiPhile/iar_fifo | Ha Thach | |
| Fix IAR error on memcpy and warnings. | |||
| 2020-12-23 | Fix IAR error on memcpy and warnings. | HiFIPhile | |
| Signed-off-by: MasterPhi <[email protected]> | |||
| 2020-12-20 | Fix error if "Required Prototype" is selected. | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2020-11-24 | msc only invoke scsi complete callback after status transaction is complete | hathach | |
