started with device handshake
[mTask.git] / client / spec.h
1 #ifndef SPEC_H
2 #define SPEC_H
3
4 #include <stdint.h>
5 #include <stdbool.h>
6
7 struct device_spec {
8 bool have_led;
9 bool have_aio;
10 bool have_dio;
11 uint8_t max_tasks;
12 uint8_t max_sds;
13 };
14
15 void spec_send(void);
16
17 #endif