STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32f446 Usb Dfu Bootloader Problem at High Temperature

Hello,Thank you in advance for your assistance.I have designed a circuit with STM32F446. I am using an external 25MHz crystal. The main application program runs fine without any issues, and USB communication works. However, on some boards, I am unabl...

mcu.jpg crystals.jpg
bymrz by Associate II
  • 1985 Views
  • 18 replies
  • 2 kudos

USBPD EPR mode

I have tried setup STM32G071 Sink port and connected with Apple 140w. I want to request 140W but it's seem STM32 not yet supported EPR mode in PD core. Do you have any examples for EPR in STM32?

H V N D by Associate III
  • 1427 Views
  • 7 replies
  • 2 kudos

ST-LINK stoppes SPI clock

Posted on March 12, 2015 at 14:34I have problems with my IAR and ST-LINK debugger tool. As soon as I start the debugger, the SPI clock (STM32F103R8 SPI1 at PB3) stops. I use the ST-LINK over SWD. What could I have done wrong? #spi-st-link

bob by Associate II
  • 841 Views
  • 6 replies
  • 0 kudos

Converting pins to GPIO_EXTI after startup

Hello all, I'm working on a custom PCB using the L072RZT6. I want to convert pins PB6 & PB7 from an I2C assignment to GPIO_EXTI during run time. Is that possible with HAL_I2C_DeInit?Currently, the board goes through the pre-generated startup process ...

D_Bell by Associate
  • 355 Views
  • 1 replies
  • 0 kudos

STM32F469 discovery usb mass storage

hello,  sd card write on f469 discovery is working. and now referring to msc_standalone example (which works alone), usbd_storage_if.c file is matched and usb mass storage selected from MX tool. But i cant see the drive coming. can i know steps have ...

GauravK by Senior
  • 514 Views
  • 3 replies
  • 0 kudos

DFSDM STM32F413

while (1) { if (DmaRecHalfBuffCplt == 1) { /* Store values on Play buff */ for (int i = 0; i < 1024; i++) { PlayBuff[2 * i] = (int16_t) SaturaLH((RecBuff[i] >> 8), -32768, 32767); PlayBuff[(2 * i) + 1] = PlayBuff[2 * i]; } HAL_UART_Transmit_DMA(&huar...

Extraction of LSM303dlhc accelerometer data

Hi Sir/Madam,I want to implement a vibration detector using stm32f401vc discovery board which mainly consists of LSM303dlhc mems accelerometer sensor.The problem here is that when I am extracting the data from the sensor ,mostly the data is fluctuati...