feat: add lab-rv32i-freertos-mutex card

This commit is contained in:
user
2026-07-21 19:14:19 +02:00
commit 6419a78ff6
67 changed files with 37023 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef K11_HOST_SEMPHR_H
#define K11_HOST_SEMPHR_H
#include "FreeRTOS.h"
#ifdef __cplusplus
extern "C" {
#endif
SemaphoreHandle_t xSemaphoreCreateMutexStatic( StaticSemaphore_t * );
BaseType_t xSemaphoreTake( SemaphoreHandle_t, TickType_t );
BaseType_t xSemaphoreGive( SemaphoreHandle_t );
TaskHandle_t xSemaphoreGetMutexHolder( SemaphoreHandle_t );
void vSemaphoreDelete( SemaphoreHandle_t );
#ifdef __cplusplus
}
#endif
#endif