Quality RTOS & Embedded Software

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


Loading

ICCAVR port

Posted by Nobody/Anonymous on November 9, 2006
I've tried to make a FreeRTOS port for imagecraft's ICCAVR compiler, but i can't it get to work in avrstudio simulator. I don't understand, what should functions portENTER_CRITICAL() and portEXIT_CRITICAL() to do, because in both ports are they quite different.
Has anyone already done port to iccavr?
Please help me
pbr(@)pobox(.)sk

RE: ICCAVR port

Posted by Nobody/Anonymous on November 9, 2006
Enter and exit critical should always do the same thing or at least have the same effect. Which two ports are you comparing?

RE: ICCAVR port

Posted by Nobody/Anonymous on November 10, 2006
the IAR port has this:
void vPortEnterCritical( void )
{
portDISABLE_INTERRUPTS();
uxCriticalNesting++;
}

void vPortExitCritical( void )
{
uxCriticalNesting--;
if( uxCriticalNesting == portNO_CRITICAL_NESTING )
{
portENABLE_INTERRUPTS();
}
}

and the GCC port:
#define portENTER_CRITICAL()
asm ( "in__tmp_reg__, 0x3F" );\
asm ( "cli" );\
asm ( "push__tmp_reg__" )

#define portEXIT_CRITICAL()
asm ( "pop__tmp_reg__" );\
asm ( "out0x3F, __tmp_reg__" )



RE: ICCAVR port

Posted by Nobody/Anonymous on November 10, 2006
These effectively do the same thing.

The idea is not to nest calls. In other words if you call:

portENTER_CRITICAL();
portENTER_CRITICAL();
portEXIT_CRITICAL();
portEXIT_CRITICAL();

interrupts are not reenabled until the second call to portEXIT_CRITICAL().

The GCC port does this by pushing the status flags onto the stack within each call to portENTER_CRITICAL(). A second or third call to portENTER_CRITICAL() will already have interrupts disabled when the flags are pushed, so popping the flags will not re enable interrupts again until the first push is popped.

The IAR port simply keeps a count of the number of time portENTER_CRITICAL() is called, and does not re-enable interrupts until the count reaches zero. The count has to be stored as part of the task context as each task has its own count.

RE: ICCAVR port

Posted by Nobody/Anonymous on November 11, 2006
OK,thank you for explaining.
I've found in meantime, that a port to iccavr exists. This is at http://www.dragonsgate.net/icc_forums/showthread.php?t=3&highlight=freertos,
but i cant download it. I've registered there, but i'm still not able to download it. Deos anyone have that file?


[ 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