Ask questions, find answers, and share insights on STM32 products and their technical features.
An STM tutorial on timers has errors regarding PWM mode, for STM32.The tutorial is: "STM32L4 - Timers : Advanced-control, general-purpose, and basic timers"It is a slide-set, with notes. There are at least a couple versions of it, e.g., a version for...
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...
Here below is the detail of my application.I am running the PWM timer1 at 5Khz in up-down mode. Two interrupts, one in timer counter equal to zero and ADC fast conversion done.Interrupt generates at every timer counter equal to zero then I start the ...
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. ...
// stm32f1xx_hal_rtc.c line 827sTime->Seconds = (uint8_t)((counter_time % 3600U) % 60U);// to thissTime->Seconds = (uint8_t)(counter_time % 60U);
Hi STWe are using STM32L476RG in our product, but we need Firmware update over the feature for our product. Can you provide us any solution for this? Thanks
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...