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

Windows Driver for STM32F767 Nucleo-144 developement board?

I've downloaded "en.stsw-link009" and unzipped. When I try to have Window 7 load the driver for this development board it gives me: "Windows found the driver but the style of the INF is different from what was requested."Is the development's debug ...

DLewi.1 by Associate
  • 649 Views
  • 1 replies
  • 0 kudos

Issue starting my microcontroller in my own design.

Dear all, I´m using the BlueNRG-LP microcontroller and STLink-SETV3. My firmware works perfectly in the Steval-IDB011V1 DK. I´m using BlueNRG-LP-X-Flasher Utility v4.1.0 to program the microcontroller through the STLink-SETV3 programmer and I can pro...

ARamí.1 by Associate II
  • 528 Views
  • 2 replies
  • 0 kudos

Safe multitasking

What is the best way and safer way to make one led blinked and, at the same time, control one motor?

Wdowa.1 by Associate II
  • 490 Views
  • 1 replies
  • 0 kudos

Resolved! Looking for preloaded code on nucleo-h755zl-q

Hello,I recently got a nucleo-h755zl-q and on the back of the info card that came with says "The demo software and several software examples that allow you to use the stm32 Nucleo features are available at st.com/en/product/nucleo-h755zi-q" however I...

BFage.1 by Associate II
  • 498 Views
  • 1 replies
  • 0 kudos

stm32g4 adc & dma &timer

I have stm32g441 Chip. ADC1 used in external trigger  mode and triggered by Time1Channel4 (OC4REF),But when T1Ch1- T1Ch3 worked in Center-aligned mode,T1CH4 has not Worked,ADC1 DMA interrupt occured,and occured in cycle.

wjun.1 by Associate
  • 530 Views
  • 1 replies
  • 0 kudos

STM32H7~How to allocate arrays to a certain location

I tried adding this to the linker file/* used by the startup to initialize data */ _sidata_RAM_D3 = LOADADDR(.data_RAM_D3); /* Initialized data sections goes into RAM_D3, load LMA copy after code */ .data_RAM_D3 :  {  . = ALIGN(4);  _sdata_RAM_D3 = ....

CFran.1 by Associate II
  • 3392 Views
  • 9 replies
  • 0 kudos

Resolved! Hard fault when writing to FLASH->OPTKEYR

Wondering why I'm getting a hard fault when writing to the FLASH option key register on an STM32G071RBT6 (Nucleo board).I first make this call, (running from flash):LL_AHB1_GRP1_EnableClock(LL_AHB1_GRP1_PERIPH_FLASH);Then, running from RAM, do the fo...

BCoch by Senior
  • 1222 Views
  • 2 replies
  • 0 kudos

Using HSEM of STM32H7 ( sharing data )

Hi, I am working in project in which I use an STM32H745, So am trying to share data between the two CPUs.first I create structure in the two CPU like this :I used the same memory addressstruct shared_data { uint8_t drdyM4; float32_t data_to_M7[6][1...