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

STM32N6 Debug Jump From FSBL to Secure Application

Currently, I have a project using a secure application for the STM32N6570-DK. I am able to run and debug the FSBL and Application with the system in Dev Boot, but have yet to be able to attach and debug when booting from the external flash (Boot1 and...

aroby95 by Associate II
  • 998 Views
  • 5 replies
  • 0 kudos

Resolved! STM32f767 SWD pin Schematic

Hello.. can anyone advise the SWD pin for F767? and how these are connected to F767? PA13 PB3? Any schematic will be great !! I'm using it for debugging. Can anyone advise? 

F_open looping

Using Nucleo-H753ZITrying to write to SD card using:  FATFS FatFs; FIL file; FRESULT FR_Status; FATFS *FS_Ptr; FR_Status = f_mount(&FatFs, SDPath, 1); if (FR_Status != FR_OK) { printf("Error! While Mounting SD Card, Error Code: (%i)\r...

Chris5 by Associate
  • 230 Views
  • 1 replies
  • 0 kudos

Protection of SWD lines :: STM32L011

Hello,Is it recommended to implement an ESD protection on SWD lines of STM32L011D3/D4 mCU? I went through "Getting started with STM32L0xx hardware development" document and there is a Figure 15 which suggests to connect SWD lines direct to programmin...

D3jan by Associate II
  • 250 Views
  • 1 replies
  • 0 kudos

STM32H7 slave mode timing issue above 22.8 MHz

Hello all,This is regarding the the problem after recent development from 18MHz to 22.8 MHz of operational speed of STM as slave operating with DMA transfer and SPI mode 01. Although the data sheet suggest maximum achievable speed of 31 MHz - I made ...

Time-1.png Time-2.png Time-3.png Time-4.png
Amit_RS by Associate II
  • 497 Views
  • 7 replies
  • 2 kudos

Resolved! STM32 ADC not working?

Ive been trying to get active passthrough between my adc and dac from pa1 and pa0 respectively. Ive confirmed all my functions are being called but i just cant seem to get any value loaded into my DAC. if i give it a value manually, i get the correct...

plsWork by Associate II
  • 642 Views
  • 1 replies
  • 1 kudos

Resolved! How to read state of SYS WKUP pin ?

I am using the  Nucleo-L433RC-P board and have configured pin PC13 as SYS WKUP (for the blue top button).How can I read the state of this pin when the processor wakes up, because HAL_GPIO_ReadPin will not work.I am sure I used a function or macro to ...

Interrupt curiosity (STM32G491)

Hello friends : )I've recently tested the NUCLEO-G491RE board for an upcoming redesign.Current design relies on quite tough interrupt latency so here is where I begun.As I understand, with no FPU usage (in isr) (ASPEN + LSPEN = 0) one could expect up...