16 lines
178 B
C
16 lines
178 B
C
|
|
#ifndef APP_H__
|
|
#define APP_H__
|
|
|
|
#include <communication.h>
|
|
#include "adc.h"
|
|
#include <slave/slave.h>
|
|
|
|
struct app {
|
|
volatile uint8_t button;
|
|
};
|
|
|
|
extern struct app app;
|
|
|
|
#endif
|