Skip to main content
Dick Lin
Senior
May 7, 2018
Solved

STM32L4 ISR source

  • May 7, 2018
  • 2 replies
  • 1606 views
Posted on May 07, 2018 at 18:26

Hi,

Is there any doc mention about STM32L4 (STM32L4996 and STM32L4A6) ISR source? The doc I found from both ST and ARM reference manual do seems list all of the ISR source.

Thanks,

****

Note: this post was migrated and contained many threaded conversations, some content may be missing.
    This topic has been closed for replies.
    Best answer by Tesla DeLorean
    Posted on May 07, 2018 at 18:32

    Hard to decipher

    http://www.st.com/content/ccc/resource/technical/document/reference_manual/02/35/09/0c/4f/f7/40/03/DM00083560.pdf/files/DM00083560.pdf/jcr:content/translations/en.DM00083560.pdf

     

    See pg 396 of RM0351 Rev 6, Table 57 'Vector Table'

    The 'position' field indicates the ISR managed by the NVIC

    2 replies

    Tesla DeLorean
    Tesla DeLoreanBest answer
    Guru
    May 7, 2018
    Posted on May 07, 2018 at 18:32

    Hard to decipher

    http://www.st.com/content/ccc/resource/technical/document/reference_manual/02/35/09/0c/4f/f7/40/03/DM00083560.pdf/files/DM00083560.pdf/jcr:content/translations/en.DM00083560.pdf

     

    See pg 396 of RM0351 Rev 6, Table 57 'Vector Table'

    The 'position' field indicates the ISR managed by the NVIC

    Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..
    Dick Lin
    Dick LinAuthor
    Senior
    May 7, 2018
    Posted on May 07, 2018 at 18:49

    Hi Clive,

    Got it. Thanks.

    Is there any .h file already define all of those ISR number?

    Thanks,

    Dick

    On Mon, May 7, 2018 at 9:34 AM, Clive One <st-microelectronics@jiveon.com>

    Tesla DeLorean
    Guru
    May 7, 2018
    Posted on May 07, 2018 at 18:53

    STM32Cube_FW_L4_V1.11.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4a6xx.h

    Via

    STM32Cube_FW_L4_V1.11.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h

    and define STM32L4A6xx on compiler command line

    Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..
    Pavel A.
    Super User
    May 7, 2018
    Posted on May 08, 2018 at 01:07

    Open the project in the IDE (Keil or whatever you have). Build the project.

    Then right click on the identifier and select 'go to definition'.

    The demo projects should build without any errors. Unless you open the project in a wrong IDE or there's some problem with installation of the IDE.

    -- pa