User Activity

I am using the ST-Link CLI tool in windows.I am able to progam a virgin unit and after a power cycle the correct software is runningHowever a need to make a testjig setup. The unit is powered by USB so after programming I need to reset the unit to ru...
I am trying to get USB CDC working for the Nucleo-144 board. Where can I find an example application to run on the board?
I am trying to debug my USB and in the process I am going through all the registers defined in the datasheet vs stm32h745xx.h file and I see that in some cases the .h file has registers defined that is not in the datasheetGUSBCFG_CTXPKT : in .h but n...
I am trying to make USB work on a custom board. On our board the VBUS and ID lines from the USB-B connector is left floating, Because we always want to be in device modeSo to compensate for this I am using B-peripheral session valid override. This in...
I am trying to get the device working but I cant seem to get the basic working.Code :USB->GRSTCTL |= USB_OTG_GRSTCTL_CSRST; do {   if (++count > 200000U)   {     return TIMEOUT;   } } while ((USB->GRSTCTL & USB_OTG_GRSTCTL_CSRST) == USB_OTG_GRSTCTL_C...