Quality RTOS & Embedded Software

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


Loading

ISR/semaphore help on PIC18F

Posted by Robert Clarke on May 7, 2010
Hi all,

I am new to FreeRTOS but I really need to get to grips with it so any help anyone can give me will be much appreciated.

I am using the PIC18 port on a PIC18F4680 and I am having trouble with the UART interrupt and a semaphore.
Esentially, I have 2 tasks a LED flashing task that is run every 250 ticks, and a Uart character recevied task which is blocked until a binary semaphore is taken. I am using xSemaphoreGiveFromISR inside the vSerialRxISR() to signal the uart task to wake up and process the char recieved but it does not work.
upon sending a char from hyperterm, the code on the pic handle the one char and then locks up and neither task ether led flashing or subsequent chars are handled. I can only assume I am missing something. I have posted my code snippetes below

void main(void) {
heapinit(); //Start optimized "Heap Management For Small Microcontrollers"

InitPic();
InitRS232();


//create LED flash task
xTaskCreate(Task1, (const portCHAR * const) "Ts1", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 1, NULL);
//create RX processing task
xTaskCreate(Task2, (const portCHAR * const) "Ts2", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL);

//start scheduler
vTaskStartScheduler();

while(1) {
}
}

//RX ISR
void vSerialRxISR() {
static signed portBASE_TYPE xHigherPriorityTaskWoken;
xHigherPriorityTaskWoken = pdFALSE;

/* Unblock the task by releasing the semaphore. */
if(xSemaphoreGiveFromISR( xUartSem, &xHigherPriorityTaskWoken ) == pdTRUE){
//force a context switch
portYIELD();
}

//led flash task
void Task1(void *params) {

while(1){

LATBbits.LATB4 ^= 1;
LATBbits.LATB5 ^= 1;
vTaskDelay(250); //block task for 1S (250 ticks)
}
}

//RX recieved task
void Task2(void *params) {
__reclaim_stack();
vSemaphoreCreateBinary(xUartSem); //create the binary semaphore

while(1) {
/*Block waiting for the semaphore to become available. */
if( xSemaphoreTake( xUartSem, 100 ) == pdTRUE )
{
/* It is time to execute. */
serial_register = RCREG; // get the next byte



Process_RX(); //process the command




/* We have finished our task. Return to the top of the loop where
we will block on the semaphore until it is time to execute
again. Note when using the semaphore for synchronisation with an
ISR in this manner there is no need to 'give' the semaphore back. */
}


}
}

RE: ISR/semaphore help on PIC18F

Posted by Richard on May 7, 2010
The code you have posted is not particularly easy to read (formatting has been lost) but I cannot see anything that looks wrong.

The PIC18 is not an ideal target for running a real time kernel, and it might just be that it is running too slowly, resulting in overrun errors in the UART. You could try adding the following to the ISR:

/* Clear any overrun errors. */
if( RCSTAbits.OERR )
{
RCSTAbits.CREN = serCLEAR_OVERRUN;
RCSTAbits.CREN = serCONTINUOUS_RX;
}


Also you could try looking at the usual suspects of stack overflow, etc.

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