Skip to main content
Visitor II
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

    Graduate II
    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

    SJant.1Author
    Visitor II
    February 26, 2021

    Thank you Tesla for your quick response.

    Got the file at the location as you rightly mentioned.