Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

portEND_SWITCHING_ISR

Posted by rrrum on March 2, 2016

Hello,

In many examples I see "portENDSWITCHINGISR( xHigherPriorityTaskWoken );" placed as a last line of interrupt routine. This is not always straightforward. In some more complex interrupt handler user may want to put

xSemaphoreGiveFromISR( xSemaphoreMODBUSprocess, &xHigherPriorityTaskWoken );

in some function, maybe after that call some other functions before exiting handler.

So the question is can I put "portENDSWITCHINGISR( xHigherPriorityTaskWoken );" after xSemaphore... but not as a last line of handler. Will it work as intended?

Thanks


portEND_SWITCHING_ISR

Posted by rtel on March 2, 2016

(or portYIELDFROMISR())

Will it work as intended?

Depends on which port you are using.


portEND_SWITCHING_ISR

Posted by rrrum on March 3, 2016

I don't understand your answer, can you elaborate more.

I am using CORTEX M4 port of XMC on GCC.

here is my function

~~~~ void syssemsignalisr(syssemt *sem) { portBASETYPE xHigherPriorityTaskWoken = pdFALSE;

xSemaphoreGiveFromISR(*sem, &xHigherPriorityTaskWoken );
portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );

}

~~~~ which is used as folowing handler

~~~~ void ETH00IRQHandler(void) { uint32_t status;

status = XMCETHMACGetEventStatus(&ethmac);

if (status & XMCETHMACEVENTRECEIVE) { syssemsignalisr(&ethrx_semaphore); }

XMCETHMACClearEventStatus(&ethmac, status); }

~~~~


portEND_SWITCHING_ISR

Posted by rtel on March 3, 2016

I don't understand your answer, can you elaborate more.

I said "Depends on which port you are using." because, the answer to your question depends on which port you are using, and as you didn't say, I couldn't answer the question.

If you are using a Cortex-M4 port then you can call portENDSWITCHINGISR or portYIELDFROMISR at any time - it does not have to be at the end of the ISR.


portEND_SWITCHING_ISR

Posted by richard_damon on March 4, 2016

If I remember right, on the M4 the portYIELDFROMISR triggers a lowest priority interrupt to cause the task switch, which will be blocked by the current ISR running, so exactly when that interrupt is triggered doesn't matter.

On the other hand, in the PIC24 port, the portYIELDFROMISR actually does the task switch, and continues execution at that task, and the code that follows isn't executed until the original task gets switched back to, so it really does need to be the very last code in the ISR.

If you wanted to write you ISR so it can work on system like the latter, then any function that the ISR calls which might set the HigherPriorityTaskWasWoken flag, needs to be passed the flag so it can pass that to the API, and the ISR tests it as its last step.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner