Rev 2103 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2099 | - | 1 | #include <stdlib.h> |
2 | #include "controlMixer.h" |
||
3 | #include "rc.h" |
||
4 | #include "externalControl.h" |
||
5 | #include "failsafeControl.h" |
||
6 | #include "configuration.h" |
||
7 | #include "attitude.h" |
||
8 | #include "commands.h" |
||
9 | #include "output.h" |
||
10 | |||
11 | int16_t controls[4] = { 0, 0, 0, 0 }; |
||
12 | |||
13 | // Internal variables for reading commands made with an R/C stick. |
||
14 | uint8_t lastCommand = COMMAND_NONE; |
||
15 | uint8_t lastArgument; |
||
16 | |||
17 | uint8_t isCommandRepeated = 0; |
||
18 | uint8_t controlMixer_didReceiveSignal = 0; |
||
19 | |||
20 | /* |
||
21 | * This could be expanded to take arguments from ohter sources than the RC |
||
22 | * (read: Custom MK RC project) |
||
23 | */ |
||
24 | uint8_t controlMixer_getArgument(void) { |
||
25 | return lastArgument; |
||
26 | } |
||
27 | |||
28 | /* |
||
29 | * This could be expanded to take calibrate / start / stop commands from ohter sources |
||
30 | * than the R/C (read: Custom MK R/C project) |
||
31 | */ |
||
32 | uint8_t controlMixer_getCommand(void) { |
||
33 | return lastCommand; |
||
34 | } |
||
35 | |||
36 | uint8_t controlMixer_isCommandRepeated(void) { |
||
37 | return isCommandRepeated; |
||
38 | } |
||
39 | |||
40 | void controlMixer_setNeutral() { |
||
41 | for (uint8_t i=0; i<VARIABLE_COUNT; i++) { |
||
42 | variables[i] = RC_getVariable(i); |
||
43 | } |
||
44 | EC_setNeutral(); |
||
45 | FC_setNeutral(); // FC is FailsafeControl, not FlightCtrl. |
||
46 | } |
||
47 | |||
48 | /* |
||
49 | * Update potentiometer values with limited slew rate. Could be made faster if desired. |
||
50 | * TODO: It assumes R/C as source. Not necessarily true. |
||
51 | */ |
||
52 | void controlMixer_updateVariables(void) { |
||
53 | uint8_t i; |
||
54 | int16_t targetvalue; |
||
55 | for (i=0; i < VARIABLE_COUNT; i++) { |
||
56 | targetvalue = RC_getVariable(i); |
||
57 | if (targetvalue < 0) |
||
58 | targetvalue = 0; |
||
59 | if (variables[i] < targetvalue && variables[i] < 255) |
||
60 | variables[i]++; |
||
61 | else if (variables[i] > 0 && variables[i] > targetvalue) |
||
62 | variables[i]--; |
||
63 | } |
||
64 | } |
||
65 | |||
66 | uint8_t controlMixer_getSignalQuality(void) { |
||
67 | uint8_t rcQ = RC_getSignalQuality(); |
||
68 | uint8_t ecQ = EC_getSignalQuality(); |
||
69 | |||
70 | // This needs not be the only correct solution... |
||
71 | return rcQ > ecQ ? rcQ : ecQ; |
||
72 | } |
||
73 | |||
74 | /* |
||
75 | void updateControlAndMeasureControlActivity(uint8_t index, int16_t newValue) { |
||
76 | int16_t tmp = controls[index]; |
||
77 | controls[index] = newValue; |
||
78 | |||
79 | tmp -= newValue; |
||
80 | tmp /= 2; |
||
81 | tmp = tmp * tmp; |
||
82 | // tmp += (newValue >= 0) ? newValue : -newValue; |
||
83 | |||
84 | / * |
||
85 | if (controlActivity + (uint16_t)tmp >= controlActivity) |
||
86 | controlActivity += tmp; |
||
87 | else controlActivity = 0xffff; |
||
88 | * / |
||
89 | if (controlActivity + (uint16_t)tmp < 0x8000) |
||
90 | controlActivity += tmp; |
||
91 | } |
||
92 | |||
93 | #define CADAMPING 10 |
||
94 | void dampenControlActivity(void) { |
||
95 | uint32_t tmp = controlActivity; |
||
96 | tmp *= ((1<<CADAMPING)-1); |
||
97 | tmp >>= CADAMPING; |
||
98 | controlActivity = tmp; |
||
99 | } |
||
100 | */ |
||
101 | |||
102 | /* |
||
103 | * Update the variables indicating stick position from the sum of R/C, GPS and external control |
||
104 | * and whatever other controls we invented in the meantime... |
||
105 | * Update variables. |
||
106 | * Decode commands but do not execute them. |
||
107 | */ |
||
108 | |||
109 | void controlMixer_periodicTask(void) { |
||
2103 | - | 110 | int16_t tempPRYT[4] = { 0, 0, 0, 0 }; |
2099 | - | 111 | |
112 | // Decode commands. |
||
2102 | - | 113 | uint8_t rcCommand = (RC_getSignalQuality() >= SIGNAL_OK) ? RC_getCommand() : COMMAND_NONE; |
114 | uint8_t ecCommand = (EC_getSignalQuality() >= SIGNAL_OK) ? EC_getCommand() : COMMAND_NONE; |
||
2099 | - | 115 | |
116 | // Update variables ("potis"). |
||
117 | if (controlMixer_getSignalQuality() >= SIGNAL_GOOD) { |
||
118 | controlMixer_updateVariables(); |
||
119 | controlMixer_didReceiveSignal = 1; |
||
120 | } else { // Signal is not OK |
||
121 | // Could handle switch to emergency flight here. |
||
122 | // throttle is handled elsewhere. |
||
123 | } |
||
124 | |||
125 | if (rcCommand != COMMAND_NONE) { |
||
126 | isCommandRepeated = (lastCommand == rcCommand); |
||
127 | lastCommand = rcCommand; |
||
128 | lastArgument = RC_getArgument(); |
||
129 | } else if (ecCommand != COMMAND_NONE) { |
||
130 | isCommandRepeated = (lastCommand == ecCommand); |
||
131 | lastCommand = ecCommand; |
||
132 | lastArgument = EC_getArgument(); |
||
133 | } else { |
||
134 | // Both sources have no command, or one or both are out. |
||
135 | // Just set to false. There is no reason to check if the none-command was repeated anyway. |
||
136 | isCommandRepeated = 0; |
||
137 | lastCommand = COMMAND_NONE; |
||
138 | } |
||
139 | |||
140 | // This will init the values (not just add to them). |
||
2103 | - | 141 | RC_periodicTaskAndPRYT(tempPRYT); |
2099 | - | 142 | |
143 | // Add external control to RC |
||
2103 | - | 144 | EC_periodicTaskAndPRYT(tempPRYT); |
2099 | - | 145 | |
2103 | - | 146 | FC_periodicTaskAndPRYT(tempPRYT); |
2099 | - | 147 | |
148 | // Commit results to global variable and also measure control activity. |
||
2103 | - | 149 | controls[CONTROL_THROTTLE] = tempPRYT[CONTROL_THROTTLE]; |
150 | controls[CONTROL_ELEVATOR] = tempPRYT[CONTROL_ELEVATOR]; |
||
151 | controls[CONTROL_AILERONS] = tempPRYT[CONTROL_AILERONS]; |
||
152 | controls[CONTROL_RUDDER] = tempPRYT[CONTROL_RUDDER]; |
||
2099 | - | 153 | // dampenControlActivity(); |
154 | |||
155 | // We can safely do this even with a bad signal - the variables will not have been updated then. |
||
156 | configuration_applyVariablesToParams(); |
||
157 | } |