Quality RTOS & Embedded Software

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


Loading

Remapping semaphore API

Posted by G40 on June 23, 2012
In order to get AD driver code working I need to implement some wrappers for AD semaphores.

1. Create and Delete are simple.
2. Post() maps onto Give(), or possibly GiveFromISR().

What happens if the latter is called at non-ISR level? Presumably it works?

3. Pend() maps onto Take()

4. Not sure about Query().

This returns the semaphore count in the default AD library code. Can I do the same in FreeRTOS?

Many thanks

Jerry.

RE: Remapping semaphore API

Posted by Richard on June 23, 2012
“What happens if the latter is called at non-ISR level? Presumably it works? ”


It will work, but does not give an option to block (as you can't block in an ISR), and will normally need a critical section around it if it is called at the task level. [that may depend on the port though]. It is relatively common to use the FromISR versions from tasks because, as they have less functionality (blocking, etc.), they are faster to execute.

“4. Not sure about Query(). This returns the semaphore count in the default AD library code. Can I do the same in FreeRTOS? ”


You can use the xQueueMessagesWaiting() and xQueueMessagesWaitingFromISR() function by just casting the xSemaphoreHandle variable to an xQueueHandle when you pass it into the function. That will give you the semaphore count.

Regards.

RE: Remapping semaphore API

Posted by G40 on June 24, 2012
Thanks again, Richard. The help is greatly appreciated.


[ 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