Quality RTOS & Embedded Software

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


Loading

Binary semaphores

Posted by Nobody/Anonymous on December 11, 2005
I have few questions on binary semaphore. They're as follows:

1. Is there a way to initialize the initial value in a semaphore?
2. Is it possible to create counting semaphore with FreeRTOS? If Yes,
how do you initialize the counting value?


RE: Binary semaphores

Posted by Richard on December 11, 2005
> 1. Is there a way to initialize the initial value in a semaphore?

With the aim of keeping the source code as small as posible, the semaphore implementation is simply a set of macros that use the existing queue implementation.

If you take a look at semphr.h you will notice that when a semaphore is created, it is immediately "given", so the first call to "take" the semaphore will succeed. If you want to change this behaviour then there are a couple of options.

1) You could change the macro to accept a parameter, and the parameter value is used say whether or not to "give" the semaphore or not.

2) If you want the semaphore to start empty, then simply call xSemaphoreTake() immediately after the call to vSemaphoreCreateBinary() (or at least before the semaphore is used). This is how the demo applications use the semaphore.


> 2. Is it possible to create counting semaphore with FreeRTOS? If Yes,
> how do you initialize the counting value?

The vSemaphoreCreateBinary() macro creates a queue of length 1 for the binary semaphore. If you want a counting semaphore you can create a macro that creates a queue of longer length.

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