[STM32F303][USB FS] Isochronous endpoint: 1 ms frame with a large buffer.Hello,I would like to know how I could setup an isochronous endpoint with a large payload.USB specification and RM0316 manual:USB 2.0 specification report that in FS mode, it is...
Posted on November 09, 2015 at 14:59
Hello,
I'm trying to write an I2C application that should read/write one or more bytes as master with polling mode.
I'm able to write one ore more bytes and read one byte, but when I try to read 2 bytes...
DS describe USB as USB2.0 compliant. In RM the phrase "However, the applicable size is limited by the available buffer memory" is the only that reports a limitation.In my opinion is not pretty clear this restriction.Thanks for your support. I'll sele...
The /2 is needed because ISOC use double buffer feature that permits to switch from ADDRn_Tx and ADDRn_Rx of a single ep foreach frame.Is it correct?However also without double buffer the upper limit is 480B.With 303xE I could use all 1024B (without ...
Posted on November 11, 2015 at 18:31
After many tries this is a synthesizedversion of my solution
I2C_GenerateSTART(I2Cx, ENABLE);
WAIT_FOR_CONDITION_OR_RESET_ON_TIMEOUT(I2C_GetFlagStatus(I2Cx, I2C_FLAG_SB) == SET);
I2C_Send7bitAddres...