Quality RTOS & Embedded Software

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


Loading

switching from mutex to binary semaphore does not work

Posted by williamjsell on August 12, 2015

I made an error as I was taking a mutex from one task and giving it back in another task. This is not the correct way to signal tasks, so I replaced the mutex with a binary sempaphore:

for(;;)
{
    //wait forever for a message.  This updates the global variable "device"
    xQueueReceive(calibrationQueue, &calDev, portMAX_DELAY);
    //wait forever for the resource
    xSemaphoreTake(calibrationSmphr, portMAX_DELAY);
    //now update the public device
    memcpy(&calibrateDevice, calDev, sizeof(_calibration_type_t));
    //call the calibrate task
    xEventGroupSetBits(xCalibrationGroup, calibrateDevice.calType);
}

The problem is the xSempahoreTake never returns on the first call to the function, so my system never gets started. Basically this task queues requests and waits for the semaphore to be available, before setting another event. When the calibration event is complete it gives back the semaphore. What am I doing wrong? I checked the semaphore has been properly allocated from CreateBinarySemaphore. When I substiture the mutex rather than binary semaphore, everything works.


switching from mutex to binary semaphore does not work

Posted by rtel on August 12, 2015

Which function are you using to create the semaphore? If you are using xSemaphoreCreateMutex() (which is the correct function to use in newer versions of FreeRTOS), then the semaphore is created empty. Whereas if you create a mutex, then the mutrex is created full. Hence the difference in the behaviour you observed.

If you want the semaphore to be available the first time you call the function, then give the semaphore immediately after you have created it. Then, inside the function where it is used, the first 'take' operation will pass.

See the comments in the source code example at the bottom of the following page: http://www.freertos.org/xSemaphoreCreateBinary.html

Regards.


switching from mutex to binary semaphore does not work

Posted by williamjsell on August 12, 2015

Thanks, I missed the part about giving before using the semaphore...!

Tx


[ 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