| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-09-28 | synopsys: Fix fifo allocation schema | Jerzy Kasenberg | |
| Recommended FIFO allocation schema includes 2 maximum endpoint sizes. Comment suggested that this is the case while it would work according to this description only in checked endpoints were ascending sizes. Also two same size endpoints would be counted as one. That is fixed by way sz is filled. Calculation used too much modulo operation while single division was enough to account for odd FIFO sizes. Extra space that is evenly distributed between Bulk and control endpoints was incorrectly calculated it could prevent allocation of ISO endpoint FIFO when bulk endpoints existed with smaller endpoint numbers. Minimum endpoint FIFO size is 16 32bit words, FIFO space requirement is now observed. | |||
| 2020-09-26 | Change modulo substitute to while ( idx >= depth) idx -= depth; | Reinhard Panhuber | |
| 2020-09-25 | Fix wrong comments, rename pos to offset, rename overflow(). | Reinhard Panhuber | |
| 2020-09-23 | Fix bug in modulo substitute. | Reinhard Panhuber | |
| 2020-09-23 | Change maximum depth to 2^15 which allows for a fast modulo substitute. | Reinhard Panhuber | |
| Thus, however, overflows are detectable only for one time FIFO depth. | |||
| 2020-09-23 | Merge pull request #512 from mzero/fix-midi-sysex | Ha Thach | |
| Fix a bug in writing SysEx messages. | |||
| 2020-09-19 | Final cleanup. | Reinhard Panhuber | |
| 2020-09-15 | Tested, working. | Reinhard Panhuber | |
| 2020-09-15 | nrf52: Fix edpt_dma_start() wrong condition check | Jerzy Kasenberg | |
| Operator < used in while condition was obviously incorrect. Loop starts with checking if unsigned variable is less then 0. This condition is always false. This reverses condition to follow intention of of the code. | |||
| 2020-09-14 | Merge pull request #508 from hathach/fix-edpt-race | Ha Thach | |
| Fix edpt xfer race condition | |||
| 2020-09-14 | Implementation done, yet to be tested. | Reinhard Panhuber | |
| 2020-09-14 | more const | hathach | |
| 2020-09-14 | cdc device: claim endpoint before checking fifo availability | hathach | |
| - add pre-check to reduce mutex lock in usbd_edpt_claim | |||
| 2020-09-13 | Update midi_device.c | Mark Lentczner | |
| Fix a bug in writing SysEx messages. At the start of a new USB packet (4 bytes), while in the middle of a SysEx, the code mistakenly set the buffer length to 4, not the target length. As a consequence, the 3rd and 4th bytes from the last packet were included, after every byte of the SysEx after the first packet of three. The fix is simple, as it was just a typo, as can bee seen from the other branches in the same section of if/else statements: At the start of a new packet, the code should set up the target length... the buffer length should be left at 2 (as set on line 180). | |||
| 2020-09-13 | correct the TUD_HID_REPORT_DESC_GAMEPAD | hathach | |
| 2020-09-12 | typo | hathach | |
| 2020-09-11 | clean up | hathach | |
| 2020-09-10 | update claim edpt for hid and midi | hathach | |
| 2020-09-10 | Set new define because of build failure | Jan Dümpelmann | |
| 2020-09-09 | typo | hathach | |
| 2020-09-09 | clean up | hathach | |
| 2020-09-09 | update cdc edpt read | hathach | |
| 2020-09-09 | introduce optional usbd_edpt_claim, usbd_edpt_release which can be used to ↵ | hathach | |
| gain exclusive access to usbd_edpt_xfer | |||
| 2020-09-07 | move functions around | hathach | |
| 2020-09-07 | clean up | hathach | |
| 2020-09-07 | rework usbh control transfer | hathach | |
| use series of complete callback instead of blocking semaphore, which is more noOS friendly. still working with hid host | |||
| 2020-09-06 | Start of sampling works. | Reinhard Panhuber | |
| 2020-09-06 | change xfer_cb return type from void to bool | hathach | |
| 2020-09-06 | replacing hcd_pipe_xfer by usbh_edpt_xfer | hathach | |
| 2020-09-05 | clean up enum task | hathach | |
| 2020-09-05 | refactor hub class | hathach | |
| - separate connect/disconnect handling - hub work with full speed, but doesn't seem to work with Low speed device (with mcb1800) - need to update msc host after migrating from isr to xfer_cb (blocked at inquiry) | |||
| 2020-09-05 | more clean up | hathach | |
| 2020-09-05 | add in_isr to all hcd event functions | hathach | |
| 2020-09-05 | clean up | hathach | |
| 2020-09-05 | refactor extract parse_configuration_descriptor() | hathach | |
| 2020-09-05 | remove usbh control mutex | hathach | |
| 2020-09-05 | update example to test with mouse | hathach | |
| 2020-09-05 | defer xfer_isr to xfer_cb | hathach | |
| 2020-09-05 | clean up | hathach | |
| 2020-09-04 | Merge remote-tracking branch 'upstream/master' into uac2 | Reinhard Panhuber | |
| 2020-09-04 | Add functionality to abort an ongoing transfer | Jan Dümpelmann | |
| 2020-09-04 | clean up | hathach | |
| 2020-09-03 | more hid host work | hathach | |
| 2020-09-03 | Remove tud_audio_n_write_ep_in_buffer() as long as ISO EPs are not RBs. | Reinhard Panhuber | |
| 2020-09-03 | New function to modify fifo overwritability | Jan Dümpelmann | |
| 2020-09-03 | Turn transmit fifo overwritable in no DTR mode | Jan Dümpelmann | |
| 2020-09-03 | Remove connected check for write flushing | Jan Dümpelmann | |
| 2020-09-03 | fix #449 remove obsolete pipehandle from hid host | hathach | |
| 2020-09-03 | rename tuh_isr/hcd_isr to tuh_int_handler/hcd_int_handler | hathach | |
| 2020-09-02 | revert to use float-abi | hathach | |
| define __USE_CMSIS instead of __USE_LPCOPEN will have startup enable FPU on startup properly. Although it is only relevant to lpx43/40 series, change all to __USE_CMSIS for consistency | |||
