Subversion Repositories NaviCtrl

Rev

Rev 119 | Rev 121 | Go to most recent revision | 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
// + Copyright (c) 2008 Ingo Busker, Holger Buss
6
// + Nur für den privaten Gebrauch
7
// + FOR NON COMMERCIAL USE ONLY
8
// + www.MikroKopter.com
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10
// + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation),
11
// + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist.
12
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
13
// + bzgl. der Nutzungsbedingungen aufzunehmen.
14
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
15
// + Verkauf von Luftbildaufnahmen, usw.
16
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
18
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
20
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
21
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
22
// + eindeutig als Ursprung verlinkt werden
23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
25
// + Benutzung auf eigene Gefahr
26
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
27
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
28
// + Die PORTIERUNG der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
29
// + mit unserer Zustimmung zulässig
30
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
32
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
34
// + this list of conditions and the following disclaimer.
35
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
36
// +     from this software without specific prior written permission.
37
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permitted
38
// +     for non-commercial use (directly or indirectly)
39
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
40
// +     with our written permission
41
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
42
// +     clearly linked as origin
43
// +   * PORTING this software (or part of it) to systems (other than hardware from www.mikrokopter.de) is NOT allowed
44
//
45
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
46
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
49
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
50
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
51
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
52
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
53
// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
55
// +  POSSIBILITY OF SUCH DAMAGE.
56
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
57
#include "91x_lib.h"
58
#include "timer2.h"
59
#include "uart1.h"
60
 
61
#define CR1_OLVL1_MASK    0x0100
62
#define CR1_OLVL2_MASK    0x0200
63
 
120 killagreg 64
ServoParams_t ServoParams;
65
 
66
#define TIM2_FREQ 625000 // 625kHz,  the same clock like at the FC
119 killagreg 67
// frame len 22.5 ms = 14063 * 1.6 us
68
// stop pulse: 0.3 ms = 188 * 1.6 us
69
// min servo pulse: 0.6 ms =  375 * 1.6 us
70
// max servo pulse: 2.4 ms = 1500 * 1.6 us
71
// resolution: 1500 - 375 = 1125 steps
72
#define PPM_STOPPULSE 188
73
#define PPM_FRAMELEN 14063
120 killagreg 74
//#define PPM_FRAMELEN (1757 * ServoParams.Refresh) // 22.5 ms / 8 Channels = 2.8125ms per Servo Channel
119 killagreg 75
#define MINSERVOPULSE 375
76
#define MAXSERVOPULSE 1500
77
#define SERVORANGE (MAXSERVOPULSE - MINSERVOPULSE)
78
 
79
//----------------------------------------------------------------------------------------------------
80
void TIM2_IRQHandler(void)
81
{
82
        //static s16 ServoValue1 = 0;
83
        //static s16 ServoValue2 = 0;   
84
        static u16 LowPulseTime1 = PPM_FRAMELEN;
85
        static u16 LowPulseTime2 = PPM_FRAMELEN;
86
 
87
        u16 pulselen;
88
 
89
        if(TIM_GetFlagStatus(TIM2, TIM_FLAG_OC1) == SET)
90
        {
91
                if (TIM2->CR1 & CR1_OLVL1_MASK) // start of high pulse
92
                {
93
                        pulselen = MINSERVOPULSE + SERVORANGE/2;
120 killagreg 94
                        // input code for nick servo here
119 killagreg 95
                        LowPulseTime1 = PPM_FRAMELEN - pulselen;
96
                        TIM2->CR1 &= ~CR1_OLVL1_MASK; // make next a low pulse
97
                }
98
                else // start of low pulse
99
                {
100
                        pulselen = LowPulseTime1;                      
101
                        TIM2->CR1 |= CR1_OLVL1_MASK;  // make next a high pulse
102
                }
103
                TIM2->OC1R += pulselen;
104
                TIM_ClearFlag(TIM2, TIM_FLAG_OC1); // clear irq pending bit
105
        }
106
 
107
        if(TIM_GetFlagStatus(TIM2, TIM_FLAG_OC2) == SET)
108
        {
109
                if (TIM2->CR1 & CR1_OLVL2_MASK) // was high pulse
110
                {
111
                        pulselen = MINSERVOPULSE + SERVORANGE/2;
120 killagreg 112
                        // input code for roll servo here
119 killagreg 113
                        LowPulseTime2 = PPM_FRAMELEN - pulselen;
120 killagreg 114
                        TIM2->CR1 &= ~CR1_OLVL2_MASK; // make next a low pulse
119 killagreg 115
                }
116
                else
117
                {
118
                        pulselen = LowPulseTime2;
120 killagreg 119
                        TIM2->CR1 |= CR1_OLVL2_MASK; // make next a high pulse
119 killagreg 120
                }
121
                TIM2->OC2R += pulselen;
122
                TIM_ClearFlag(TIM2, TIM_FLAG_OC2); // clear irq pending bit
123
        }
124
 
125
        // write any value to VIC0 Vector address register
126
        VIC0->VAR = 0xFF;
127
}
128
 
