Quality RTOS & Embedded Software

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


Loading

PIC18 MCC18 function parameters not working

Posted by Joe Martinosky on April 29, 2008
I am starting to experiment with FreeRTOS on the PIC18f87J11, and have the latest version of it as well as the Microchip tools. I am running into a strange problem where data sent to vTaskDelay doesn't work. I thought I'd write a little LED flasher, but I can't get the delay to work. I have tried passing a variable, defined in the task, as well as directly passing a value. When I debug into the vTaskDelay function, the passed parameter is always 0.

Ideas?

void vLED_task(void *pvParameters);

void main(void)
{
port_init();
PORTCbits.RC2 = 1;

xTaskCreate(vLED_task, "LED", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL);
vTaskStartScheduler();

}


void vLED_task()
{
portTickType xDelayTime = 500;

while(1)
{
PORTCbits.RC2 = ~PORTCbits.RC2;
vTaskDelay(10/*xDelayTime*/);

PORTCbits.RC2 = ~PORTCbits.RC2;
}
}

I first thought it might be a problem with bank addressing, so I spent a lot of time single-stepping through the assembly code. I understand what the processor is doing, now, but that didn't help me with the problem. I've looked at the post from John Franklin, and implemented it, as well, but to no avail.

Thanks

RE: PIC18 MCC18 function parameters not working

Posted by Dave on April 29, 2008
Strange, its a simple enough program. Does the demo app for your hardware work ok? Are you sure that the value within vTaskDelay() truly is zero and that its not just an issue with viewing the value within the debugger. I know some debuggers will not show variables that are in registers properly. Are you using optimization?

Sorry, more questions than answers.

RE: PIC18 MCC18 function parameters not working

Posted by Joe Martinosky on April 29, 2008
I'm not using hardware that's compatible with the demo app, so I don't know. I don't believe it's a visibility problem with the debugger because the processing that follows matches what happens if the passed value is zero.

Optimizations are turned off.

My boss has experienced the same problem but attributed it to something else he was doing wrong. He didn't trace it down, though.


[ 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