-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsail-target.h
27 lines (22 loc) · 929 Bytes
/
sail-target.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/************************************************************************/
/* */
/* P R O J E K T A V A L O N */
/* */
/* */
/* sail-target.h Where the sail shall be driven to */
/* */
/* Author Stefan Wismer */
/* [email protected] */
/* */
/************************************************************************/
#ifndef SAIL_TARGET_H
#define SAIL_TARGET_H
#include <DDXStore.h>
#include <DDXVariable.h>
DDX_STORE_TYPE(sailTarget,
struct {
float degrees; // Where to put the sail?
int reset_request; // 1 if a reset was requested.
}
);
#endif // SAIL_TARGET_H