mixer-slider/firmware/slider/main.h
2019-02-10 23:03:00 +01:00

15 lines
167 B
C

#ifndef APP_H__
#define APP_H__
#include <communication.h>
#include "adc.h"
#include <slave/slave.h>
struct app {
slave_t state;
};
extern struct app app;
#endif