Quality RTOS & Embedded Software

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


Loading

Semaphore?

Posted by Nobody/Anonymous on February 15, 2007
Hi,

I am using a Semaphore to ensure that two tasks are not accessing the same SPI port at the same time. But I am not sure if it is okay to it in this way.


TaskOne() // priority 0

{
for (;;)
{
xSemaphoreTake( xSemaphoreSPI0, portMAX_DELAY );

ReadSPI0();

xSemaphoreGive( xSemaphoreSPI0 );

vTaskDelay(1000);
}
}

TaskTwo() // priority 1

{
xSemaphoreTake( xSemaphoreSPI0, portMAX_DELAY );

ReadSPI0();

xSemaphoreGive( xSemaphoreSPI0 );

vTaskDelay(2000);
}

}

What happens if TaskTwo gets ready to run, but the semaphore is obtained by TaskOne, does TaskOne then get time to finish?

Best regards,

Frank Andersen

RE: Semaphore?

Posted by embeddedc on February 15, 2007
Presuming that the semphore is only given once successfully taken then your code will be ok. An alternative is to have one task that controls the SPI port, and any other task that wants to send or receive send a message to the SPI controlling task with the info to be sent/received.

RE: Semaphore?

Posted by embeddedc on February 15, 2007
That did not read very well, try again. An alternative is to have one task that controls the SPI port. If another task want to send data on the SPI port it sends the data to the task in charge of the SPI rather than directly to the SPI peripheral itself. The message can be a structure, with for example the message destination, length and data bytes. The message can be send to the controlling task on a queue to ensure serial access is maintained.

RE: Semaphore? Help

Posted by Nobody/Anonymous on February 19, 2007
Well, it does not work.

Could someone please come with a working example, where to tasks are sharing a resource, controlled by a semaphore?

Best regards,

Frank Andersen

RE: Semaphore?

Posted by Nobody/Anonymous on March 12, 2007
{
if ( xSemaphoreTake( xSemaphoreSPI0, portMAX_DELAY )!= pdFALSE);
{
ReadSPI0();

xSemaphoreGive( xSemaphoreSPI0 );
}
vTaskDelay(1000);
}


[ 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