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

How to write data to flash on an STM32F413ZH

HelloI'm trying to read and write data to the flash on a STM32F413ZH using Keil MDK-ARM. I've been using the following code:uint32_t Flash_Address1 = 0x08140066; uint32_t Flash_Address2 = 0x08140067;   uint8_t Data[4] = {0x66, 0x77, 0x88, 0x99 };   v...

ron_w by Associate III
  • 1729 Views
  • 4 replies
  • 0 kudos

FT5436 compatibility with FT5336 from STM32F746-DISCO

Hello,I have made a custom board based on the STM32F746. I am using a touch panel which uses the FT5436. My question is: are the FT5336 drivers provided by with the STM32F746 discovery board drivers compatible with the FT5436? I cannot make it work. ...

YTalh.1 by Associate II
  • 1522 Views
  • 5 replies
  • 1 kudos

Is this a correct code modification?

// stm32f1xx_hal_rtc.c line 827sTime->Seconds = (uint8_t)((counter_time % 3600U) % 60U);// to thissTime->Seconds = (uint8_t)(counter_time % 60U);

Imla by Associate
  • 1059 Views
  • 5 replies
  • 0 kudos

STM32H7 TCM RAM access speed

Reference manual says that TCM RAMs are accessible at the maximum clock speed without any latency, but to perform accesses at a CPU speed higher than 520 MHz, one must disable the ECC on this RAM through the CPUFREQ_BOOST option byte. What happens if...

MMn.2 by Associate
  • 2097 Views
  • 6 replies
  • 0 kudos