11 lines
157 B
C
11 lines
157 B
C
#ifndef SYNCH_H
|
|
#define SYNCH_H
|
|
|
|
#include <zephyr/kernel.h>
|
|
|
|
#define MAX_SAMPLES 10
|
|
|
|
// Vorwärtsdeklarationen
|
|
void synchronite(struct k_work *work);
|
|
|
|
#endif |