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

Flash memory store and call functions from stored area

MEMORY{RAM (xrw)   : ORIGIN = 0x20000000, LENGTH = 320KFLASH (rx)   : ORIGIN = 0x8000000, LENGTH = 1536K MYFUNCTION (xr)  : ORIGIN = 0x08004000 , LENGTH = 1k MY_VARS (xrw) : ORIGIN = 0x08005000, LENGTH = 1K}/* Define output sections */SECTIONS{ /* Th...

mani s by Associate III
  • 328 Views
  • 0 replies
  • 0 kudos

STM32F07 USART3 Interrupt Enable? (한국어)

I am using the STM32F070CBT6 chip, and the compiler is using IAR 8.30.1.Receive interrupt is not applied to USART3 enabled. We have confirmed that USART1 and USART2 are functioning normally.The transmit function of USART3 is also possible, but only t...

Resolved! DMA multibuffer current target and NDTR

Hey everyone,I've got a weird issue.I'm running a multibuffer DMA and although everything works well at a point, I'm terminating the DMA transfer.It's a multibuffer DMA moving data from GPIO IDR to SRAM.When an interrupt is triggered, I should stop t...

con3 by Senior
  • 1364 Views
  • 6 replies
  • 0 kudos

STM32 Long period timer interrupt

I am using a STM32F401RE board and I want a timer interrupt to trigger every minute. I have tried it using timers. Here is my code: main.c  TIM_HandleTypeDef htim10;  int main(void)  {  HAL_Init();     SystemClock_Config();    // Some other code  MX_...

pbdiazam by Associate II
  • 1809 Views
  • 3 replies
  • 0 kudos

PROBLEM WITH PERIPHERAL POST-INCREMENT USING DMA - STM32F100VC

Hi,I am using DMA to transfer the conversion of two injected channels of the ADC module (registers ADC1_JDR1 & ADC1_JDR2) to a buffer in ram. The conversion is started by software (JSWSTART).Since the transfer is for two consecutive records, I have s...

FTrnp by Associate
  • 802 Views
  • 3 replies
  • 0 kudos

Measuring capacitance STM32F103 using HAL_Library

Hi, i'm trying to measure capacitance using a single GPIO pin ( found an article online a guy used this method to calculate the diode reverse current so i'm guessing its possible to measure capacity aswell). Firstly i use the pin as output and charge...

RSabl by Associate II
  • 1710 Views
  • 4 replies
  • 0 kudos

How to program STM32F407 using STM32Cube programmer?

Can't program STM32F407 because address is not supported for SWD/JTAG port.Hello, I am trying to begin developing drivers for the STM32F407VG. I am using Atollic TrueSTUDIO as IDE. For loading the programs to the board I am using Exteral Tools config...

0690X000006Df9EQAS.png
MAhme by Associate
  • 652 Views
  • 1 replies
  • 0 kudos

Changing the pin configuration at run-time

Posted on July 17, 2017 at 09:17 Hi All, I would like to read a resistive touch screen with a STM32F407 micro butwithout a driver chip. For that I should change the pin functionality at run-time. First I set the configurations like below: ...