Skip to main content
spcamateur
Visitor II
March 15, 2019
Solved

How to handle interrupts in SPC5Studio generated application : boot.s in SPC56EL60L3 (HW/SW mode) ?

  • March 15, 2019
  • 1 reply
  • 1172 views

 * Unhandled exceptions handler for core 0.

     */

    .align   2

    .weak    _IVOR0, _IVOR1, _IVOR2, _IVOR3

    .weak    _IVOR4, _IVOR5, _IVOR6, _IVOR7

    .weak    _IVOR8, _IVOR9, _IVOR10, _IVOR11

    .weak    _IVOR12, _IVOR13, _IVOR14, _IVOR15

    .weak    _IVOR32, _IVOR33, _IVOR34

    .weak    _unhandled_exception0

    .type    _unhandled_exception0, @function

_IVOR0:

_IVOR1:

_IVOR2:

_IVOR3:

_IVOR4:

_IVOR5:

_IVOR6:

_IVOR7:

_IVOR8:

_IVOR9:

_IVOR10:

_IVOR11:

_IVOR12:

_IVOR13:

_IVOR14:

_IVOR15:

_IVOR32:

_IVOR33:

_IVOR34:

_unhandled_exception0:

    se_b    _unhandled_exception0

This topic has been closed for replies.
Best answer by Erwan YVIN

Hello ,

The handle interruption are in this file (OSAL Component)

SPC56ELxx_RLA IRQ Test Application for DiscoveryPlus\components\spc56elxx_osal_component_rla\lib\src\ivor.s

You can update it by using the patch mode mecanism

Best regards

Erwan

1 reply

Erwan YVIN
Erwan YVINBest answer
ST Employee
March 18, 2019

Hello ,

The handle interruption are in this file (OSAL Component)

SPC56ELxx_RLA IRQ Test Application for DiscoveryPlus\components\spc56elxx_osal_component_rla\lib\src\ivor.s

You can update it by using the patch mode mecanism

Best regards

Erwan