| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-01 | add more logging to host stack | hathach | |
| tested host with lpc4357, don't use fpu with lpc m4 since it seems to cause hardfault (stack does not make use of fpu anyway). | |||
| 2020-09-01 | Allow epin_buf to be written directly into in case no TX FIFOs are used. | Reinhard Panhuber | |
| This is helpful if you have already encoded audio data and want an efficient way to send it. However, this approach is NOT THREADSAFE so far and works realiably ONLY IF tud_audio_n_write_ep_in_buffer() is NOT called form an interrupt! | |||
| 2020-09-01 | Merge branch 'master' into update-host | hathach | |
| 2020-08-29 | Fix comment. | Reinhard Panhuber | |
| 2020-08-29 | Fix CFG_TUD_AUDIO_RX_FIFO_SIZE defines. | Reinhard Panhuber | |
| 2020-08-29 | Change min to tu_min16. | Reinhard Panhuber | |
| 2020-08-25 | audio_device: Change CFG_TUD_AUDIO_TX_BUFSIZE to CFG_TUD_AUDIO_TX_FIFO_SIZE | Jerzy Kasenberg | |
| CFG_TUD_AUDIO_TX_BUFSIZE seems to be used only in 3 preprocessor condition while in other places CFG_TUD_AUDIO_TX_FIFO_SIZE is used. | |||
| 2020-08-25 | audio_device: Fix NULL pointer access in audiod_xfer_cb | Jerzy Kasenberg | |
| b_bytes_copied was pointer with NULL value instead of plain variable. NULL pointer was passed to audio_tx_done_cb() and dereference as well. Now variable is not a pointer. | |||
| 2020-08-25 | audio_device: Fix FIFO element size discrepancies | Jerzy Kasenberg | |
| Buffer for TX and RX FIFO was not taking into account size of element leading to out of bound access. audio_tx_done_type_I_pcm_ff_cb() reported copied bytes was not returning correct value number if channels was omitted in computation. Transfer size calculation uses simpler arithmetic. | |||
| 2020-08-24 | fix typo | hathach | |
| 2020-08-24 | improve midi | hathach | |
| - fix #436 tud_midi_rx_cb() not invoked - fix xfer_cb() not handle ep in - add ZLP if needed | |||
| 2020-08-24 | audio_device: Fix descriptor limit calculation | Jerzy Kasenberg | |
| In several place p_desc_end calculation was not taking into account that starting pointer (_audiod_itf[idxDriver].p_desc) was pointing past interface association descriptor. It would result in accessing random memory. | |||
| 2020-08-21 | Merge pull request #434 from gh2o/master | Ha Thach | |
| Add TX callback to CDC device | |||
| 2020-08-20 | Fix formatting, get rid of all tabs. | Reinhard Panhuber | |
| 2020-08-20 | Slight optimization for cdc tx refill | Gavin Li | |
| 2020-08-20 | Smarter CDC TX refill logic | Gavin Li | |
| 2020-08-19 | Commit before sharing. | Reinhard Panhuber | |
| Setup a test example - UNTESTED! Missing: Start transmitting audio data in set_interface. | |||
| 2020-08-16 | Merge remote-tracking branch 'upstream/master' into uac2 | Reinhard Panhuber | |
| Conflicts: src/device/usbd.c src/device/usbd.h src/portable/st/synopsys/dcd_synopsys.c | |||
| 2020-08-16 | Add EP close. Fix bug in set_interface within audio. | Reinhard Panhuber | |
| 2020-08-11 | use usbd_edpt_open in bth driver | hathach | |
| 2020-08-07 | allow application driver to overwrite built-in one | hathach | |
| - position application driver before built-in - remove dcd.h from public include. | |||
| 2020-08-01 | correct isr context for nrf DCD_EVENT_UNPLUGGED | hathach | |
| also rename debug lookup to prevent conflict | |||
| 2020-07-29 | Merge pull request #412 from hathach/fix-net-cast-align | Ha Thach | |
| suppress cast-align warnings for net device driver | |||
| 2020-07-25 | Fix structure definition audio_control_range_X_n_t | Reinhard Panhuber | |
| 2020-07-25 | Merge remote-tracking branch 'upstream/master' into uac2 | Reinhard Panhuber | |
| 2020-07-25 | Get and set requests work | Reinhard Panhuber | |
| 2020-07-20 | Make definition of CFG_TUD_AUDIO_CTRL_BUF_SIZE mandatory | Reinhard Panhuber | |
| 2020-07-20 | Implement control EP0 buffer and get rid of CFG_TUD_AUDIO_USE_TX_FIFO | Reinhard Panhuber | |
| 2020-07-19 | Implement all missing A.17 control selectors | Reinhard Panhuber | |
| 2020-07-18 | Add A.17.4 - Terminal Control Selectors | Reinhard Panhuber | |
| 2020-07-17 | add new name warning to cdc and midi (skip msc, hid warning for now) | hathach | |
| 2020-07-17 | Intermediate commit. | Reinhard Panhuber | |
| 2020-07-16 | rename CFG_TUD_MSC_BUFSIZE to CFG_TUD_MSC_EP_BUFSIZE | hathach | |
| rename CFG_TUD_HID_BUFSIZE to CFG_TUD_HID_EP_BUFSIZE | |||
| 2020-07-16 | add fs & hs config for cdc_msc_freertos, midi_test, msc_dual_lun | hathach | |
| 2020-07-16 | add tud_speed_get() | hathach | |
| - define both fs and hs configuration descriptor - rename CFG_TUD_CDC_EPSIZE to CFG_TUD_CDC_EP_BUFSIZE with default size of 64 for FS, and 512 for HS | |||
| 2020-07-10 | Improve comment on CDC tud_cdc_write_available() | Craig Hutchinson | |
| Fixes #460 | |||
| 2020-07-08 | Merge pull request #447 from hathach/add-stm-hs | Ha Thach | |
| Add support for STM32 OTG HS core | |||
| 2020-07-01 | fix dfu-rt to response to SET_INTERFACE and DFU_GETSTATUS | hathach | |
| fix #450 | |||
| 2020-06-30 | Merge branch 'master' into add-stm-hs | hathach | |
| 2020-06-20 | Call tud_cdc_tx_cb right after flush to keep tx fifo full | Gavin Li | |
| 2020-06-20 | Merge branch 'master' into uac2 | Reinhard Panhuber | |
| Conflicts: src/device/usbd.c | |||
| 2020-06-20 | Get update from tinyusb. | Reinhard Panhuber | |
| 2020-06-18 | Add tx callback to cdc device | Gavin Li | |
| Useful for continuous transmission of data, which is difficult currently because there is no notification of tx completion. | |||
| 2020-06-17 | Fix IAR warnings. | Mengsk | |
| Pa039 : use of address of unaligned structure member. Pe188: enumerated type mixed with another type. | |||
| 2020-06-16 | fix hs port1 build with net endpoint | hathach | |
| 2020-06-13 | Fix mic audio descriptor, fix too strict check on IAD desc. in usbd.c | Reinhard Panhuber | |
