Quality RTOS & Embedded Software

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


Loading

freeRTOS and LCD

Posted by Nobody/Anonymous on January 4, 2005
I want to add a task in rtos to display an integer for example a counter, i have written the code for this task and i want to know how can i add it to the rtos.


thanks.

RE: freeRTOS and LCD

Posted by Nobody/Anonymous on January 4, 2005
This is a bit of a vague question. The best starting point is to take the demo project for your hardware and modify that. Look in the main.c file - here you will see calls to sTaskCreate(). This takes a pointer to the function you have written to add the function to those already being scheduled.

Some of the demo projects already use all the memory available on the hardware so to add a new task you may have to remove one of the existing tasks.

Hope this is helpful.

RE: freeRTOS and LCD

Posted by Nobody/Anonymous on January 4, 2005
is there a more spesific opinion, what changes shound i do in order to add my code (i think i have enough RAM to do that)



thanks

RE: freeRTOS and LCD

Posted by Richard on January 4, 2005
Say your function is like this:

void vMyTask( void *pvParameters )
{
for(;;)
{
// Do something
}
}

Then you need to add a line such as:

sTaskCreate( vMyTask, "XYZ", 100, NULL, 2, NULL );

where 100 is the stack size (depends on your function and the port you are using) and 2 is the priority.

Please read the API documentation and look at the demo applications where there are many examples. A good way to learn the system is to step through the code of the existing applications.

Regards.


[ 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