Jim Morris

Results 13 comments of Jim Morris

o_flag_t is not a uint_t in certain cases (https://github.com/greiman/SdFat/blob/master/src/FatLib/FatApiConstants.h#L29) if USE_FCNTL_H is not defined it is 32bits. In the case of a newlib system it is 32 bits not 8...

FWIW It seems to work fine for me on my 3.5 using the latest TeensyDuino 1.45 and not changing boards.txt or usb_desc.h, just using the ones in TeensyDuino. It did...

I have the same issue with a microsoft USB webcam. This used to work, but after upgrading the OS to Ubuntu 22.04 it started to core dump. The fix above...

I will add a pull request soon which adds the ! and ~ feed hold. However they are not instantaneous, but if you set the segments to 1mm then the...

Thank you. I am continuing to work on this by comoparing the setuop with the STM32H7 HAL. I think this maybe a Fifo setup issue, as the H7 has a...

Ok so I got it to work with an ugly hack :) The STM32H7 HAL does this ``` HAL_PCDEx_SetRxFiFo(&g_hpcd, 0x80); HAL_PCDEx_SetTxFiFo(&g_hpcd, 0, 0x40); HAL_PCDEx_SetTxFiFo(&g_hpcd, 1, 0x80); ``` so I basically...

FYI the H7 docs say... ``` Device RxFIFO = (5 * number of control endpoints + 8) + ((largest USB packet used / 4) + 1 for status information) +...

I think the 11 needed to be 13, but I just set it to 0x80 (128) which is what the STM HAL sets it to. BTW I made a number...

Oh I also had to explicity do `#undef USB_OTG_HS` in the config, because for some reason the STM Hal include files set it regardless if you are using FS or...

The problem is I do not use that device, on the H7 there are two USB controllers one is HS and needs an external PHY and one is FS and...