14 lines
235 B
C
14 lines
235 B
C
#ifndef CONSTANDVARS_H
|
|
#define CONSTANDVARS_H
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
extern bool slave;
|
|
extern bool error;
|
|
extern bool synchronized;
|
|
extern uint32_t nextSynchro;
|
|
|
|
#endif // CONSTANDVARS_H
|