FreeRTOS计数型信号量

本文详细介绍了FreeRTOS中信号量的API函数及其使用方法。包括信号量的创建、释放、获取信号量值及等待等操作的具体实现。通过示例展示了如何在任务间使用信号量进行同步。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

API函数

//创建
#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
    #define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) 
                                xQueueCreateCountingSemaphore( ( uxMaxCount ), ( uxInitialCount ) )
    QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, 
                                                const UBaseType_t uxInitialCount )
#endif

//释放
#define xSemaphoreGive( xSemaphore )        
xQueueGenericSend( ( QueueHandle_t ) ( xSemaphore ), NULL, semGIVE_BLOCK_TIME, queueSEND_TO_BACK )
BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, 
                            TickType_t xTicksToWait, const BaseType_t xCopyPosition )

//获取信号量值
#define uxSemaphoreGetCount( xSemaphore ) uxQueueMessagesWaiting( ( QueueHandle_t ) ( xSemaphore ) )
UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue )

//等待
#define xSemaphoreTake( xSemaphore, xBlockTime )        
xQueueGenericReceive( ( QueueHandle_t ) ( xSemaphore ), NULL, ( xBlockTime ), pdFALSE )
BaseType_t xQueueGenericReceive( QueueHandle_t xQueue, void * const pvBuffer, 
                                TickType_t xTicksToWait, const BaseType_t xJustPeeking )

使用举例

SemaphoreHandle_t semaphore;

void start_task(void *pvParameters)
{
    semaphore = xSemaphoreCreateCounting(10, 0);
}

void give_task(void *pvParameters)
{
    UBaseType_t count;

    while(1)
    {
        key = KEY_Scan(0);
        if(key == WKUP_PRES)
        {
            err = xSemaphoreGive(semaphore);

            count = uxSemaphoreGetCount(semaphore);

            printf("give_task uxSemaphoreGetCount %d\r\n", count);
        }

        vTaskDelay(10);
    }
}

void take_task(void *pvParameters)
{
    while(1)
    {
        xSemaphoreTake(semaphore, portMAX_DELAY);

        count = uxSemaphoreGetCount(semaphore);

        printf("take_task uxSemaphoreGetCount %d\r\n", count);

        vTaskDelay(1000);
    }
}

实验现象
1

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值