2021-02-24 05:38 AM
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.
Solved! Go to Solution.
2021-02-24 07:29 AM
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
2021-02-24 07:29 AM
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
2021-02-26 04:11 AM
Thank you Tesla for your quick response.
Got the file at the location as you rightly mentioned.