Rev 2073 | Rev 2075 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1775 | - | 1 | #include <inttypes.h> |
2033 | - | 2 | #include "analog.h" |
1775 | - | 3 | #include "attitude.h" |
4 | #include "configuration.h" |
||
2048 | - | 5 | #include "controlMixer.h" |
1775 | - | 6 | |
7 | // for digital / LED debug. |
||
8 | #include "output.h" |
||
9 | |||
10 | // For scope debugging only! |
||
11 | #include "rc.h" |
||
12 | |||
13 | #define INTEGRAL_LIMIT 100000 |
||
14 | |||
2069 | - | 15 | #define LATCH_TIME 3 |
1775 | - | 16 | |
2074 | - | 17 | int32_t setHeight; |
1775 | - | 18 | int32_t targetHeight; |
19 | |||
2074 | - | 20 | uint16_t testOscPrescaler = 0; |
21 | uint8_t testOscTimer = 0; |
||
22 | |||
1961 | - | 23 | int32_t maxHeightThisFlight; |
1775 | - | 24 | int32_t iHeight; |
25 | |||
26 | void HC_setGround(void) { |
||
2033 | - | 27 | analog_setGround(); |
1960 | - | 28 | // This should also happen when height control is enabled in-flight. |
2074 | - | 29 | setHeight = targetHeight = analog_getHeight(); |
30 | testOscTimer = 0; |
||
1961 | - | 31 | maxHeightThisFlight = 0; |
1960 | - | 32 | iHeight = 0; |
1775 | - | 33 | } |
34 | |||
2069 | - | 35 | uint8_t HC_isSwitchOn() { |
36 | return (dynamicParams.heightSetting >= 255/3); |
||
37 | } |
||
38 | |||
2039 | - | 39 | void HC_periodicTask(void) { |
2033 | - | 40 | int32_t height = analog_getHeight(); |
1960 | - | 41 | static uint8_t setHeightLatch = 0; |
42 | |||
1961 | - | 43 | if (height > maxHeightThisFlight) |
44 | maxHeightThisFlight = height; |
||
1960 | - | 45 | |
2059 | - | 46 | // debugOut.analog[25] = dynamicParams.heightSetting; |
47 | |||
1961 | - | 48 | if (staticParams.bitConfig & CFG_SIMPLE_HC_HOLD_SWITCH) { |
2069 | - | 49 | if (HC_isSwitchOn()) { |
1960 | - | 50 | // Switch is ON |
51 | if (setHeightLatch <= LATCH_TIME) { |
||
2069 | - | 52 | if (setHeightLatch == LATCH_TIME) { |
53 | // Freeze the height as target. We want to do this exactly once each time the switch is thrown ON. |
||
2074 | - | 54 | setHeight = height; |
55 | testOscTimer = 0; |
||
2071 | - | 56 | iHeight = 0; |
2069 | - | 57 | } |
58 | // Time not yet reached. |
||
59 | setHeightLatch++; |
||
1960 | - | 60 | } |
61 | } else { |
||
62 | // Switch is OFF. |
||
63 | setHeightLatch = 0; |
||
64 | } |
||
65 | } else { |
||
66 | // Switch is not activated; take the "max-height" as the target height. |
||
2074 | - | 67 | setHeight = (uint16_t) dynamicParams.heightSetting * 25L - 500L; // should be: 100 (or make a param out of it) |
1960 | - | 68 | } |
69 | |||
2069 | - | 70 | /* |
1960 | - | 71 | if (++heightRampingTimer == INTEGRATION_FREQUENCY / 10) { |
72 | heightRampingTimer = 0; |
||
1961 | - | 73 | if (rampedTargetHeight < targetHeight) { |
74 | // climbing |
||
75 | if (rampedTargetHeight < targetHeight - staticParams.heightSlewRate) { |
||
76 | rampedTargetHeight += staticParams.heightSlewRate; |
||
77 | } else { |
||
78 | rampedTargetHeight = targetHeight; |
||
79 | } |
||
2026 | - | 80 | } else { |
1961 | - | 81 | // descending |
82 | if (rampedTargetHeight > targetHeight + staticParams.heightSlewRate) { |
||
83 | rampedTargetHeight -= staticParams.heightSlewRate; |
||
84 | } else { |
||
85 | rampedTargetHeight = targetHeight; |
||
86 | } |
||
1960 | - | 87 | } |
88 | } |
||
2069 | - | 89 | */ |
2074 | - | 90 | // uint8_t heightControlTestOscPeriod; |
91 | // uint8_t heightControlTestOscAmplitude; |
||
1970 | - | 92 | |
2074 | - | 93 | testOscPrescaler++; |
94 | if (testOscPrescaler == 488) { |
||
95 | testOscPrescaler = 0; |
||
96 | testOscTimer++; |
||
97 | if (testOscTimer == staticParams.heightControlTestOscPeriod) { |
||
98 | testOscTimer = 0; |
||
99 | iHeight = 0; |
||
100 | } else if (testOscTimer == staticParams.heightControlTestOscPeriod/2) { |
||
101 | iHeight = 0; |
||
102 | } |
||
103 | } |
||
104 | |||
105 | if (testOscTimer < staticParams.heightControlTestOscPeriod/2) |
||
106 | targetHeight = setHeight; |
||
107 | else |
||
108 | targetHeight = setHeight + (uint16_t)staticParams.heightControlTestOscAmplitude * 25L; |
||
109 | |||
110 | //if (staticParams.) |
||
1960 | - | 111 | // height, in meters (so the division factor is: 100) |
2059 | - | 112 | // debugOut.analog[24] = (117100 - filteredAirPressure) / 100; |
1971 | - | 113 | // Calculated 0 alt number: 108205 |
1980 | - | 114 | // Experimental 0 alt number: 117100 |
1775 | - | 115 | } |
116 | |||
2074 | - | 117 | #define LOG_PHEIGHT_SCALE 10 |
118 | #define LOG_IHEIGHT_SCALE 24 |
||
119 | #define LOG_DHEIGHT_SCALE 6 |
||
120 | |||
1775 | - | 121 | // takes 180-200 usec (with integral term). That is too heavy!!! |
122 | // takes 100 usec without integral term. |
||
2048 | - | 123 | void HC_periodicTaskAndPRTY(int16_t* PRTY) { |
124 | HC_periodicTask(); |
||
125 | int16_t throttle = PRTY[CONTROL_THROTTLE]; |
||
2033 | - | 126 | int32_t height = analog_getHeight(); |
2073 | - | 127 | int32_t heightError = targetHeight - height; |
2033 | - | 128 | int16_t dHeight = analog_getDHeight(); |
1960 | - | 129 | |
2058 | - | 130 | debugOut.analog[22] = height/10L; |
131 | debugOut.analog[23] = dHeight; |
||
2055 | - | 132 | |
2026 | - | 133 | if (heightError > 0) { |
1960 | - | 134 | debugOut.digital[0] |= DEBUG_HEIGHT_DIFF; |
2035 | - | 135 | } else { |
1961 | - | 136 | debugOut.digital[0] &= ~DEBUG_HEIGHT_DIFF; |
2035 | - | 137 | } |
138 | |||
139 | if (dHeight > 0) { |
||
1960 | - | 140 | debugOut.digital[1] |= DEBUG_HEIGHT_DIFF; |
2035 | - | 141 | } else { |
142 | debugOut.digital[1] &= ~DEBUG_HEIGHT_DIFF; |
||
1960 | - | 143 | } |
2032 | - | 144 | |
2073 | - | 145 | int32_t heightErrorForIntegral = heightError; |
2074 | - | 146 | int32_t heightErrorForIntegralLimit = staticParams.heightControlMaxIntegralIn << LOG_PHEIGHT_SCALE; |
2073 | - | 147 | |
148 | if (heightErrorForIntegral > heightErrorForIntegralLimit) { |
||
149 | heightErrorForIntegral = heightErrorForIntegralLimit; |
||
150 | } else if (heightErrorForIntegral < -heightErrorForIntegralLimit) { |
||
151 | heightErrorForIntegral =- heightErrorForIntegralLimit; |
||
152 | } |
||
153 | |||
2033 | - | 154 | // iHeight, at a difference of 5 meters and a freq. of 488 Hz, will grow with 244000 / sec.... |
2073 | - | 155 | iHeight += heightErrorForIntegral; |
2032 | - | 156 | |
2033 | - | 157 | #define IHEIGHT_SCALE 24 |
158 | // dThrottle is in the range between +/- 1<<(IHEIGHT_SCALE+8)>>(IHEIGHT_SCALE) = +/- 256 |
||
2035 | - | 159 | int16_t dThrottleI = (iHeight * (int32_t)dynamicParams.heightI) >> (IHEIGHT_SCALE); |
2033 | - | 160 | |
2073 | - | 161 | if (dThrottleI > staticParams.heightControlMaxIntegralOut) { |
162 | dThrottleI = staticParams.heightControlMaxIntegralOut; |
||
163 | iHeight = ((int32_t)staticParams.heightControlMaxIntegralOut << IHEIGHT_SCALE) / dynamicParams.heightI; |
||
164 | } else if (dThrottleI < -staticParams.heightControlMaxIntegralOut) { |
||
165 | dThrottleI = -staticParams.heightControlMaxIntegralOut; |
||
166 | iHeight = -((int32_t)staticParams.heightControlMaxIntegralOut << IHEIGHT_SCALE) / dynamicParams.heightI; |
||
2033 | - | 167 | } |
168 | |||
2074 | - | 169 | int16_t dThrottleP = (heightError * dynamicParams.heightP) >> LOG_PHEIGHT_SCALE; |
170 | int16_t dThrottleD = (dHeight * dynamicParams.heightD) >> LOG_DHEIGHT_SCALE; |
||
2033 | - | 171 | |
2073 | - | 172 | debugOut.analog[10] = dThrottleP; |
173 | debugOut.analog[11] = dThrottleI; |
||
174 | debugOut.analog[12] = dThrottleD; |
||
175 | debugOut.analog[13] = heightError/10; |
||
2032 | - | 176 | |
2045 | - | 177 | //debugOut.analog[27] = dynamicParams.heightP; |
178 | //debugOut.analog[28] = dynamicParams.heightI; |
||
179 | //debugOut.analog[29] = dynamicParams.heightD; |
||
2035 | - | 180 | |
2071 | - | 181 | int16_t dThrottle = dThrottleI + dThrottleP - dThrottleD; |
2035 | - | 182 | |
1961 | - | 183 | if (dThrottle > staticParams.heightControlMaxThrottleChange) |
184 | dThrottle = staticParams.heightControlMaxThrottleChange; |
||
185 | else if (dThrottle < -staticParams.heightControlMaxThrottleChange) |
||
186 | dThrottle = -staticParams.heightControlMaxThrottleChange; |
||
2026 | - | 187 | |
2055 | - | 188 | /* |
2035 | - | 189 | debugOut.analog[19] = throttle; |
190 | debugOut.analog[20] = dThrottle; |
||
191 | debugOut.analog[21] = height; |
||
192 | debugOut.analog[22] = rampedTargetHeight; |
||
193 | debugOut.analog[23] = heightError; |
||
2055 | - | 194 | */ |
2026 | - | 195 | |
1961 | - | 196 | if (staticParams.bitConfig & CFG_SIMPLE_HEIGHT_CONTROL) { |
2069 | - | 197 | if (!(staticParams.bitConfig & CFG_SIMPLE_HC_HOLD_SWITCH) || HC_isSwitchOn()) { |
1960 | - | 198 | // If switch is not in use --> Just apply height control. |
199 | // If switch is in use --> only apply height control when switch is also ON. |
||
200 | throttle += dThrottle; |
||
201 | } |
||
202 | } |
||
1961 | - | 203 | |
204 | /* Experiment: Find hover-throttle */ |
||
205 | |||
206 | #define DEFAULT_HOVERTHROTTLE 50 |
||
207 | int32_t stronglyFilteredHeightDiff = 0; |
||
2036 | - | 208 | // uint16_t hoverThrottle = 0; // DEFAULT_HOVERTHROTTLE; |
1961 | - | 209 | uint16_t stronglyFilteredThrottle = DEFAULT_HOVERTHROTTLE; |
210 | #define HOVERTHROTTLEFILTER 25 |
||
1960 | - | 211 | |
212 | stronglyFilteredHeightDiff = (stronglyFilteredHeightDiff |
||
213 | * (HOVERTHROTTLEFILTER - 1) + dHeight) / HOVERTHROTTLEFILTER; |
||
214 | stronglyFilteredThrottle = (stronglyFilteredThrottle * (HOVERTHROTTLEFILTER |
||
215 | - 1) + throttle) / HOVERTHROTTLEFILTER; |
||
216 | |||
2035 | - | 217 | /* |
1960 | - | 218 | if (isFlying >= 1000 && stronglyFilteredHeightDiff < 3 |
219 | && stronglyFilteredHeightDiff > -3) { |
||
220 | hoverThrottle = stronglyFilteredThrottle; |
||
221 | debugOut.digital[0] |= DEBUG_HOVERTHROTTLE; |
||
222 | } else |
||
223 | debugOut.digital[0] &= ~DEBUG_HOVERTHROTTLE; |
||
2035 | - | 224 | |
225 | */ |
||
1960 | - | 226 | |
2048 | - | 227 | PRTY[CONTROL_THROTTLE] = throttle; |
1775 | - | 228 | } |
229 | |||
230 | /* |
||
1821 | - | 231 | For a variometer thingy: |
232 | When switch is thrown on, freeze throttle (capture it into variable) |
||
233 | For each iter., add (throttle - frozen throttle) to target height. Maybe don't do ramping. |
||
234 | Output = frozen throttle + whatever is computed +/-. Integral? |
||
235 | */ |