Skip to content

Commit

Permalink
Disable new handler installation check for XMC1000 (FreeRTOS#1132)
Browse files Browse the repository at this point in the history
Disable handler checking in XMC1000 demo
  • Loading branch information
jefftenney authored Dec 11, 2023
1 parent 012e618 commit fee933f
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ to exclude the API function. */
header file. */
#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); }

/* Disable the runtime check on the installation of the FreeRTOS handlers. The
port code that performs the check expects the handlers to be installed directly
into the vector table. However, XMC1000 has a ROM-based vector table, so it does
not contain the OS handler vectors directly. */
#define configCHECK_HANDLER_INSTALLATION 0

/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS
standard names - or at least those used in the unmodified vector table. */
#define xPortPendSVHandler PendSV_Handler
Expand Down

0 comments on commit fee933f

Please sign in to comment.