| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-01-15 | Merge pull request #271 from majbthrd/nucoutmps | majbthrd | |
| nuc121: fix handling of OUT transfers larger than max packet size | |||
| 2020-01-15 | nuc121: better fix for handling large OUT transfers | Peter Lawrence | |
| 2020-01-14 | nuc121: fix handling of OUT transfers larger than max packet size | Peter Lawrence | |
| 2020-01-15 | Merge pull request #270 from hathach/develop | Ha Thach | |
| Add LED to NUC BSP | |||
| 2020-01-15 | Merge pull request #269 from antmicro/volatile_buffers_fix | Sean Cross | |
| dcd_eptri: Fix rx_buffer/tx_buffer volatile annotation | |||
| 2020-01-14 | dcd_eptri: Fix rx_buffer/tx_buffer volatile annotation | Mateusz Holenko | |
| This makes `rx_buffer` and `tx_buffer` *pointers* volatile in order to avoid caching them in a register. The original notation meant "a pointer to a volatile value" (equivalent of `volatile uint8_t *`). This resulted in `while(rx_buffer[ep_num] != NULL) ;` loop to get stuck forever, even though the IRQ handler set the `rx_buffer[ep_num] = NULL`. | |||
| 2020-01-14 | skip nuc flash verify | hathach | |
| 2020-01-14 | more nuvoton support | hathach | |
| - add LED for nutiny nuc 121, 125s, 126v - flash target to use nuvoton's openocd fork | |||
| 2020-01-12 | Merge pull request #267 from majbthrd/adatypo | Ha Thach | |
| correct apparent Adafruit typo in SAMD21 board.mk | |||
| 2020-01-11 | correct apparent Adafruit typo in SAMD21 board.mk | Peter Lawrence | |
| 2020-01-11 | Merge pull request #266 from hathach/develop | Ha Thach | |
| follow up to PR #240 | |||
| 2020-01-11 | add cdc_dual_ports example to actionci | hathach | |
| 2020-01-11 | echo to both serial at once | hathach | |
| 2020-01-11 | clean example | hathach | |
| 2020-01-11 | Merge pull request #240 from majbthrd/master | Ha Thach | |
| implement multiple interfaces support | |||
| 2020-01-10 | Merge pull request #265 from hathach/develop | Ha Thach | |
| add raytac mdbt50q rx dongle | |||
| 2020-01-10 | add raytac mdbt50q rx dongle | hathach | |
| 2020-01-10 | Merge pull request #264 from hathach/develop | Ha Thach | |
| Added BSP for stm32f401/f411 blackpill | |||
| 2020-01-10 | clean up | hathach | |
| 2020-01-10 | added stm32f401 blackpill | hathach | |
| 2020-01-10 | clean up HSE_VALUE for stm32 | hathach | |
| 2020-01-10 | clean up flash-stlink | hathach | |
| 2020-01-10 | add generic flash-stlink | hathach | |
| 2020-01-10 | Merge pull request #263 from arturo182/patch-1 | Ha Thach | |
| Fix some style issues in the README | |||
| 2020-01-10 | Fix some style issues in the README | arturo182 | |
| 2020-01-10 | added stm32f411 blackpill | hathach | |
| 2020-01-09 | Merge pull request #262 from hathach/develop | Ha Thach | |
| follow up to #261 | |||
| 2020-01-09 | follow up to #261 | hathach | |
| - fix button pullup - flash using teensy_loader_cli - update boards.md | |||
| 2020-01-09 | add trigger.yml | hathach | |
| 2020-01-09 | Merge branch 'master' into develop | hathach | |
| 2020-01-09 | Merge pull request #261 from ladyada/teensy4 | Ha Thach | |
| add a rough bsp. UART on D0/D1, LED on D13, button on D12 | |||
| 2020-01-09 | add a rough bsp. UART on D0/D1, LED on D13, button on D12 | Lady Ada | |
| 2020-01-07 | Merge pull request #259 from majbthrd/nuc121 | Ha Thach | |
| add Nuvoton NUC121/NUC125/NUC126 | |||
| 2020-01-07 | Merge pull request #1 from hathach/majbthrd-nuc121 | majbthrd | |
| Majbthrd nuc121 | |||
| 2020-01-07 | added Peter into contributors doc | hathach | |
| 2020-01-07 | fix ci build | hathach | |
| - nuc 121/125: add CFG_EXAMPLE_MSC_READONLY since it is not enough SRAM to hold MSC disk - nuc 126: drop i2c source files in compile list due to SDK driver issue. | |||
| 2020-01-07 | skip travis build | hathach | |
| 2020-01-07 | Merge branch 'master' into nuc121 | Ha Thach | |
| 2020-01-05 | Merge pull request #254 from majbthrd/multi-setconfig | Ha Thach | |
| gracefully handle multiple SET_CONFIGURATION requests | |||
| 2020-01-04 | dcd_nuc121: allow user ZLP transfers to get a callback | Peter Lawrence | |
| 2020-01-04 | add Nuvoton NUC121/NUC125/NUC126 | Peter Lawrence | |
| 2020-01-04 | change token name | hathach | |
| 2020-01-04 | curl | hathach | |
| 2020-01-03 | curl again | hathach | |
| 2020-01-03 | change to token | hathach | |
| 2020-01-03 | try to trigger mynewt example | hathach | |
| 2020-01-01 | Merge pull request #257 from gsnxp/rt1010fix | Ha Thach | |
| fixed build issue with i.MXRT1010-EVK, corrected typo in examples/readme | |||
| 2019-12-30 | fixed build issue with i.MXRT1010-EVK, corrected typo in examples/readme | Greg Steiert | |
| 2019-12-30 | fix missing parentheses in TU_MIN and TU_MAX macros (#256) | majbthrd | |
| 2019-12-30 | Let device respond to endpoint requests on EP0 (#251) | Jeremy Herbert | |
| Since endpoint 0 is used for control requests, it doesn't have a class driver attached to it. As such, the corresponding `_usbd_dev.ep2drv` entry points to driver `0xFF`, which is invalid and this makes the `TU_ASSERT(drvid < USBD_CLASS_DRIVER_COUNT);` line fail, and eventually causes an endpoint stall. So as-is the stack cannot respond to any endpoint requests on endpoint 0. However, standard requests on endpoint 0 do not need a class driver to produce a valid response. This commit changes the order of execution so that the assert is only checked if the endpoint is not 0. | |||
