STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! USBH_GetDescriptor Failure. Incompatible USB?

Hello,I am having an issue connecting to specific USB mass storage devices with my STM32F769 USB host using the BSP. It seems like the USBH_GetDescriptor function never returns for USB flash sticks with a specific HID PID combination. I am considerin...

ZThat by Senior
  • 279 Views
  • 2 replies
  • 0 kudos

Resolved! BOOTMGR IS COMPRESSED USB Error Message

Hi All,I have been utilizing the STM32F7 to take and store pictures on USB 2.0 sticks.I have repeatedly run into variation across sticks that requires that I modify the MSC Host HAL supplied by STM. The most recent issue that I have run into is getti...

0690X00000AsY7OQAV.jpg
ZThat by Senior
  • 234 Views
  • 1 replies
  • 0 kudos

Stm32f4 data read/write from usb

Hi,I am triying to do a mp3 player using usb.Firstly,I am triying simple things writing message to usb or reading message from usb.I compiled code there is 0 error 0 warnigs but it didnt work.I am sharing code waiting for your answers.Thank you. s...

FOztu.1 by Associate II
  • 337 Views
  • 4 replies
  • 0 kudos

There is a bug in TIM's work on stm32h750, but on stm32f407 everything works fine. Please check the results on your controller.

#include "stm32h7xx_hal.h"extern void SystemClock_Config_16MHz(void);uint32_t DBG32[10];//======================void delay(uint32_t wait){ while(wait--);}//==================void Test_TIM(){     HAL_Init();    SystemClock_Config_16MHz(); // my quarc ...

ignatyy by Associate II
  • 454 Views
  • 8 replies
  • 0 kudos

I am trying to jump from my application into the bootloader. It works as long as I pull the pin BOOT0 high, which in my case means setting a jumper. Is there a way to get into the bootloader while BOOT0 is pulled low? My device is STM32L412.

Device: STM32L412Code: typedef void (*pFunction)(void);   volatile uint32_t addr = 0x1FFF0000; uint32_t JumpAddress = *(__IO uint32_t*) (addr + 4); pFunction Jump_To_Boot = (pFunction) JumpAddress;   #if defined(USE_HAL_DRIVER) HAL_RCC_DeInit(); #en...

SBros.1 by Associate II
  • 178 Views
  • 2 replies
  • 0 kudos