feat: publish FreeRTOS C FC06 card

This commit is contained in:
2026-07-19 16:36:03 +02:00
commit 0fc6158501
195 changed files with 60591 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <assert.h>
#include "task01_software_timers_model.h"
int main( void )
{
const uint32_t good[ 3 ] = { 2U, 4U, 7U };
const uint32_t bad[ 3 ] = { 2U, 4U, 8U };
TimerEvidence events[ 1 ] = {
{ 1U, 1U, 0U, 1U, 8U, 0xFC060001U }
};
assert( fc06_timeline_is_exact( good, 6U ) != 0 );
assert( fc06_timeline_is_exact( bad, 6U ) == 0 );
assert( fc06_digest( events, 1U ) != 0U );
return 0;
}