Quality RTOS & Embedded Software

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


Loading

ISR and queue handling

Posted by Casper Hedegaard on January 14, 2013
Hello

Controller: Atmel UC3A0512
Enviroment: ARV32 Studio

I have a USART interrupt which is like this:

__attribute__((__interrupt__)) static void usart_int_handler( void )
{
static int status, temp;
static uint8_t data;

static portBASE_TYPE xHigherPriorityTaskWoken;
xHigherPriorityTaskWoken = pdFALSE;

// Read USART buffer
status = usart_read_char( USART_CHANNEL, &temp );

if( USART_RX_ERROR == status)
{
// Resetting the USART
usart_reset( USART_CHANNEL );

// Enable the USART as RS485
InitCOM();
}
else if( USART_SUCCESS == status )
{
data = (uint8_t)temp;

// Because FreeRTOS is not supposed to run with nested interrupts, put all OS calls in a critical section
portENTER_CRITICAL();
xQueueSendToBackFromISR( xRXQueue, &data, &xHigherPriorityTaskWoken );
portEXIT_CRITICAL();
}

if( xHigherPriorityTaskWoken == pdTRUE )
{
// Force unblocked (higher priority) tasks to run
vTaskSwitchContext();
}
}


I'm running in multidrop mode and I have 2 slave modules connected to this RS485 bus.

My problem is that when my task, which is looking at this xRXQueue, is seeing data in the queue and starts to read the queue, the system breaks down and restarts do to my watchdog. The task starts like this:

if( pdPASS == xQueueReceive(xRXQueue, rx_buf, portMAX_DELAY) )
{
// code here
}


How can I, in a more secure way, handle this queue and interrupt handling so it will not stall the controller?

Best regards
Casper

RE: ISR and queue handling

Posted by Richard on January 14, 2013
There does not look to be anything fundamentally wrong with your implementation. Are you using the ARV32 port that is distributed by Atmel, which is the version for the latest AV32 chips?

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