Quality RTOS & Embedded Software

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


Loading

freeRTOS lpc2106 serial driver question

Posted by Forest YU on March 13, 2009
In the serial.c files of lpc2106_gcc demos, there is a litte segment code that I am confused. That is:
////////////////////////////////////////////////

xReturn = xQueueSend( xCharsForTx, &cOutChar, xBlockTime );

if( ( *plTHREEmpty == ( portLONG ) pdTRUE ) && ( xReturn == pdPASS ) )
{
xQueueReceive( xCharsForTx, &cOutChar, serNO_BLOCK );
*plTHREEmpty = pdFALSE;
UART0_THR = cOutChar;
}
///////////////////////////////////////////////

When run this code, interrupt is disabled, so xBlockTime should have no effect or this is a wrong using style? And also because interrupt is disabled, so *plTHREEmpty == pdTRUE is impossible, the if code would have no effect too. I am really confused and may be my logic is wrong.

any reply would be appreciated!

RE: freeRTOS lpc2106 serial driver question

Posted by Dave on March 13, 2009
This is because the LPC2000 UART is nasty in its implementation. The code determines that the UART already contains a character so posts the new character to a queue. It then checks to see if in the mean time the UART has completed its operation and if so has to retrieve the character from the queue again to send it directly to the UART. The SAM7 UART is much better.

RE: freeRTOS lpc2106 serial driver question

Posted by Forest YU on March 13, 2009
Thanks for your reply.
But I think the interrupt have been disabled in the beginning, so the uart interrupt service will not run before portEXIT_CRITICAL(). You don't have to fetch the character again.
Also, I don't think xBlockTime have effect.


[ 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