STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

DMA burst mode dont work correctly

I want to generate an arbitrary wave form on channel1 and channel2 of timer1. I use dma burst mode and other:MCU: STM32f401CCU6Frequency: 84 MhzTIM1 PSC: 84-1TIM1 Counter Mode: Center aligned mode 1TIM1 RCR: 1TIM1 ARR: 1000TIM1 frequency is 500 and t...

0693W00000AP05BQAT.jpg 0693W00000AP05kQAD.gif 0693W00000AP06TQAT.gif
eqbal by Associate II
  • 746 Views
  • 3 replies
  • 0 kudos

HAL_ERROR when i try to erase the flash memory

Hello, i'm using STM32G071RB and i need to write on the Flash Memory.i check if i have wrote on it before. If i did, i try erase the page to re-write. At this point, i just get a HAL_ERROR of the function HAL_FLASHEx_Erase(&EraseInitStruct, &PageErro...

FVarg.1 by Associate
  • 2044 Views
  • 2 replies
  • 0 kudos

nBOOT1 pin on STM32L073RZT6

Dear ST Community,I am now designing a PCB with the STM32L073RZT6. Could you please advise where the BOOT1 pin is located?Inside the datasheet, the only thing that I found is the statement:Boot modes At startup, BOOT0 pin and nBOOT1 option bit are us...

VMeto.1 by Associate II
  • 782 Views
  • 3 replies
  • 0 kudos

STM32H755 stalls when SDMMC interface is enabled

Hi Folks,I experienced a weird problem when I tried to use the SDMMC interface on the STM32H755 Nucleo board.I set up a very basic test program. I use the template for the H755 Nucleo in CubeIDE. I set the H7 clock frequency to 480 MHz and the M4 clo...

Dual Bank Memory Variants

Folks,When you have a dual bank STM32, at run time, is it just one contiguous area of memory. So, for example, if you were running out of the top of bank 1 and the next instruction was in bank 2, would the program seamlessly just jump from running ou...

DiBosco by Senior II
  • 362 Views
  • 2 replies
  • 0 kudos

Resolved! How to initialize and use TIM2 for output compare?

I am using the STM32F303CB controller.System Clock - 72MHz APB1ENR - 72MHz for TimerI followed the below steps as per the reference manual.Timer2 Initialization: RCC->APB1ENR|= RCC_APB1ENR_TIM2EN;   TIM2->ARR = 72000-1;   TIM2->CCR1= 4000;   TIM2->...