mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-16 02:57:49 -04:00
Merge branch 'main' into main
This commit is contained in:
commit
2d138ab417
1 changed files with 2 additions and 0 deletions
|
@ -666,11 +666,13 @@ static BaseType_t prvCheckValidityOfVectorNumber( uint32_t ulVectorNumber )
|
||||||
/* In use by FreeRTOS. */
|
/* In use by FreeRTOS. */
|
||||||
xReturn = pdFAIL;
|
xReturn = pdFAIL;
|
||||||
}
|
}
|
||||||
|
#if ( configUSE_COMMON_INTERRUPT_ENTRY_POINT == 1 )
|
||||||
else if( xInterruptHandlerTable[ ulVectorNumber ] != NULL )
|
else if( xInterruptHandlerTable[ ulVectorNumber ] != NULL )
|
||||||
{
|
{
|
||||||
/* Already in use by the application. */
|
/* Already in use by the application. */
|
||||||
xReturn = pdFAIL;
|
xReturn = pdFAIL;
|
||||||
}
|
}
|
||||||
|
#endif /* configUSE_COMMON_INTERRUPT_ENTRY_POINT */
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
xReturn = pdPASS;
|
xReturn = pdPASS;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue