-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflightConTask.h
85 lines (68 loc) · 1.38 KB
/
flightConTask.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#ifndef _FLIGHTCONTASK_H_
#define _FLIGHTCONTASK_H_
#include "stm32f4xx.h"
extern const char* PARA_FORMAT_IN;
extern const char* PARA_FORMAT_OUT;
extern const char* PID_FORMAT_IN;
extern const char* PID_FORMAT_OUT;
extern const char* NEUTRAL_FORMAT_IN;
extern const char* NEUTRAL_FORMAT_OUT;
extern const char* WAYPOINT_FORMAT_IN;
extern const char* WAYPOINT_FORMAT_OUT;
//struct for attitude control
typedef struct{
float rollConVal;
float pitchConVal;
float yawConVal;
u8 IntegerEnableOption;
}AttConValType;
//struct for input order
typedef struct{
float thrustOrder;
float thrustOut;
float rollOrder;
float pitchOrder;
float yawOrder;
}OrderType;
//struct for output command
typedef struct{
s16 motor1_Out;
s16 motor2_Out;
s16 motor3_Out;
s16 motor4_Out;
}OutputType;
//optional parameter
typedef struct{
float rollP;
float rollD;
float rollI;
float yawP;
float yawD1;
float yawD2;
float yawI;
float horiP;
float horiD;
float horiI;
float heightP;
float heightD;
float heightI;
float hoverThrust;
s16 RCneutral[4];
s16 checksum;
}OptionalPara;
typedef struct{
u8 properties; //0:normal
//1:immediately
//2:arrived
//3:ignored
u8 maxSpeed; //
u16 time; //0.1s/count
u16 posAcrcy; //in mm
int x; //mm
int y; //mm
int height; //mm
int yaw; //deg
}WayPointType;
s16 CalChecksum(OptionalPara* OP);
void vFlyConTask(void* pvParameters);
#endif