-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathregulator.h
155 lines (132 loc) · 4.3 KB
/
regulator.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Copyright (c) 2009 - 2012, Regents of the University of California
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the University of California, Berkeley nor the names
* of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*
* I-Bird Attitude Regulation Module
*
* by Stanley S. Baek
*
* v.0.4
*
*/
#ifndef __REGULATOR_H
#define __REGULATOR_H
#include "quat.h"
typedef enum {
REG_OFF = 0,
REG_TRACK,
REG_REMOTE_CONTROL,
} RegulatorMode;
typedef struct {
Quaternion ref; // References (16)
Quaternion pose; // Position (16)
Quaternion error; // Error (16)
float u[3]; // Outputs (12)
unsigned long time; // Timestamp (4)
} RegulatorStateStruct; // Total: 64 bytes
typedef RegulatorStateStruct* RegulatorState;
typedef struct {
unsigned char order;
unsigned char type;
float* xcoeffs;
float* ycoeffs;
} RateFilterParamsStruct;
typedef RateFilterParamsStruct *RateFilterParams;
typedef struct {
float ref;
float offset;
float kp;
float ki;
float kd;
float beta;
float gamma;
} PidParamsStruct;
typedef PidParamsStruct *PidParams;
/**
* Set up regulator module
* @param ts - Execution period
*/
void rgltrSetup(float ts);
/**
* Set regulator mode
* @param flag - State to transition to
*/
void rgltrSetMode(unsigned char flag);
void rgltrSetOff(void);
void rgltrSetTrack(void);
void rgltrSetRemote(void);
// Set 3 axes offsets
void rgltrSetOffsets(float *offsets);
/**
* Set rate filter parameters
* @param params - Yaw/pitch/roll filter parameter struct
*/
void rgltrSetYawRateFilter(RateFilterParams params);
void rgltrSetPitchRateFilter(RateFilterParams params);
void rgltrSetRollRateFilter(RateFilterParams params);
/**
* Set yaw/pitch/roll PID parameters
* @param params - Yaw/pitch/roll PID parameter struct
*/
void rgltrSetYawPid(PidParams params);
void rgltrSetPitchPid(PidParams params);
void rgltrSetRollPid(PidParams params);
/**
* Set yaw/pitch/roll reference value
* @param ref - Yaw/pitch/roll reference in radians
*/
void rgltrSetYawRef(float ref);
void rgltrSetPitchRef(float ref);
void rgltrSetRollRef(float ref);
/**
* Get/Set the quaternion reference
*/
void rgltrGetQuatRef(Quaternion *ref);
void rgltrSetQuatRef(Quaternion *ref);
/**
* Set remote control output values
* @param thrust - Thrust duty cycle from 0.0 to 1.0
* @param steer - Steering duty cycle from -1.0 to 1.0
* @param elevator - Elevator position from -1.0 to 1.0
*/
void rgltrSetRemoteControlValues(float thrust, float steer, float elevator);
/**
* Execute control loop iteration. This method should be called regularly every
* ts seconds as defined in rgltrSetup
* @see rgltrSetup
*/
void rgltrRunController(void);
/**
* Retrieve a logged regulator trace point
* @param state - Pointer to structure to populate
* @note 7000 cycles
*/
void rgltrGetState(RegulatorState state);
void rgltrStartLogging(void);
void rgltrStopLogging(void);
#endif // __REGULATOR_H