Zero Length Packet necessary? (USB STM32F407 VCP bare metal)
I thought if I transfer e.g. 64 bytes I can load pktcnt with a value of 2.One for 64 bytes, second for ZLP?Or do I have to send it manually after IN transfer complete interrupt?
Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
I thought if I transfer e.g. 64 bytes I can load pktcnt with a value of 2.One for 64 bytes, second for ZLP?Or do I have to send it manually after IN transfer complete interrupt?
Greetings Everybody,I am confused whether i cam make STM32F103RE to work as usb host for mass storage ? In CUBE MX it says mass storage class but does it mean i can connect my USB disk to it and transfer data to it ? I know STM32F207ZG has the suppor...
Board: STM32746G-DiscoveryProject: LwIP_HTTP_Server_Netconn_RTOSPosition: ethernetif.c stm32f7xx_hal_conf.h#define MAC_ADDR0 0U#define MAC_ADDR1 2U#define MAC_ADDR2 0U#define MAC_ADDR3 0U#define MAC_ADDR4 0U#define MAC_ADDR5 0UWhen set as abov...
Hi,I need some help to understand the behavior of the bootloader.Currently I use STM32F746 but I will move to STM32F778AI next week.I have several needs from bootloader:Load bootloader if there is no user application.Load user application on start ( ...
I purchased a Nucleo-64 STM32F303RE for beginning a project. I have downloaded the tools, this includes CUBE_MX and CUBE_IDE. I am able to build a project using these tools as instructed. What I want to know is where is the DEMO project that is loade...
typedef void resetvec(void); void cmd_jbl(BaseSequentialStream *chp, int argc, char **argv) // reboot to bootloader { unsigned int t; (void)argc; (void)argv; (void)chp; resetvec *fun; fun = ((uint32_t *)0x1fffc800)...
i am currently using the serial pins and a FTDI chip to communicate with a PC. I want to know if there is a way to use the on board mini USB port or the OTG port to communicate with the PC.
I'm sending a continuous data stream from uC to PC via VCP which is implemented as CDC. During stream every responded IN token for EP1 generates DIEPINT_XFRC, so I'm seeing interrupts:DIEPINT_XFRCDIEPINT_XFRCDIEPINT_XFRC...Now I send something to uC ...
I'm struggling already many days getting the most simple VCP functionality working in my application.I tried implementing the UM1021 usb OTG lib provide as extension on the STD peripheral library from ST, but without succes. After that I tried the s...
I'm need to use a microSD card on my new project, so I decided to test in my evaluation boards. I have a STM32373C-EVAL and a STM3210C-EVAL boards. For the tests I used 2Gb, 4Gb, 8Gb and 16Gb sd cards. Now came the problem, on the STM32373C-EVAL only...