ch-f
ch-f
Doing tutorial [09.7_USB HID device - custom device lab - solution.zip](https://www.st.com/content/st_com/en/support/learning/stm32-education/stm32-moocs/STM32-USB-training.html) ([reference video](https://www.youtube.com/watch?v=3JGRt3BFYrM)) on firmware 1.12.1 fails, but works on 1.12.0: HID_terminal.exe works two times (sends and recieves data by...
``` --- a/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pcd.c +++ b/Drivers/STM32L0xx_HAL_Driver/Src/stm32l0xx_hal_pcd.c @@ -1851,28 +1851,6 @@ static HAL_StatusTypeDef PCD_EP_ISR_Handler(PCD_HandleTypeDef *hpcd) /* clear int flag */ PCD_CLEAR_TX_EP_CTR(hpcd->Instance, epindex); - if (ep->type != EP_TYPE_BULK) - { - ep->xfer_len =...
The code there seems obviously wrong, it does: ``` if (a) { ... } else if (a || b) { ... } ``` There might be other traps like this...
seems to be the same issue on Firefox 67.0.2, any idea how to increase buffer for Firefox?
Crypto90: just for testing, can you throw those 0x00s out when they do enter the stream?
rsync hangs with some specific files, using 100% of 1 CPU core but without disk nor network activity
Any updates/news/tests on this issue? I'm pretty interested in syncing big images too.
rsync hangs with some specific files, using 100% of 1 CPU core but without disk nor network activity
While we wait for the resolution of rsync's large file handling issue, I've developed an intermediate solution called QuickChunk for my local LAN backup needs. QuickChunk is designed to efficiently...
``` if (ch & UART011_DR_BE) flag = TTY_BREAK; else if (ch & UART011_DR_PE) flag = TTY_PARITY; else if (ch & UART011_DR_FE) flag = TTY_FRAME; uart_insert_char(&uap->port, ch, UART011_DR_OE, ch, flag); ```...
@Athanasius thank you for debugging. I encountered similar issues with some Java programs and SloppyFocus. Removing that old Motif hack finally resolved the problem. @ThomasAdam could we consider removing that...