Skip to main content
SJant.1
Associate III
February 24, 2021
Solved

I need to know if I can find a file similar to attached one for STM32L4S5ZI

  • February 24, 2021
  • 2 replies
  • 1340 views

Hi,

I work for Analog devices and presently working to port the software from our hardware to the STM32L4S5ZI. I needed a file that is similar to the attached file which is for our device.

Please let me know how to get this file for the STM32L4S5ZI. I created projects using STM32CubeMX but I dont see any such file which gives the register details which can directly be taken as a pointer.

This topic has been closed for replies.
Best answer by Tesla DeLorean

ST uses C structures as a way to communicate replicated peripheral instances.

STM32Cube_FW_L4_V1.14.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4s5xx.h

Something you could mechanically process with a script, perhaps an .SVD file?

C:\Keil5xx\Arm\Packs\Keil\STM32L4xx_DFP\2.5.0\CMSIS\SVD\STM32L4S5.svd

2 replies

Tesla DeLorean
Tesla DeLoreanBest answer
Guru
February 24, 2021

ST uses C structures as a way to communicate replicated peripheral instances.

STM32Cube_FW_L4_V1.14.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4s5xx.h

Something you could mechanically process with a script, perhaps an .SVD file?

C:\Keil5xx\Arm\Packs\Keil\STM32L4xx_DFP\2.5.0\CMSIS\SVD\STM32L4S5.svd

Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..
SJant.1
SJant.1Author
Associate III
February 26, 2021

Thank you Tesla for your quick response.

Got the file at the location as you rightly mentioned.