Quality RTOS & Embedded Software

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


Loading

Interrupt problem with vTaskDelay on LPC2478

Posted by specialk on June 22, 2009
I've been trying to get FreeRTOS working in Crossworks with a 2478, and can get everything to compile and run through the 'main' method properly. I can create a couple tasks and start the scheduler, but when I create two tasks with equal priorty, only the last task added will run continually (the first task never executes). As well, if I add 'vTaskDelay' to either task, the task stops running altogether and the other task will run exclusively. If I add vDelayTask in both tasks, they will each run once, and then nothing happens anymore.

I'm guessing that the problem is in the interrupt handling for the timer tick, but I'm hoping that someone with more experience would be able to confirm my suspicion or suggest another likely cause of this behaviour? Here is the task creation code and some sample task code just as an example ... in this case with no vTaskDelays, only the LED task will run continuously:

int main (void)
{
cpuSetupHardware ();
enableIRQ ();

xTaskCreate (vStatsTask, (const signed portCHAR * const) "Stats", 256, NULL, (tskIDLE_PRIORITY + 1), &taskHandles [TASKHANDLE_STATS]);
xTaskCreate (vLEDTask, (const signed portCHAR * const) "LEDs", 256, NULL, (tskIDLE_PRIORITY + 1), &taskHandles [TASKHANDLE_LED]);

vTaskStartScheduler();

return 0;
}

static void vLEDTask( void *pvParameters )
{
// Create 500ms delay between LED events
const portTickType xDelay = 500 / portTICK_RATE_MS;

for (;;)
{
ledHits++;
// vTaskDelay(xDelay);
}
}


RE: Interrupt problem with vTaskDelay on LPC2

Posted by Dave on June 22, 2009
Agree it sounds like the tick interrupt is not running. The 2378 has a different timer setup to the smaller LPC2000 chips. See the difference in prvSetupTimerInterrupt() in the two files Source\portable\GCC\lpc2000\port.c and Source\portable\GCC\lpc23xx\port.c.


[ 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