summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-02-24Merge pull request #674 from hathach/host-mscHa Thach
Enhance Host MSC
2021-02-23move ehci and ohci to portable folderhathach
2021-02-23fix ohci hcd_init() signature changehathach
2021-02-23host msc: call read_capacity as part of enumerationhathach
- add tuh_msc_get_block_count(), tuh_msc_get_block_size() - rename tuh_msc_mounted_cb/tuh_msc_unmounted_cb to tuh_msc_mount_cb/tuh_msc_unmount_cb to match device stack naming - change tuh_msc_is_busy() to tuh_msc_ready() - add CFG_TUH_MSC_MAXLUN (default to 4) to hold lun capacities - add host msc configured to for state check.
2021-02-23clean up host mschathach
2021-02-23Merge pull request #575 from nwlab/yaa/msc_readHa Thach
Added MSC read10 and write10 function
2021-02-23update function commenthathach
2021-02-23rename tuh_msc_scsi_inquiry() to tuh_msc_inquiry()hathach
2021-02-23nxp tdi: hcd_init() reset and set host modehathach
2021-02-22separate hcd_init from ehcihathach
2021-02-22add rhport to hcd_init()hathach
2021-02-22make hcd tdi more generichathach
2021-02-22Pass the correct speed on SpresenseKamil Tomaszewski
2021-02-22rename hcd_lpc18_43 to hcd_transdimensionhathach
2021-02-22merge iso and cbi transaction size to max ep sizehathach
2021-02-22Merge branch 'RP2040_enable_isochronous_buffer_size' of ↵hathach
https://github.com/ndinsmore/tinyusb into ndinsmore-RP2040_enable_isochronous_buffer_size
2021-02-19Remove stray. commented out linendinsmore
2021-02-19add TU_FIFO_INIT() to help with tu_fifo declarationhathach
tu_fifo_clear() also reset max_pointer_idx and non_used_index_space
2021-02-19Merge pull request #660 from hathach/fix-typo-midi-write24Ha Thach
Fix typo midi write24
2021-02-19Merge pull request #654 from xmos-jmccarthy/masterHa Thach
Add alternate bitfield padding option
2021-02-19fix tud_midi_write24 typohathach
rename jack_id to cable_num in function argument
2021-02-18Implement requested PR changesJeremiah McCarthy
Removes CFG_TUSB_ALT_BIT_PACKING_ALIGNMENT, and makes the manual padding behavior standard. Replaced unused variable name with TU_RESERVED.
2021-02-18Change to using tu_min32ndinsmore
This was a github edit, not tested
2021-02-17Included size check for ISO buffersNicholas R Dinsmore
2021-02-17Enable iso buffers per rp2040 specNicholas R Dinsmore
2021-02-16This fixes the overflow mathmatic in the fifoNicholas R Dinsmore
2021-02-16Add alternate bitfield padding optionJeremiah 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-12Fixes RP2040 buffer reallocation overrun problem (#642)ndinsmore
Fix running out of memory on a device that repeatedly closes and opens an endpoint. This is a workaround at the moment. A better solution would be to implement reclaiming usb buffer memory when closing an endpoint (i.e. implement dcd_edpt_close).
2021-02-11Merge pull request #648 from hathach/rename-dfu-rt-to-runtimeHa Thach
Rename dfu rt to runtime
2021-02-11Merge pull request #647 from hathach/correct-fs-bulk-epsizeHa Thach
more epsize checking per type
2021-02-11rename dfu_rt to dfu_runtime for easy readinghathach
also rename tud_dfu_rt_reboot_to_dfu to tud_dfu_runtime_reboot_to_dfu_cb
2021-02-11clean uphathach
2021-02-11more epsize checking per typehathach
2021-02-11remove the requirement of std SET/CLEAR_FEATURE must not return zlp statushathach
2021-02-09tud_hid_report_complete_cb() APIhathach
update hid composite to make use of tud_hid_report_complete_cb() for sending reports when possible.
2021-02-08Merge pull request #637 from tfx2001/masterHa Thach
add basic support for rt-thread
2021-02-08add basic support for rt-threadtfx2001
2021-02-08add tud_hid_n_gamepad_report() helper for gamepad reporthathach
- Add gamepad to hid_composite example. Though it needs a bit of extra work but it will come later as separated PR.
2021-02-08enhance gampepad report with dpad/hat supporthathach
add hid_gamepad_report_t along with GAMEPAD_BUTTON_ and GAMEPAD_HAT_ enum
2021-02-06Merge pull request #618 from homeodor/masterHa Thach
A CDC-like blocking behaviour for MIDI, incl. SysEx
2021-02-05increase TUSB_VERSION_ to 0.8.0hathach
2021-02-05prepare for releasehathach
2021-02-01Merge pull request #610 from hathach/rp2040-followup2Ha Thach
Rp2040 followup2
2021-02-01Merge pull request #601 from majbthrd/start_pi2tuHa Thach
start the assimilation of Pi Pico into TU
2021-01-30A CDC-like blocking behaviourAlexander Golovanov
2021-01-28Fix midi sysex sending bugMichael Himing
2021-01-27clean up rp2040 assigned_address, remove panic from remote_wakeuphathach
2021-01-27wrap rp2040_usb around opt mcuhathach
2021-01-25Merge pull request #604 from kamtom480/spresense-sdk-2.0.2Ha Thach
Update Spresense SDK and fix dcd issues
2021-01-25Fix dcd issues on cxd56Kamil Tomaszewski
Pass the next setup package when USB stack is ready to receive it. When the transfer is 0 on EP0 send complete to the USB stack Pass the data received after the setup package to the USB stack.