Subversion Repositories NaviCtrl

Rev

Rev 41 | Rev 134 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
41 ingob 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 <stdio.h>
58
#include "91x_lib.h"
59
#include "uart1.h"
60
 
110 killagreg 61
#define UART2_BAUD_RATE 57600           //Baud Rate for the serial interfaces
62
 
63
 
41 ingob 64
/********************************************************/
65
/*                  Initialize UART2                    */
66
/********************************************************/
67
void UART2_Init(void)
68
{
69
    UART_InitTypeDef UART_InitStructure;
70
        GPIO_InitTypeDef GPIO_InitStructure;
71
 
110 killagreg 72
        UART1_PutString("\r\n UART2 init...");
41 ingob 73
 
74
        SCU_APBPeriphClockConfig(__UART2, ENABLE);  // Enable the UART2 Clock
75
 
76
        SCU_APBPeriphClockConfig(__GPIO5, ENABLE);  // Enable the GPIO5 Clock
77
    /*Configure UART2_Rx pin GPIO5.2*/
78
        GPIO_StructInit(&GPIO_InitStructure);
79
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
80
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_2;
81
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_PushPull;
82
    GPIO_InitStructure.GPIO_IPConnected =       GPIO_IPConnected_Enable;
83
    GPIO_InitStructure.GPIO_Alternate =         GPIO_InputAlt1; // UART2_RxD
84
    GPIO_Init(GPIO5, &GPIO_InitStructure);
85
 
86
        SCU_APBPeriphClockConfig(__GPIO3, ENABLE);  // Enable the GPIO3 Clock
87
    /*Configure UART2_Tx pin GPIO3.0*/
88
        GPIO_StructInit(&GPIO_InitStructure);
89
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinOutput;
90
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_0;
91
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_PushPull;
92
    GPIO_InitStructure.GPIO_Alternate =         GPIO_OutputAlt2; // UART2_TX
93
    GPIO_Init(GPIO3, &GPIO_InitStructure);
94
 
95
 
96
        /* UART2 configured as follow:
97
          - Word Length = 8 Bits
98
          - One Stop Bit
99
          - No parity
100
          - BaudRate = 57600 baud
101
          - Hardware flow control Disabled
102
          - Receive and transmit enabled
103
          - Receive and transmit FIFOs are Disabled
104
    */
105
        UART_StructInit(&UART_InitStructure);
106
    UART_InitStructure.UART_WordLength =                        UART_WordLength_8D;
107
    UART_InitStructure.UART_StopBits =                          UART_StopBits_1;
108
    UART_InitStructure.UART_Parity =                            UART_Parity_No ;
110 killagreg 109
    UART_InitStructure.UART_BaudRate =                          UART2_BAUD_RATE;
41 ingob 110
    UART_InitStructure.UART_HardwareFlowControl =       UART_HardwareFlowControl_None;
111
    UART_InitStructure.UART_Mode =                                      UART_Mode_Tx_Rx;
112
    UART_InitStructure.UART_FIFO =                                      UART_FIFO_Enable;
113
    UART_InitStructure.UART_TxFIFOLevel =                       UART_FIFOLevel_1_2;
114
    UART_InitStructure.UART_RxFIFOLevel =                       UART_FIFOLevel_1_2;
115
 
116
        UART_DeInit(UART2);     // reset uart 2 to default
117
    UART_Init(UART2, &UART_InitStructure);  // initialize uart 2
118
 
119
        // enable uart 2 interrupts selective
120
    UART_ITConfig(UART2, UART_IT_Receive | UART_IT_ReceiveTimeOut, ENABLE);
121
        UART_Cmd(UART2, ENABLE); // enable uart 2
122
        // configure the uart 2 interupt line as an IRQ with priority 9 (0 is highest)
123
        VIC_Config(UART2_ITLine, VIC_IRQ, 9);
124
        // enable the uart 2 IRQ
125
        VIC_ITCmd(UART2_ITLine, ENABLE);
126
 
110 killagreg 127
        UART1_PutString("ok");
41 ingob 128
}
129
 
130
 
131
void UART2_Deinit(void)
132
{
133
        GPIO_InitTypeDef GPIO_InitStructure;
134
 
110 killagreg 135
        UART1_PutString("\r\n UART2 deinit...");
41 ingob 136
        VIC_ITCmd(UART2_ITLine, DISABLE); // disable the uart 2 IRQ
137
        UART_Cmd(UART2, DISABLE); // disable uart 2
138
        UART_DeInit(UART2);     // reset uart 0 to default
139
 
140
        SCU_APBPeriphClockConfig(__UART2, DISABLE);  // disable the UART2 Clock
141
 
142
        SCU_APBPeriphClockConfig(__GPIO5, ENABLE);
143
        // unmap UART2 from FC
144
        // set port pin 5.2 (serial data from FC) to input and disconnect from IP
145
        GPIO_StructInit(&GPIO_InitStructure);
146
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
147
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_2;
148
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_PushPull;
149
    GPIO_InitStructure.GPIO_IPConnected =       GPIO_IPConnected_Disable;
150
    GPIO_InitStructure.GPIO_Alternate =         GPIO_InputAlt1;
151
    GPIO_Init(GPIO5, &GPIO_InitStructure);
152
 
153
        SCU_APBPeriphClockConfig(__GPIO3, ENABLE);
154
        // set port pin 3.0 (serial data to FC) to input and disconnect from IP
155
        GPIO_StructInit(&GPIO_InitStructure);
156
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
157
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_0;
158
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_PushPull;
159
        GPIO_InitStructure.GPIO_IPConnected =   GPIO_IPConnected_Disable;
160
    GPIO_InitStructure.GPIO_Alternate =         GPIO_InputAlt1;
161
    GPIO_Init(GPIO3, &GPIO_InitStructure);
162
 
110 killagreg 163
        UART1_PutString("ok");
41 ingob 164
}
165
 
166
/********************************************************/
167
/*            UART2 Interrupt Handler                   */
168
/********************************************************/
169
void UART2_IRQHandler(void)
170
{
171
        // if receive irq or receive timeout irq has occured
172
        if((UART_GetITStatus(UART2, UART_IT_Receive) != RESET) || (UART_GetITStatus(UART2, UART_IT_ReceiveTimeOut) != RESET) )
173
        {
174
                UART_ClearITPendingBit(UART2, UART_IT_Receive);                 // clear receive interrupt flag
175
                UART_ClearITPendingBit(UART2, UART_IT_ReceiveTimeOut);  // clear receive timeout interrupt flag
176
 
177
                // if debug UART is UART2
178
                if (DebugUART == UART2)
179
                {       // forward received data to the UART1 tx buffer
180
                        while(UART_GetFlagStatus(UART2, UART_FLAG_RxFIFOEmpty) != SET)
181
                        {
182
                                // wait for space in the tx buffer of the UART1
183
                                while(UART_GetFlagStatus(UART1, UART_FLAG_TxFIFOFull) == SET) {};
184
                                // move the byte from the rx buffer of UART2 to the tx buffer of UART1
185
                                UART_SendData(UART1, UART_ReceiveData(UART2));
186
                        }
187
                }
188
                else
189
                {
190
                        // ignore serial data from the FC
191
                        while(UART_GetFlagStatus(UART2, UART_FLAG_RxFIFOEmpty) != SET)
192
                        UART_ReceiveData(UART2);
193
                }
194
        } // eof receive irq or receive timeout irq
195
}