Kommunikation hat funktioniert

This commit is contained in:
Bernhard
2025-12-06 19:20:49 +01:00
commit 9b3c4b3fd2
13 changed files with 1115 additions and 0 deletions

26
main.h Executable file
View File

@@ -0,0 +1,26 @@
#if !defined(__MAIN_H__)
#define __MAIN_H__
#include <limits.h>
#include <pthread.h>
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/mman.h>
#include <time.h>
#include <errno.h>
#include <signal.h>
struct period_info
{
struct timespec next_period;
long period_ns;
unsigned long cyclecounter;
float fStartTime;
};
extern struct period_info pinfo;
#endif