129
//----------------------------------------------------------------------------------------------------
130
// Servo Timer
131
//----------------------------------------------------------------------------------------------------
132
void TIMER2_Init(void)
133
{
134
        GPIO_InitTypeDef GPIO_InitStructure;
135
        TIM_InitTypeDef   TIM_InitStructure;
136
 
120 killagreg 137
        UART1_PutString("\r\n Timer2 init...");
119 killagreg 138
 
139
        SCU_APBPeriphClockConfig(__GPIO6, ENABLE); // Enable the GPIO6 Clock
140
 
141
        // configure the servo pins
142
        GPIO_StructInit(&GPIO_InitStructure);
143
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinOutput;
144
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_4;
145
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_PushPull ;
146
    GPIO_InitStructure.GPIO_IPConnected =       GPIO_IPConnected_Enable;
147
    GPIO_InitStructure.GPIO_Alternate =         GPIO_OutputAlt2; //TIM2_OCMP1
148
    GPIO_Init(GPIO6, &GPIO_InitStructure);
149
 
150
        GPIO_StructInit(&GPIO_InitStructure);
151
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinOutput;
152
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_5;
153
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_PushPull;
154
        GPIO_InitStructure.GPIO_IPConnected =   GPIO_IPConnected_Enable;
155
    GPIO_InitStructure.GPIO_Alternate =         GPIO_OutputAlt2; //TIM2_OCMP2
156
    GPIO_Init(GPIO6, &GPIO_InitStructure);
157
 
158
        SCU_APBPeriphClockConfig(__TIM23, ENABLE);
159
 
120 killagreg 160
        TIM_DeInit(TIM2);
119 killagreg 161
        TIM_StructInit(&TIM_InitStructure);
120 killagreg 162
        TIM_InitStructure.TIM_Mode = TIM_OCM_CHANNEL_12; // Output Compare Channels 1 & 2 Mode
163
        TIM_InitStructure.TIM_OC1_Modes = TIM_WAVE;     // OCMP1 pin is dedicated to the OC1 capability of the TIM
164
        TIM_InitStructure.TIM_OC2_Modes = TIM_WAVE;     // OCMP2 pin is dedicated to the OC2 capability of the TIM
165
        TIM_InitStructure.TIM_Clock_Source = TIM_CLK_APB; // APB clock source is used
166
        TIM_InitStructure.TIM_Pulse_Level_1 = TIM_LOW; // output low at OCMP1 pin on compare match
167
        TIM_InitStructure.TIM_Pulse_Level_2 = TIM_LOW; // output low at OCMP2 pin on compare match
119 killagreg 168
        TIM_InitStructure.TIM_Prescaler = (SCU_GetPCLKFreqValue() * 1000) / TIM2_FREQ;
120 killagreg 169
 
119 killagreg 170
        TIM_Init(TIM2, &TIM_InitStructure);
171
 
120 killagreg 172
        TIM_ITConfig(TIM2, TIM_IT_OC1|TIM_IT_OC2, ENABLE);  // enable interrupts for the OC 1 & 2
173
        TIM_CounterCmd(TIM2, TIM_START); // start the timer
119 killagreg 174
 
175
        VIC_Config(TIM2_ITLine, VIC_IRQ, 3);
176
        VIC_ITCmd(TIM2_ITLine, ENABLE);
177
 
178
        // set servo params to defaults
179
        ServoParams.Refresh = 5;
180
        ServoParams.NickOffset = 127;
181
        ServoParams.NickComp = 40;
182
        ServoParams.NickMin = 50;
183
        ServoParams.NickMax = 205;
184
        ServoParams.RollOffset = 127;
185
        ServoParams.RollComp = 40;
186
        ServoParams.RollMin = 50;
187
        ServoParams.RollMax = 205;             
188
 
120 killagreg 189
        UART1_PutString("ok");
119 killagreg 190
}
191