STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

CAN rollover between FIFOs after overflow in pooling mode

Hi everyone!I'm working with STM32F303. I'm configuring the CAN peripheral with HAL libraries for pooling mode operation. I'm wondering if there is a method to check only the FIFO0 fill level and configure the peripheral to move FIFO1 messages into F...

RGalvez by Associate II
  • 412 Views
  • 0 replies
  • 0 kudos

Boot to RAM from SD card on STM32H7...

Greetings!I've got custom hardware running on an ST32H7. I'm trying to load an image from the sdcard into off-chip RAM for execution. RAM's at 0xC0000000, and I think I've set the MPU configuration correctly: // Region 2 is the external RAM MPU_InitS...

Shouldn't DMA_HandleTypeDef State be volatile?

Current structure is:typedef struct __DMA_HandleTypeDef { ... HAL_DMA_StateTypeDef State; /*!< DMA transfer state */ ... } DMA_HandleTypeDef;Interrupts can change the State value, but it's not volatile, so the co...

Delivery Time of STM32H743ZIT6

Hi, I would have a question regarding the lead time of the STM32H743ZIT6. We use the part in multiple boards in our platform which is currently in prototype stadium. Fro the next charges of PCBs we are trying to order some uControllers (STM32H743ZIT6...

Using RTC Alarm as a 4 hour timer. Getting the current time using HAL RTC API, adding 4 to the current hours value and setting the alarm for that time by keeping the minutes as the current time. The Alarm interrupt is late by 2-3 minutes. Why?

The STM32F030CCT6 is put to Stop mode. It wakes up on getting the RTC ALARM interrupt which is being used as a 4 hour timer. (The wakeup timer of RTC is being used for another purpose hence this work around). On getting the interrupt, the MCU calcul...

MY.2 by Associate
  • 898 Views
  • 2 replies
  • 0 kudos

ADC noise issue (pin PA0) STM32F746

ADC noise issue (pin PA0) STM32F746 microcontrollerPlease explain the presence of increased noise at the PA0 pin of the STM32F746ZGT6 microcontroller in the ADC mode.ADC parameters:• Clock frequency - 13.5 MHz (with a prescaler 4)• Sampling frequency...

PRV by Associate II
  • 1210 Views
  • 4 replies
  • 0 kudos

STM32F072 I2C slave Receive callback

Hello, I am using STM32F072. I want to use device in I2C slave and using HAL driver. I am looking to get callback when complete data is received at I2C slave side. I found function HAL_I2C_Slave_Receive_IT() which is kinda similar but here I need to ...