feat: publish FreeRTOS C FC11 card

This commit is contained in:
2026-07-19 16:36:03 +02:00
commit 0464bf759a
196 changed files with 61224 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <assert.h>
#include "task01_static_allocation_model.h"
int main( void )
{
StaticAllocationEvidence events[ 1 ] = {
{ 1U, 1U, 0U, 1U, 8U, 0xFC110001U }
};
assert( fc11_heap_relation_is_valid( 4096U, 2048U, 2048U, 2048U ) != 0 );
assert( fc11_heap_relation_is_valid( 4096U, 4096U, 4096U, 4096U ) == 0 );
assert( fc11_heap_relation_is_valid( 4096U, 2048U, 2000U, 2000U ) == 0 );
assert( fc11_heap_relation_is_valid( 4096U, 2048U, 2048U, 2000U ) == 0 );
assert( fc11_digest( events, 1U ) != 0U );
return 0;
}