feat: publish FreeRTOS C FC04 card

This commit is contained in:
2026-07-19 16:36:02 +02:00
commit 845c0ab016
189 changed files with 56032 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#ifndef TASK01_DELAY_STATE_MODEL_H
#define TASK01_DELAY_STATE_MODEL_H
#include <stddef.h>
#include <stdint.h>
static inline int fc04_periods_are_exact( const uint32_t * ticks,
size_t count,
uint32_t period )
{
size_t index;
if( ticks == NULL || count < 2U )
{
return 0;
}
for( index = 1U; index < count; ++index )
{
if( ticks[ index ] - ticks[ index - 1U ] != period )
{
return 0;
}
}
return 1;
}
#endif