mixer-slider/firmware/slider/main.h

16 lines
196 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;
adc_sample_t adc_buffer[5];
};
extern struct app app;
#endif