mixer-slider/firmware/slider/main.h

15 lines
167 B
C
Raw Normal View History

2019-02-10 19:12:40 +01:00
#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