feat: add lab-rv32i-freertos-kernel-facade card

This commit is contained in:
user
2026-07-21 19:14:19 +02:00
commit c8d68c1097
65 changed files with 33795 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef K09_HOST_FREERTOS_H
#define K09_HOST_FREERTOS_H
#include <stdint.h>
typedef int32_t BaseType_t;
typedef uint32_t UBaseType_t;
typedef uint32_t TickType_t;
typedef void * TaskHandle_t;
#define pdFALSE ( ( BaseType_t ) 0 )
#define pdTRUE ( ( BaseType_t ) 1 )
#endif