cancel
Showing results for 
Search instead for 
Did you mean: 

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

SJant.1
Associate III

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.

1 ACCEPTED SOLUTION

Accepted Solutions

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 Venmo Up vote any posts that you find helpful, it shows what's working..

View solution in original post

2 REPLIES 2

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 Venmo Up vote any posts that you find helpful, it shows what's working..
SJant.1
Associate III

Thank you Tesla for your quick response.

Got the file at the location as you rightly mentioned.