[AVR] portYIELD_FROM_ISR should be provided

I think that there should be macro portYIELD_FROM_ISR and function vPortYieldFromISR() added to ATMega323 port.
This is becouse vPortYield() uses “ret” to return, but if current contex was switched in vPortTickFromISR(), restored SREG do not have global interrupt flag set.

[AVR] portYIELD_FROM_ISR should be provided

This (extremely old) port is explained in on the following (extremely old) web pages.  I have only linked to the two relevant pages: http://www.freertos.org/implementation/a00016.html
http://www.freertos.org/implementation/a00017.html SREG is saved and restored as part of the task context.  When a task that is switched out from an interrupt is next executed it will be switched back into the interrupt (from exactly where it was switched out) – where it will execute its end of interrupt code setting SREG back to its required value.  Likewise if a task is switched in from inside an interrupt it will start executing from wherever it was switched out – which may or may not be in an interrupt but its SREG will also be correct for wherever it ends up. Regards.