feat: add lab-rv32i-freertos-sw-timer card

This commit is contained in:
user
2026-07-21 19:14:20 +02:00
commit ae65adee32
172 changed files with 57117 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef HOST_FREERTOS_H
#define HOST_FREERTOS_H
#include <cassert>
#include <cstddef>
#include <cstdint>
using BaseType_t = std::int32_t;
using UBaseType_t = std::uint32_t;
using TickType_t = std::uint32_t;
struct StaticTimer_t
{
alignas( std::max_align_t ) unsigned char bytes[ 160 ];
};
#define pdFALSE 0
#define pdTRUE 1
#define pdFAIL 0
#define pdPASS 1
#define configASSERT( condition ) assert( condition )
#endif