Quality RTOS & Embedded Software

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


Loading

Problem creating task

Posted by jordiblasi on July 29, 2016

I am using Freertos on a Intel Galileo Gen 2 board and I am having problems to launch a task. I have a reduced version of the demo main.c just eliminating the references to the demos. I have correctly compiled an run different functions but when I try to launch a Task, as described in the documentation I see no sign of it actually running. This is the code I am testing:

~~~ void frogaTask (void *pvParameters ){ ( void ) pvParameters; g_printf("GET IN");

 for ( ;; ){
	 g_printf("LOOP");
 }
 vTaskDelete( NULL );

}

int main( void ) { /* Optionally wait for a debugger to connect. */ prvLoopToWaitForDebugConnection();

/* Init the UART, GPIO, etc. */
prvSetupHardware();
g_printf("1");
BaseType_t ret = xTaskCreate( frogaTask, "Froga" , configMINIMAL_STACK_SIZE , NULL, tskIDLE_PRIORITY + 1, NULL );
g_printf("2");
/* Start the tasks and timer running. */
vTaskStartScheduler();
g_printf("3");
return 0;

}

~~~ When I run it i see nothing on the teminal but the 1 and 2 numbers. This means that Task is actually created (I have checked that ret has a 1 value, what I understand is a correct output) and Scheduler runs and never returns control, what I think is correct, but I don't see the "GET IN" and "LOOP" messages.

What I am missing? How can I get some visibility of what is going on?

Thanks


Problem creating task

Posted by rtel on July 30, 2016

If you stop the debugger, what code is executing? Could you be in an assert() (ensure configASSERT() is defined), or in a stack overflow hook (ensure stack overflow checking is set to 2).

What happens if you toggle an LED instead of calling g_printf() in the task? Use a delay so you can see the LED toggling, something like:

~~~ for( ;; ) { ToggleLED(); /* whatever the function is really called). vTaskDelay( pdMSTOTICKS( 500 ); } ~~~


[ 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