-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdesired_course.h
More file actions
24 lines (20 loc) · 854 Bytes
/
Copy pathdesired_course.h
File metadata and controls
24 lines (20 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/************************************************************************/
/* */
/* P R O J E K T A V A L O N */
/* */
/* desired_course.h Stores the heading to next waypoint */
/* */
/* Last Change 15.April 2009; Hendrik Erckens */
/* */
/************************************************************************/
#ifndef DESIRED_COURSE_H
#define DESIRED_COURSE_H
#include <DDXStore.h>
#include <DDXVariable.h>
DDX_STORE_TYPE(DesiredHeading,
struct
{
double heading; //in degrees, initialized with 400 so skipper knows when a programm gets called
}
);
#endif //desired_course.h