FreeRTOS计数型信号量

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

posted @   thomas_blog  阅读(328)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!
点击右上角即可分享
微信分享提示