Subversion Repositories NaviCtrl

Rev

Rev 378 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
119 killagreg 1
/*#######################################################################################*/
2
/* !!! THIS IS NOT FREE SOFTWARE !!!                                                     */
3
/*#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + www.MikroKopter.com
6
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 7
// + Software Nutzungsbedingungen (english version: see below)
8
// + der Fa. HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland - nachfolgend Lizenzgeber genannt -
9
// + Der Lizenzgeber räumt dem Kunden ein nicht-ausschließliches, zeitlich und räumlich* unbeschränktes Recht ein, die im den
10
// + Mikrocontroller verwendete Firmware für die Hardware Flight-Ctrl, Navi-Ctrl, BL-Ctrl, MK3Mag & PC-Programm MikroKopter-Tool 
11
// + - nachfolgend Software genannt - nur für private Zwecke zu nutzen.
12
// + Der Einsatz dieser Software ist nur auf oder mit Produkten des Lizenzgebers zulässig.
119 killagreg 13
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 14
// + Die vom Lizenzgeber gelieferte Software ist urheberrechtlich geschützt. Alle Rechte an der Software sowie an sonstigen im
15
// + Rahmen der Vertragsanbahnung und Vertragsdurchführung überlassenen Unterlagen stehen im Verhältnis der Vertragspartner ausschließlich dem Lizenzgeber zu.
16
// + Die in der Software enthaltenen Copyright-Vermerke, Markenzeichen, andere Rechtsvorbehalte, Seriennummern sowie
17
// + sonstige der Programmidentifikation dienenden Merkmale dürfen vom Kunden nicht verändert oder unkenntlich gemacht werden.
18
// + Der Kunde trifft angemessene Vorkehrungen für den sicheren Einsatz der Software. Er wird die Software gründlich auf deren
19
// + Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
20
// + Die Haftung des Lizenzgebers wird - soweit gesetzlich zulässig - begrenzt in Höhe des typischen und vorhersehbaren
21
// + Schadens. Die gesetzliche Haftung bei Personenschäden und nach dem Produkthaftungsgesetz bleibt unberührt. Dem Lizenzgeber steht jedoch der Einwand 
22
// + des Mitverschuldens offen.
23
// + Der Kunde trifft angemessene Vorkehrungen für den Fall, dass die Software ganz oder teilweise nicht ordnungsgemäß arbeitet.
24
// + Er wird die Software gründlich auf deren Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
25
// + Der Kunde wird er seine Daten vor Einsatz der Software nach dem Stand der Technik sichern.
26
// + Der Kunde ist darüber unterrichtet, dass der Lizenzgeber seine Daten im zur Vertragsdurchführung erforderlichen Umfang
27
// + und auf Grundlage der Datenschutzvorschriften erhebt, speichert, verarbeitet und, sofern notwendig, an Dritte übermittelt.
28
// + *) Die räumliche Nutzung bezieht sich nur auf den Einsatzort, nicht auf die Reichweite der programmierten Software.
29
// + #### ENDE DER NUTZUNGSBEDINGUNGEN ####'
30
// +  Hinweis: Informationen über erweiterte Nutzungsrechte (wie z.B. Nutzung für nicht-private Zwecke) sind auf Anfrage per Email an info(@)hisystems.de verfügbar.
119 killagreg 31
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 32
// + Software LICENSING TERMS
119 killagreg 33
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 34
// + of HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland, Germany - the Licensor -
35
// + The Licensor grants the customer a non-exclusive license to use the microcontroller firmware of the Flight-Ctrl, Navi-Ctrl, BL-Ctrl, and MK3Mag hardware 
36
// + (the Software) exclusively for private purposes. The License is unrestricted with respect to time and territory*.
37
// + The Software may only be used with the Licensor's products.
38
// + The Software provided by the Licensor is protected by copyright. With respect to the relationship between the parties to this
39
// + agreement, all rights pertaining to the Software and other documents provided during the preparation and execution of this
40
// + agreement shall be the property of the Licensor.
41
// + The information contained in the Software copyright notices, trademarks, other legal reservations, serial numbers and other
42
// + features that can be used to identify the program may not be altered or defaced by the customer.
43
// + The customer shall be responsible for taking reasonable precautions
44
// + for the safe use of the Software. The customer shall test the Software thoroughly regarding its suitability for the
45
// + intended purpose before implementing it for actual operation. The Licensor's liability shall be limited to the extent of typical and
46
// + foreseeable damage to the extent permitted by law, notwithstanding statutory liability for bodily injury and product
47
// + liability. However, the Licensor shall be entitled to the defense of contributory negligence.
48
// + The customer will take adequate precautions in the case, that the software is not working properly. The customer will test
49
// + the software for his purpose before any operational usage. The customer will backup his data before using the software.
50
// + The customer understands that the Licensor collects, stores and processes, and, where required, forwards, customer data
51
// + to third parties to the extent necessary for executing the agreement, subject to applicable data protection and privacy regulations.
52
// + *) The territory aspect only refers to the place where the Software is used, not its programmed range.
53
// + #### END OF LICENSING TERMS ####
54
// + Note: For information on license extensions (e.g. commercial use), please contact us at info(@)hisystems.de.
119 killagreg 55
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
56
#include "91x_lib.h"
57
#include "timer2.h"
58
#include "uart1.h"
121 killagreg 59
#include "spi_slave.h"
136 killagreg 60
#include "config.h"
378 holgerb 61
#include "led.h"
119 killagreg 62
 
63
#define CR1_OLVL1_MASK    0x0100
64
#define CR1_OLVL2_MASK    0x0200
65
 
141 killagreg 66
volatile ServoParams_t ServoParams;
120 killagreg 67
 
68
#define TIM2_FREQ 625000 // 625kHz,  the same clock like at the FC
119 killagreg 69
// frame len 22.5 ms = 14063 * 1.6 us
70
// stop pulse: 0.3 ms = 188 * 1.6 us
71
// min servo pulse: 0.6 ms =  375 * 1.6 us
72
// max servo pulse: 2.4 ms = 1500 * 1.6 us
73
// resolution: 1500 - 375 = 1125 steps
74
#define PPM_STOPPULSE 188
121 killagreg 75
//#define PPM_FRAMELEN 14063
76
#define PPM_FRAMELEN (1757 * ServoParams.Refresh) // 22.5 ms / 8 Channels = 2.8125ms per Servo Channel
119 killagreg 77
#define MINSERVOPULSE 375
78
#define MAXSERVOPULSE 1500
79
#define SERVORANGE (MAXSERVOPULSE - MINSERVOPULSE)
80
 
81
//----------------------------------------------------------------------------------------------------
82
void TIM2_IRQHandler(void)
83
{
121 killagreg 84
        #define MULTIPLYER 4
85
        static s16 ServoNickOffset = (255 / 2) * MULTIPLYER; // initial value near center position
86
        static s16 ServoRollOffset = (255 / 2) * MULTIPLYER; // initial value near center position
87
 
88
        static u16 LowPulseTime1 = 14063;
89
        static u16 LowPulseTime2 = 14063;
119 killagreg 90
 
121 killagreg 91
        s16 ServoNickValue = 0;
92
        s16 ServoRollValue = 0;
93
 
119 killagreg 94
        u16 pulselen;
95
 
195 killagreg 96
        IENABLE;
97
 
119 killagreg 98
        if(TIM_GetFlagStatus(TIM2, TIM_FLAG_OC1) == SET)
99
        {
154 killagreg 100
                TIM_ClearFlag(TIM2, TIM_FLAG_OC1); // clear irq pending bit
119 killagreg 101
                if (TIM2->CR1 & CR1_OLVL1_MASK) // start of high pulse
102
                {
103
                        pulselen = MINSERVOPULSE + SERVORANGE/2;
121 killagreg 104
                        ServoNickOffset = (ServoNickOffset * 3 + (s16)ServoParams.NickControl * MULTIPLYER) / 4; // lowpass offset
105
                        ServoNickValue = ServoNickOffset; // offset (Range from 0 to 255 * 3 = 765)
106
                        if(ServoParams.CompInvert & 0x01)
107
                        {       // inverting movement of servo FromFlightCtrl.AngleNick
108
                                ServoNickValue += (s16)( ( (s32)ServoParams.NickComp * MULTIPLYER * (FromFlightCtrl.AngleNick) ) / (256L) );
109
                        }
110
                        else
111
                        {       // non inverting movement of servo FromFlightCtrl.AngleNick
112
                                ServoNickValue -= (s16)( ( (s32)ServoParams.NickComp * MULTIPLYER * (FromFlightCtrl.AngleNick) ) / (256L) );
113
                        }
114
                        // limit servo value to its parameter range definition
115
                        if(ServoNickValue < ((s16)ServoParams.NickMin * MULTIPLYER) )
116
                        {
117
                                ServoNickValue = (s16)ServoParams.NickMin * MULTIPLYER;
118
                        }
119
                        else
120
                        if(ServoNickValue > ((s16)ServoParams.NickMax * MULTIPLYER) )
121
                        {
122
                                ServoNickValue = (s16)ServoParams.NickMax * MULTIPLYER;
123
                        }
124
 
125
                        pulselen += ServoNickValue - (256 / 2) * MULTIPLYER; // shift ServoNickValue to center position
126
                        DebugOut.Analog[7] = ServoNickValue / MULTIPLYER;
119 killagreg 127
                        LowPulseTime1 = PPM_FRAMELEN - pulselen;
128
                        TIM2->CR1 &= ~CR1_OLVL1_MASK; // make next a low pulse
129
                }
130
                else // start of low pulse
131
                {
132
                        pulselen = LowPulseTime1;                      
133
                        TIM2->CR1 |= CR1_OLVL1_MASK;  // make next a high pulse
134
                }
135
                TIM2->OC1R += pulselen;
136
        }
137
 
138
        if(TIM_GetFlagStatus(TIM2, TIM_FLAG_OC2) == SET)
139
        {
154 killagreg 140
                TIM_ClearFlag(TIM2, TIM_FLAG_OC2); // clear irq pending bit
119 killagreg 141
                if (TIM2->CR1 & CR1_OLVL2_MASK) // was high pulse
142
                {
143
                        pulselen = MINSERVOPULSE + SERVORANGE/2;
121 killagreg 144
                        ServoRollOffset = (ServoRollOffset * 3 + (s16)ServoParams.RollControl * MULTIPLYER) / 4; // lowpass offset
145
                        ServoRollValue = ServoRollOffset; // offset (Range from 0 to 255 * 3 = 765)
146
                        if(ServoParams.CompInvert & 0x02)
147
                        {       // inverting movement of servo FromFlightCtrl.AngleRoll
148
                                ServoRollValue += (s16)( ( (s32)ServoParams.RollComp * MULTIPLYER * (FromFlightCtrl.AngleRoll) ) / (256L) );
149
                        }
150
                        else
151
                        {       // non inverting movement of servo FromFlightCtrl.AngleRoll
152
                                ServoRollValue -= (s16)( ( (s32)ServoParams.RollComp * MULTIPLYER * (FromFlightCtrl.AngleRoll) ) / (256L) );
153
                        }
154
                        // limit servo value to its parameter range definition
155
                        if(ServoRollValue < ((s16)ServoParams.RollMin * MULTIPLYER) )
156
                        {
157
                                ServoRollValue = (s16)ServoParams.RollMin * MULTIPLYER;
158
                        }
159
                        else
160
                        if(ServoRollValue > ((s16)ServoParams.RollMax * MULTIPLYER) )
161
                        {
162
                                ServoRollValue = (s16)ServoParams.RollMax * MULTIPLYER;
163
                        }
164
 
165
                        pulselen += ServoRollValue - (256 / 2) * MULTIPLYER; // shift ServoNickValue to center position
166
                        DebugOut.Analog[8] = ServoRollValue / MULTIPLYER;
119 killagreg 167
                        LowPulseTime2 = PPM_FRAMELEN - pulselen;
120 killagreg 168
                        TIM2->CR1 &= ~CR1_OLVL2_MASK; // make next a low pulse
119 killagreg 169
                }
170
                else
171
                {
172
                        pulselen = LowPulseTime2;
120 killagreg 173
                        TIM2->CR1 |= CR1_OLVL2_MASK; // make next a high pulse
119 killagreg 174
                }
175
                TIM2->OC2R += pulselen;
176
        }
195 killagreg 177
        IDISABLE;
378 holgerb 178
        VIC0->VAR = 0xFF; // write any value to VIC0 Vector address register
119 killagreg 179
}
180
 
181
//----------------------------------------------------------------------------------------------------
182
// Servo Timer
183
//----------------------------------------------------------------------------------------------------
184
void TIMER2_Init(void)
185
{
378 holgerb 186
 
119 killagreg 187
        GPIO_InitTypeDef GPIO_InitStructure;
188
        TIM_InitTypeDef   TIM_InitStructure;
189
 
120 killagreg 190
        UART1_PutString("\r\n Timer2 init...");
119 killagreg 191
 
192
        SCU_APBPeriphClockConfig(__GPIO6, ENABLE); // Enable the GPIO6 Clock
193
 
194
        // configure the servo pins
195
        GPIO_StructInit(&GPIO_InitStructure);
196
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinOutput;
197
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_4;
198
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_PushPull ;
196 killagreg 199
    GPIO_InitStructure.GPIO_IPInputConnected =  GPIO_IPInputConnected_Enable;
119 killagreg 200
    GPIO_InitStructure.GPIO_Alternate =         GPIO_OutputAlt2; //TIM2_OCMP1
201
    GPIO_Init(GPIO6, &GPIO_InitStructure);
202
 
203
        GPIO_StructInit(&GPIO_InitStructure);
204
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinOutput;
205
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_5;
206
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_PushPull;
196 killagreg 207
        GPIO_InitStructure.GPIO_IPInputConnected =      GPIO_IPInputConnected_Enable;
119 killagreg 208
    GPIO_InitStructure.GPIO_Alternate =         GPIO_OutputAlt2; //TIM2_OCMP2
209
    GPIO_Init(GPIO6, &GPIO_InitStructure);
210
 
211
        SCU_APBPeriphClockConfig(__TIM23, ENABLE);
212
 
120 killagreg 213
        TIM_DeInit(TIM2);
119 killagreg 214
        TIM_StructInit(&TIM_InitStructure);
120 killagreg 215
        TIM_InitStructure.TIM_Mode = TIM_OCM_CHANNEL_12; // Output Compare Channels 1 & 2 Mode
216
        TIM_InitStructure.TIM_OC1_Modes = TIM_WAVE;     // OCMP1 pin is dedicated to the OC1 capability of the TIM
217
        TIM_InitStructure.TIM_OC2_Modes = TIM_WAVE;     // OCMP2 pin is dedicated to the OC2 capability of the TIM
218
        TIM_InitStructure.TIM_Clock_Source = TIM_CLK_APB; // APB clock source is used
219
        TIM_InitStructure.TIM_Pulse_Level_1 = TIM_LOW; // output low at OCMP1 pin on compare match
220
        TIM_InitStructure.TIM_Pulse_Level_2 = TIM_LOW; // output low at OCMP2 pin on compare match
119 killagreg 221
        TIM_InitStructure.TIM_Prescaler = (SCU_GetPCLKFreqValue() * 1000) / TIM2_FREQ;
120 killagreg 222
 
119 killagreg 223
        TIM_Init(TIM2, &TIM_InitStructure);
224
 
120 killagreg 225
        TIM_ITConfig(TIM2, TIM_IT_OC1|TIM_IT_OC2, ENABLE);  // enable interrupts for the OC 1 & 2
119 killagreg 226
 
136 killagreg 227
        VIC_Config(TIM2_ITLine, VIC_IRQ, PRIORITY_TIMER2);
378 holgerb 228
//##    VIC_ITCmd(TIM2_ITLine, ENABLE);
119 killagreg 229
 
143 killagreg 230
        TIM2->OC1R = 10;
231
        TIM2->OC2R = 20;
232
 
119 killagreg 233
        // set servo params to defaults
121 killagreg 234
        ServoParams.Refresh = 5;
235
        ServoParams.CompInvert = 0;
236
        ServoParams.NickControl = 127;
119 killagreg 237
        ServoParams.NickComp = 40;
238
        ServoParams.NickMin = 50;
239
        ServoParams.NickMax = 205;
121 killagreg 240
        ServoParams.RollControl = 127;
119 killagreg 241
        ServoParams.RollComp = 40;
242
        ServoParams.RollMin = 50;
143 killagreg 243
        ServoParams.RollMax = 205;
244
 
245
        TIM_CounterCmd(TIM2, TIM_CLEAR); // reset timer
246
        TIM_CounterCmd(TIM2, TIM_START); // start the timer
247
 
120 killagreg 248
        UART1_PutString("ok");
119 killagreg 249
}
250
 
139 killagreg 251
void TIMER2_Deinit(void)
252
{
141 killagreg 253
        GPIO_InitTypeDef GPIO_InitStructure;   
254
 
180 killagreg 255
        UART1_PutString("\r\n Timer2 deinit...");
256
 
139 killagreg 257
        VIC_ITCmd(TIM2_ITLine, DISABLE);
258
        TIM_CounterCmd(TIM2, TIM_STOP); // stop the timer
143 killagreg 259
        TIM_CounterCmd(TIM2, TIM_CLEAR); // stop the timer
139 killagreg 260
        TIM_ITConfig(TIM2, TIM_IT_OC1|TIM_IT_OC2, DISABLE);  // disable interrupts for the OC 1 & 2
261
        TIM_DeInit(TIM2);
141 killagreg 262
        SCU_APBPeriphClockConfig(__TIM23, DISABLE);
263
 
264
        // configure the servo pins as input
265
        GPIO_StructInit(&GPIO_InitStructure);
266
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
267
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_4;
268
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_OpenCollector;
196 killagreg 269
    GPIO_InitStructure.GPIO_IPInputConnected =  GPIO_IPInputConnected_Disable;
141 killagreg 270
    GPIO_InitStructure.GPIO_Alternate =         GPIO_InputAlt1;
271
    GPIO_Init(GPIO6, &GPIO_InitStructure);
272
 
273
        GPIO_StructInit(&GPIO_InitStructure);
274
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
275
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_5;
276
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_OpenCollector;
196 killagreg 277
        GPIO_InitStructure.GPIO_IPInputConnected =      GPIO_IPInputConnected_Disable;
141 killagreg 278
    GPIO_InitStructure.GPIO_Alternate =         GPIO_InputAlt1;
279
    GPIO_Init(GPIO6, &GPIO_InitStructure);
139 killagreg 280
}