Quality RTOS & Embedded Software

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


Loading

Interrupt problem on uart

Posted by Nobody/Anonymous on December 6, 2006
I modeled an ISR handler on the serial.c example (for the dual UARTs on
the Atmel AT91SAM7X256).

I have 2 tasks in my system - one which talks on the Ethernet (lwIP), the
other for an RS-232 console user. This, and the several ISRs (timer,
uarts, etc.) The Ethernet task is essentially idle as the cable is
unplugged.

When I write a long message to the console, I need to have a queue at
least as large as the largest screen paint I do (> 2K) in order for it to
work. If I don't, the task waits forever for the queue to clear, but the
queue doesn't clear even though the interrupt is enabled if I use a
non-zero timeout in the xQueueSend call. The application was ported from
a PIC18 (no OS) and I had no trouble putting out messages larger than the
buffer size.

I found the same problem early on with serial.c, not realizing it was
something inherent rather than a mistake in my code.

I'm wondering - is there something I'm missing here? It seems that it
would be a most basic function to allow other tasks (especially
interrupts) to run while another is blocked for a resource. We're not
talking about priority inversion, just having interrupts operate while a
task is blocked.

RE: Interrupt problem on uart

Posted by Richard on December 6, 2006
Some points:

1) The UART examples are not necessarily designed to be efficient - but rather to test the kernel. Testing the kernel implies generating lots of interrupts and context switches which is probably not what you want in your real application if sending 2K or data. You might be better or using a simple circular buffer, then a semaphore to handle the blocking and waking of the task. Also the demos don't make use (normally) of FIFO's or DMA's so you may want to look at the setup of the UART.

2) Can you confirm that you are not blocking from within the IAR, or making any blocking calls from within the ISR - this would definitely stuff you up if you were.

3) You can certainly run other tasks and interrupts while one task is blocked on a queue or semaphore. Is it possible that there is a rout out of your ISR (for example a switch to another task) that is performed leaving the UART interrupt disabled/not cleared? A context switch must not be performed until both the UART and the interrupt controllers are cleared.

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