feat: add lab-rv32i-freertos-event-group card

This commit is contained in:
user
2026-07-21 19:13:55 +02:00
commit b72408da7f
67 changed files with 37880 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef K13_HOST_FREERTOS_H
#define K13_HOST_FREERTOS_H
#include <stdint.h>
typedef int32_t BaseType_t;
typedef uint32_t TickType_t;
typedef uint32_t EventBits_t;
#define pdFALSE ( ( BaseType_t ) 0 )
#define pdTRUE ( ( BaseType_t ) 1 )
#endif