Quality RTOS & Embedded Software

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


Loading

tasks not invoked - PIC18F4455

Posted by CMOS on February 17, 2008
hi,
i've build the MPLAB port of FreeRTOS and created a simple application with two simple tasks.
during debugging, breakpoints at the beginning of the tasks are not hit.(i use the ICD2 debugger). but when tried with simulator they get hit and it runs as expected. the device im using is PIC18F4455 and below is my program.


/* Scheduler include files. */
#include "FreeRTOS.h"
#include "task.h"

void wait(int delay)
{
int i = 0;
for(; i < delay; ++i);
}

void vHandleLED1( void *pvParameters )
{
while(1)
{
PORTA = PORTA | 0b00000001; //set zero bit
wait(10000);
PORTA = PORTA & 0b00000010; //reset zero bit
wait(10000);
}
}

void vHandleLED2( void *pvParameters )
{
while(1)
{
PORTA = PORTA | 0b00000010; //set first bit
wait(1000);
PORTA = PORTA & 0b00000001; //reset firstbit
wait(1000);
}
}

void main()
{
portBASE_TYPE result;
PORTA = 0x00;
ADCON1 = 0x0F;
CMCON = 0x07;
TRISA = 0x00;

result = xTaskCreate( vHandleLED1, ( signed portCHAR * ) "LED1", 100, ( void * ) NULL, 2, ( xTaskHandle * ) NULL );
result = xTaskCreate( vHandleLED2, ( signed portCHAR * ) "LED2", 100, ( void * ) NULL, 2, ( xTaskHandle * ) NULL );

vTaskStartScheduler();
}

RE: tasks not invoked - PIC18F4455

Posted by PICmeup on February 18, 2008
If you step through the code in the debugger, how far do you get. You should be able to see where the program goes.

RE: tasks not invoked - PIC18F4455

Posted by CMOS on February 18, 2008
i tries stepping through the debugger inside vTaskStartScheduler(), but never reached any of the tasks.

RE: tasks not invoked - PIC18F4455

Posted by CMOS on February 18, 2008
hi,
i think i have mis configured something, which i dont know.. but it started to work..
thanks for the help..


[ 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