15 lines
240 B
C
15 lines
240 B
C
#ifndef SYNCH_H
|
|
#define SYNCH_H
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include "utils/leds.h"
|
|
|
|
#define MAX_SAMPLES 10
|
|
|
|
// Vorwärtsdeklarationen
|
|
void synchronite(struct k_work *work);
|
|
|
|
// Hardware
|
|
//extern struct gpio_callback button_cb_data;
|
|
|
|
#endif |