Quality RTOS & Embedded Software

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


Loading

Is this ok? getSemaphoreSPI();

Posted by Willem on February 9, 2009
Hi,

I have created this function to get the semaphore:

unsigned char getSemaphoreSPI(void)
{
if(xSemaphoreSPI != NULL)
{
if( xSemaphoreTake( xSemaphoreSPI, ( portTickType ) 10000 ) == pdTRUE ) // try to take the sem., block max. 10sec
{
return pdTRUE;
}
}
return pdFALSE;
}

I have 3 different tasks that try to take this semaphore, it is possible that they come all at the same time.

Is there a limit on the number of tasks that are requesting a mutex?

RE: Is this ok? getSemaphoreSPI();

Posted by Dave on February 9, 2009
The function looks fine and there is no limit on how many tasks can call the function. However other than checking that the semaphore is not null, your function just returns what xSemaphoreTake() returns, so why not just call xSemaphoreTake() directly.

RE: Is this ok? getSemaphoreSPI();

Posted by Prithwee on February 9, 2009

I think Something like this code will do !!

if( xSemaphoreSPI != NULL ){
if( xSemaphoreTake(xSemaphoreSPI ,( portTickType )BLOCK_TIME)){
/*
Shared resources or functions here....
*/
xSemaphoreGive( xSemaphoreSPI );
}
}

>>I have 3 different tasks that try to take this semaphore, it is possible that they come all at the same time.
> 3 different tasks cant access the shared resources at same time.

>>Is there a limit on the number of tasks that are requesting a mutex?
> NO Limit.

Regards,
Prithwee

RE: Is this ok? getSemaphoreSPI();

Posted by Willem on February 9, 2009
I have other task that then uses this function like this:

void setRelay(unsigned char setRelayNo, unsigned char onOff )
{
if( (getSemaphoreSPI() == pdTRUE) )
{
// critical code
xSemaphoreGive( xSemaphoreSPI );
}

and

void pwm1SwitchDirection(unsigned char direction)
{
if(getSemaphoreSPI() == pdTRUE)
{
// critical code
xSemaphoreGive( xSemaphoreSPI );
}
etc.





[ 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