mixer-slider/firmware/slider/main.h

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