Subversion Repositories NaviCtrl

Rev

Rev 151 | Rev 154 | 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 <stdarg.h>
59
#include <string.h>
60
 
61
#include "91x_lib.h"
136 killagreg 62
#include "config.h"
41 ingob 63
#include "menu.h"
64
#include "printf_P.h"
65
#include "GPS.h"
66
#include "i2c.h"
67
#include "uart0.h"
68
#include "uart1.h"
69
#include "uart2.h"
119 killagreg 70
#include "timer1.h"
139 killagreg 71
#include "timer2.h"
72
#include "analog.h"
41 ingob 73
#include "main.h"
74
#include "waypoints.h"
110 killagreg 75
#include "mkprotocol.h"
153 killagreg 76
#include "fifo.h"
41 ingob 77
 
78
#define FALSE   0
79
#define TRUE    1
80
 
92 killagreg 81
 
110 killagreg 82
u8 UART1_Request_VersionInfo    = FALSE;
83
u8 UART1_Request_SendFollowMe   = FALSE;
84
u8 UART1_Request_ExternalControl= FALSE;
85
u8 UART1_Request_Display                = FALSE;
86
u8 UART1_Request_Display1               = FALSE;
87
u8 UART1_Request_DebugData              = FALSE;
88
u8 UART1_Request_DebugLabel             = 255;
89
u8 UART1_Request_NaviData               = FALSE;
90
u8 UART1_Request_ErrorMessage   = FALSE;
91
u8 UART1_Request_NewWaypoint    = FALSE;
92
u8 UART1_Request_ReadWaypoint   = 255;
93
u8 UART1_Request_Data3D             = FALSE;
94
u8 UART1_Request_Echo               = FALSE;
112 killagreg 95
u8 UART1_DisplayLine                    = 0;
96
u8 UART1_ConfirmFrame                   = 0;
41 ingob 97
 
98
UART_TypeDef *DebugUART = UART1;
99
 
153 killagreg 100
// the primary rx fifo
101
#define UART1_RX_FIFO_LEN 512
102
u8 UART1_rxfifobuffer[UART1_RX_FIFO_LEN];
103
fifo_t UART1_rx_fifo;
110 killagreg 104
 
105
// the rx buffer
106
#define UART1_RX_BUFFER_LEN  150
107
u8 UART1_rbuffer[UART1_RX_BUFFER_LEN];
108
Buffer_t UART1_rx_buffer;
109
 
153 killagreg 110
// the tx buffer
111
#define UART1_TX_BUFFER_LEN  150
112
u8 UART1_tbuffer[UART1_TX_BUFFER_LEN];
113
Buffer_t UART1_tx_buffer;
114
 
115
 
116
 
92 killagreg 117
volatile u8 SerialLinkOkay = 0;
41 ingob 118
 
150 killagreg 119
u8 text[200];
41 ingob 120
 
121
const u8 ANALOG_LABEL[32][16] =
122
{
90 killagreg 123
   //1234567890123456
41 ingob 124
        "AngleNick       ", //0
125
        "AngleRoll       ",
126
        "AccNick         ",
127
        "AccRoll         ",
128
        "                ",
75 holgerb 129
        "MK-Flags        ", //5
95 killagreg 130
        "NC-Flags        ",
121 killagreg 131
        "NickServo       ",
132
        "RollServo       ",
41 ingob 133
        "GPS Data        ",
61 holgerb 134
        "CompassHeading  ", //10
135
        "GyroHeading     ",
41 ingob 136
        "SPI Error       ",
137
        "SPI Okay        ",
138
        "I2C Error       ",
139
        "I2C Okay        ", //15
149 killagreg 140
        "                ",//    "Kalman_K        ",
41 ingob 141
        "ACC_Speed_N     ",
142
        "ACC_Speed_E     ",
148 holgerb 143
        "Speed_z         ",//    "GPS ACC         ",
41 ingob 144
        "                ",//    "MAXDrift        ", //20
145
        "N_Speed         ",
146
        "E_Speed         ",
99 killagreg 147
        "P-Part          ",
148
        "I-Part          ",
149
        "D-Part          ",//25
150
        "PID-Part        ",
41 ingob 151
        "Distance N      ",
152
        "Distance E      ",
153
        "GPS_Nick        ",
154
        "GPS_Roll        ", //30
155
        "Used_Sats       "
156
};
157
 
112 killagreg 158
DebugOut_t DebugOut;
159
ExternControl_t ExternControl;
160
UART_VersionInfo_t UART_VersionInfo;
161
NaviData_t NaviData;
162
Waypoint_t FollowMe;
163
Data3D_t Data3D;
164
u16 Echo; // 2 bytes recieved will be sent back as echo
41 ingob 165
 
112 killagreg 166
u32 UART1_DebugData_Timer;
167
u32 UART1_DebugData_Interval = 5000;    // in ms
168
u32 UART1_NaviData_Timer;
169
u32 UART1_NaviData_Interval = 5000;     // in ms
170
u32 UART1_Data3D_Timer = 0;                     // in ms
171
u32 UART1_Data3D_Interval = 0;
172
 
41 ingob 173
/********************************************************/
174
/*            Initialization the UART1                  */
175
/********************************************************/
176
void UART1_Init (void)
177
{
178
        GPIO_InitTypeDef GPIO_InitStructure;
179
        UART_InitTypeDef UART_InitStructure;
180
 
153 killagreg 181
        // initialize txd buffer
182
        Buffer_Init(&UART1_tx_buffer, UART1_tbuffer, UART1_TX_BUFFER_LEN);
183
 
184
        // initialize rxd buffer
185
        Buffer_Init(&UART1_rx_buffer, UART1_rbuffer, UART1_RX_BUFFER_LEN);
186
 
187
        // initialize the rx fifo
188
        fifo_init(&UART1_rx_fifo, UART1_rxfifobuffer, UART1_RX_FIFO_LEN);
189
 
41 ingob 190
        SCU_APBPeriphClockConfig(__UART1, ENABLE);  // Enable the UART1 Clock
191
        SCU_APBPeriphClockConfig(__GPIO3, ENABLE);  // Enable the GPIO3 Clock
192
 
193
        /*Configure UART1_Rx pin GPIO3.2*/
194
        GPIO_StructInit(&GPIO_InitStructure);
195
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
196
        GPIO_InitStructure.GPIO_Pin =                   GPIO_Pin_2;
197
        GPIO_InitStructure.GPIO_Type =                  GPIO_Type_PushPull;
198
        GPIO_InitStructure.GPIO_IPConnected =   GPIO_IPConnected_Enable;
199
        GPIO_InitStructure.GPIO_Alternate =     GPIO_InputAlt1; // UART1_RxD
200
        GPIO_Init(GPIO3, &GPIO_InitStructure);
201
 
202
        /*Configure UART1_Tx pin GPIO3.3*/
203
        GPIO_StructInit(&GPIO_InitStructure);
204
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinOutput;
205
        GPIO_InitStructure.GPIO_Pin =                   GPIO_Pin_3;
206
        GPIO_InitStructure.GPIO_Type =                  GPIO_Type_PushPull;
207
        GPIO_InitStructure.GPIO_Alternate =     GPIO_OutputAlt2; // UART1_TX
208
        GPIO_Init(GPIO3, &GPIO_InitStructure);
209
 
210
        /* UART1 configured as follow:
211
        - Word Length = 8 Bits
212
        - One Stop Bit
213
        - No parity
214
        - BaudRate = 57600 baud
215
        - Hardware flow control Disabled
216
        - Receive and transmit enabled
217
        - Receive and transmit FIFOs are Disabled
218
        */
219
        UART_StructInit(&UART_InitStructure);
220
        UART_InitStructure.UART_WordLength =                    UART_WordLength_8D;
221
        UART_InitStructure.UART_StopBits =                              UART_StopBits_1;
222
        UART_InitStructure.UART_Parity =                                UART_Parity_No ;
110 killagreg 223
        UART_InitStructure.UART_BaudRate =                              UART1_BAUD_RATE;
41 ingob 224
        UART_InitStructure. UART_HardwareFlowControl =  UART_HardwareFlowControl_None;
225
        UART_InitStructure.UART_Mode =                                  UART_Mode_Tx_Rx;
226
        UART_InitStructure.UART_FIFO =                                  UART_FIFO_Enable;
227
        UART_InitStructure.UART_TxFIFOLevel =                   UART_FIFOLevel_1_2;
139 killagreg 228
        UART_InitStructure.UART_RxFIFOLevel =                   UART_FIFOLevel_1_2;
41 ingob 229
 
230
        UART_DeInit(UART1); // reset uart 1     to default
153 killagreg 231
        UART_Init(UART1, &UART_InitStructure); // initialize uart 1     
41 ingob 232
        // enable uart 1 interrupts selective
233
        UART_ITConfig(UART1, UART_IT_Receive | UART_IT_ReceiveTimeOut, ENABLE);
234
        UART_Cmd(UART1, ENABLE); // enable uart 1
136 killagreg 235
        // configure the uart 1 interupt line
236
        VIC_Config(UART1_ITLine, VIC_IRQ, PRIORITY_UART1);
153 killagreg 237
                // enable the uart 1 IRQ
41 ingob 238
        VIC_ITCmd(UART1_ITLine, ENABLE);
153 killagreg 239
 
41 ingob 240
        // initialize the debug timer
110 killagreg 241
        UART1_DebugData_Timer = SetDelay(UART1_DebugData_Interval);
242
        UART1_NaviData_Timer = SetDelay(UART1_NaviData_Interval)+500;
243
 
41 ingob 244
        // Fill Version Info Structure
245
        UART_VersionInfo.SWMajor = VERSION_MAJOR;
246
        UART_VersionInfo.SWMinor = VERSION_MINOR;
247
        UART_VersionInfo.SWPatch = VERSION_PATCH;
248
        UART_VersionInfo.ProtoMajor = VERSION_SERIAL_MAJOR;
249
        UART_VersionInfo.ProtoMinor = VERSION_SERIAL_MINOR;
250
 
89 killagreg 251
        NaviData.Version = NAVIDATA_VERSION;
92 killagreg 252
 
110 killagreg 253
        UART1_PutString("\r\nUART1 init...ok");
41 ingob 254
}
255
 
256
 
257
/****************************************************************/
258
/*               USART1 receiver ISR                            */
259
/****************************************************************/
260
void UART1_IRQHandler(void)
261
{
262
        static u8 abortState = 0;
263
        u8 c;
264
 
265
        if((UART_GetITStatus(UART1, UART_IT_Receive) != RESET) || (UART_GetITStatus(UART1, UART_IT_ReceiveTimeOut) != RESET) )
266
        {
153 killagreg 267
                // clear the pending bits!
41 ingob 268
                UART_ClearITPendingBit(UART1, UART_IT_Receive);
269
                UART_ClearITPendingBit(UART1, UART_IT_ReceiveTimeOut);
270
                // if debug UART is not UART1
271
                if (DebugUART != UART1)
272
                {       // forward received data to the debug UART tx buffer
273
                        while(UART_GetFlagStatus(UART1, UART_FLAG_RxFIFOEmpty) != SET)
274
                        {
275
                                // move the byte from the rx buffer of UART1 to the tx buffer of DebugUART
276
                                c = UART_ReceiveData(UART1);
277
 
278
                                // check for abort condition (ESC ESC 0x55 0xAA 0x00)
279
                                switch (abortState)
280
                                {
139 killagreg 281
                                        case 0:
282
                                                if (c == 27) abortState++;
41 ingob 283
                                                break;
139 killagreg 284
                                        case 1:
285
                                                if (c == 27) abortState++;
286
                                                else abortState = 0;
41 ingob 287
                                        break;
139 killagreg 288
                                        case 2:
289
                                                if (c == 0x55) abortState++;
290
                                                else abortState = 0;
41 ingob 291
                                                break;
139 killagreg 292
                                        case 3:
293
                                                if (c == 0xAA) abortState++;
294
                                                else abortState = 0;
41 ingob 295
                                                break;
139 killagreg 296
                                        case 4:
297
                                                if (c == 0x00)
298
                                                {
299
                                                        if(DebugUART == UART0)
300
                                                        {
301
                                                                UART0_Connect_to_MKGPS();
144 killagreg 302
                                                                TIMER2_Init();                          // enbable servo outputs
153 killagreg 303
                                                                fifo_purge(&UART1_rx_fifo); // flush the whole fifo init buffer
139 killagreg 304
                                                        }
305
                                                        DebugUART = UART1;
306
                                                }                      
307
                                                abortState = 0;
308
                                                break;
309
                                } // end switch abort state
136 killagreg 310
                                // if the Debug uart is not UART1, redirect input to the Debug UART
110 killagreg 311
                                if (DebugUART != UART1)
312
                                {
313
                                        // wait for space in the tx buffer of the DebugUART
314
                                        while(UART_GetFlagStatus(DebugUART, UART_FLAG_TxFIFOFull) == SET) {};
141 killagreg 315
                                        // move byte to the tx fifo of the debug uart
110 killagreg 316
                                        UART_SendData(DebugUART, c);
317
                                }
41 ingob 318
                        }
319
                }
320
                else  // DebugUART == UART1 (normal operation)
321
                {
110 killagreg 322
                        while(UART_GetFlagStatus(UART1, UART_FLAG_RxFIFOEmpty) != SET)
41 ingob 323
                        { // some byes in the fifo and rxd buffer not locked
153 killagreg 324
                            // get byte from hardware fifo
41 ingob 325
                        c = UART_ReceiveData(UART1);
153 killagreg 326
                                // put into the software fifo
327
                                if(!fifo_put(&UART1_rx_fifo, c))
328
                                {       // fifo overflow
329
                                        fifo_purge(&UART1_rx_fifo); // flush the whole buffer
330
                                }
41 ingob 331
                        } // some byes in the fifo and rxd buffer not locked
332
                } // eof DebugUart = UART1
333
        }
334
}
335
 
336
/**************************************************************/
337
/* Process incomming data from debug uart                     */
338
/**************************************************************/
339
void UART1_ProcessRxData(void)
340
{
153 killagreg 341
        u8 c;
342
 
343
        // return on forwarding uart
344
        if(DebugUART != UART1) return;
345
 
346
        // collect data from primary rx fifo
347
        while(fifo_get(&UART1_rx_fifo, &c))
348
        {       // break if complete frame is collected
349
                if(MKProtocol_CollectSerialFrame(&UART1_rx_buffer, c)) break;
350
        }
41 ingob 351
        // if data in the rxd buffer are not locked immediately return
153 killagreg 352
        if(UART1_rx_buffer.Locked == FALSE) return;
353
 
41 ingob 354
        Waypoint_t * pWaypoint = NULL;
153 killagreg 355
        SerialMsg_t SerialMsg;
41 ingob 356
 
110 killagreg 357
        MKProtocol_DecodeSerialFrame(&UART1_rx_buffer, &SerialMsg); // decode serial frame in rxd buffer
153 killagreg 358
    if(*(SerialMsg.pCmdID) != 'z') SerialLinkOkay = 250;          // reset SerialTimeout, but not in case of the "ping"
359
        switch(*(SerialMsg.pAddress)) // check for Slave Address
41 ingob 360
        {
361
                case NC_ADDRESS:  // own Slave Address
153 killagreg 362
                switch(*(SerialMsg.pCmdID))
41 ingob 363
                {
101 holgerb 364
                        case 'z': // connection checker
110 killagreg 365
                                memcpy(&Echo, SerialMsg.pData, sizeof(Echo)); // copy echo pattern
366
                                UART1_Request_Echo = TRUE;
92 killagreg 367
                                break;
368
 
41 ingob 369
                        case 'e': // request for the text of the error status
110 killagreg 370
                                UART1_Request_ErrorMessage = TRUE;
41 ingob 371
                                break;
372
 
373
                        case 's'://  new target position
110 killagreg 374
                                pWaypoint = (Waypoint_t*)SerialMsg.pData;
41 ingob 375
                                BeepTime = 300;
376
                                if(pWaypoint->Position.Status == NEWDATA)
377
                                {
378
                                        WPList_Clear(); // empty WPList
379
                                        WPList_Append(pWaypoint);
380
                                        GPS_pWaypoint = WPList_Begin();
381
                                }
382
                                break;
383
 
384
                        case 'u': // redirect debug uart
110 killagreg 385
                                switch(SerialMsg.pData[0])
41 ingob 386
                                {
387
                                        case UART_FLIGHTCTRL:
388
                                                UART2_Init();                           // initialize UART2 to FC pins
153 killagreg 389
                                                fifo_purge(&UART1_rx_fifo);
41 ingob 390
                                                DebugUART = UART2;
391
                                                break;
392
                                        case UART_MK3MAG:
393
                                                if(FC.MKFlags & MKFLAG_MOTOR_RUN) break; // not if the motors are running
394
                                                UART0_Connect_to_MK3MAG();      // mux UART0 to MK3MAG pins
395
                                                GPSData.Status = INVALID;
153 killagreg 396
                                                fifo_purge(&UART1_rx_fifo);
41 ingob 397
                                                DebugUART = UART0;
398
                                                break;
399
                                        case UART_MKGPS:
400
                                                if(FC.MKFlags & MKFLAG_MOTOR_RUN) break; // not if the motors are running
139 killagreg 401
                                                TIMER2_Deinit();
41 ingob 402
                                                UART0_Connect_to_MKGPS();       // connect UART0 to MKGPS pins
403
                                                GPSData.Status = INVALID;
153 killagreg 404
                                                fifo_purge(&UART1_rx_fifo);
41 ingob 405
                                                DebugUART = UART0;
406
                                                break;
153 killagreg 407
                                        default:
408
                                                break;
41 ingob 409
                                }
410
                                break;
411
 
92 killagreg 412
                        case 'w'://  Append Waypoint to List
110 killagreg 413
                                pWaypoint = (Waypoint_t*)SerialMsg.pData;
41 ingob 414
                                if(pWaypoint->Position.Status == INVALID)
415
                                {  // clear WP List
416
                                        WPList_Clear();
417
                                        GPS_pWaypoint = WPList_Begin();
110 killagreg 418
                                        //UART1_PutString("\r\nClear WP List\r\n");
41 ingob 419
                                }
420
                                else if (pWaypoint->Position.Status == NEWDATA)
421
                                {  // app current WP to the list
422
                                        WPList_Append(pWaypoint);
423
                                        BeepTime = 500;
110 killagreg 424
                                        //UART1_PutString("\r\nAdd WP to List\r\n");
41 ingob 425
                                }
110 killagreg 426
                                UART1_Request_NewWaypoint = TRUE;
41 ingob 427
                                break;
428
 
92 killagreg 429
                        case 'x'://  Read Waypoint from List
110 killagreg 430
                                UART1_Request_ReadWaypoint = SerialMsg.pData[0];
92 killagreg 431
                                break;
432
 
41 ingob 433
                        default:
434
                                // unsupported command recieved
435
                                break;
436
                } // case NC_ADDRESS
65 killagreg 437
                // "break;" is missing here to fall thru to the common commands
41 ingob 438
 
439
                default:  // and any other Slave Address
440
 
153 killagreg 441
                switch(*(SerialMsg.pCmdID)) // check CmdID
41 ingob 442
                {
443
                        case 'a':// request for the labels of the analog debug outputs
110 killagreg 444
                                UART1_Request_DebugLabel = SerialMsg.pData[0];
445
                                if(UART1_Request_DebugLabel > 31) UART1_Request_DebugLabel = 31;
41 ingob 446
                                break;
447
 
448
                        case 'b': // submit extern control
121 killagreg 449
                                memcpy(&ExternControl, SerialMsg.pData, sizeof(ExternControl));
112 killagreg 450
                                UART1_ConfirmFrame = ExternControl.Frame;
41 ingob 451
                                break;
452
 
453
                        case 'd': // request for debug data;
110 killagreg 454
                                UART1_DebugData_Interval = (u32) SerialMsg.pData[0] * 10;
455
                                if(UART1_DebugData_Interval > 0) UART1_Request_DebugData = TRUE;
41 ingob 456
                                break;
457
 
63 killagreg 458
                        case 'c': // request for 3D data;
110 killagreg 459
                                UART1_Data3D_Interval = (u32) SerialMsg.pData[0] * 10;
460
                                if(UART1_Data3D_Interval > 0) UART1_Request_Data3D = TRUE;
63 killagreg 461
                                break;
462
 
41 ingob 463
                        case 'g':// request for external control data
110 killagreg 464
                                UART1_Request_ExternalControl = TRUE;
41 ingob 465
                                break;
466
 
467
                        case 'h':// reqest for display line
110 killagreg 468
                                RemoteKeys |= SerialMsg.pData[0];
112 killagreg 469
                                if(RemoteKeys != 0) UART1_DisplayLine = 0;
110 killagreg 470
                                UART1_Request_Display = TRUE;
41 ingob 471
                                break;
472
 
473
                        case 'l':// reqest for display columns
110 killagreg 474
                                MenuItem = SerialMsg.pData[0];
475
                                UART1_Request_Display1 = TRUE;
41 ingob 476
                                break;
64 holgerb 477
 
478
                        case 'o': // request for navigation information
110 killagreg 479
                                UART1_NaviData_Interval = (u32) SerialMsg.pData[0] * 10;
480
                                if(UART1_NaviData_Interval > 0) UART1_Request_NaviData = TRUE;
64 holgerb 481
                                break;
482
 
41 ingob 483
                        case 'v': // request for version info
110 killagreg 484
                                UART1_Request_VersionInfo = TRUE;
41 ingob 485
                                break;
486
                        default:
487
                                // unsupported command recieved
488
                                break;
489
                }
490
                break; // default:
491
        }
153 killagreg 492
        Buffer_Clear(&UART1_rx_buffer); // free rc buffer for next frame
41 ingob 493
}
494
 
495
 
496
/*****************************************************/
497
/*                   Send a character                */
498
/*****************************************************/
110 killagreg 499
s16 UART1_Putchar(char c)
41 ingob 500
{
110 killagreg 501
        if (c == '\n') UART1_Putchar('\r');
41 ingob 502
        // wait until txd fifo is not full
503
        while (UART_GetFlagStatus(UART1, UART_FLAG_TxFIFOFull) != RESET);
504
        // transmit byte
505
        UART_SendData(UART1, c);
506
        return (0);
507
}
508
 
509
/*****************************************************/
510
/*       Send a string to the debug uart              */
511
/*****************************************************/
110 killagreg 512
void UART1_PutString(u8 *s)
41 ingob 513
{
514
        if(s == NULL) return;
515
        while (*s != '\0' && DebugUART == UART1)
516
        {
110 killagreg 517
                UART1_Putchar(*s);
41 ingob 518
                s ++;
519
        }
520
}
521
 
113 killagreg 522
 
110 killagreg 523
/**************************************************************/
524
/*         Transmit tx buffer via debug uart                  */
525
/**************************************************************/
526
void UART1_Transmit(void)
527
{
528
        u8 tmp_tx;
529
        if(DebugUART != UART1) return;
530
        // if something has to be send and the txd fifo is not full
113 killagreg 531
        if(UART1_tx_buffer.Locked == TRUE)
110 killagreg 532
        {
113 killagreg 533
                // while there is some space in the tx fifo
534
                while(UART_GetFlagStatus(UART1, UART_FLAG_TxFIFOFull) != SET)
110 killagreg 535
                {
113 killagreg 536
                        tmp_tx = UART1_tx_buffer.pData[UART1_tx_buffer.Position++]; // read next byte from txd buffer
537
                        UART_SendData(UART1, tmp_tx); // put character to txd fifo
538
                        // if terminating character or end of txd buffer reached
539
                        if((tmp_tx == '\r') || (UART1_tx_buffer.Position == UART1_tx_buffer.DataBytes))
540
                        {
541
                                Buffer_Clear(&UART1_tx_buffer); // clear txd buffer
542
                                break; // end while loop
543
                        }
110 killagreg 544
                }
545
        }
546
}
41 ingob 547
 
548
/**************************************************************/
549
/* Send the answers to incomming commands at the debug uart   */
550
/**************************************************************/
551
void UART1_TransmitTxData(void)
552
{
110 killagreg 553
        if(DebugUART != UART1) return;
554
        UART1_Transmit(); // output pending bytes in tx buffer
555
        if((UART1_tx_buffer.Locked == TRUE)) return;
41 ingob 556
 
110 killagreg 557
        if(UART1_Request_Echo && (UART1_tx_buffer.Locked == FALSE))
92 killagreg 558
        {
110 killagreg 559
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'Z', NC_ADDRESS, 1, &Echo, sizeof(Echo)); // answer the echo request
92 killagreg 560
                Echo = 0; // reset echo value
110 killagreg 561
                UART1_Request_Echo = FALSE;
92 killagreg 562
        }
151 killagreg 563
        else if(( ((UART1_NaviData_Interval > 0) && CheckDelay(UART1_NaviData_Timer) ) || UART1_Request_NaviData) && (UART1_tx_buffer.Locked == FALSE))
41 ingob 564
        {
151 killagreg 565
                NaviData.Errorcode = ErrorCode;
566
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'O', NC_ADDRESS,1, (u8 *)&NaviData, sizeof(NaviData));
567
                UART1_NaviData_Timer = SetDelay(UART1_NaviData_Interval);
568
                UART1_Request_NaviData = FALSE;
569
        }
570
        else if( (( (UART1_DebugData_Interval > 0) && CheckDelay(UART1_DebugData_Timer)) || UART1_Request_DebugData) && (UART1_tx_buffer.Locked == FALSE))
571
        {
110 killagreg 572
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'D', NC_ADDRESS, 1,(u8 *)&DebugOut, sizeof(DebugOut));
573
                UART1_DebugData_Timer = SetDelay(UART1_DebugData_Interval);
574
                UART1_Request_DebugData = FALSE;
41 ingob 575
        }
151 killagreg 576
        else if((( (UART1_Data3D_Interval > 0) && CheckDelay(UART1_Data3D_Timer) ) || UART1_Request_Data3D) && (UART1_tx_buffer.Locked == FALSE))
61 holgerb 577
        {
110 killagreg 578
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'C', NC_ADDRESS, 1,(u8 *)&Data3D, sizeof(Data3D));
579
                UART1_Data3D_Timer = SetDelay(UART1_Data3D_Interval);
580
                UART1_Request_Data3D = FALSE;
61 holgerb 581
        }
153 killagreg 582
        else if((UART1_Request_DebugLabel != 0xFF) && (UART1_tx_buffer.Locked == FALSE))
583
        {
584
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'A', NC_ADDRESS, 2, &UART1_Request_DebugLabel, sizeof(UART1_Request_DebugLabel), (u8 *) ANALOG_LABEL[UART1_Request_DebugLabel], 16);
585
                UART1_Request_DebugLabel = 0xFF;
586
        }
587
        else if(UART1_ConfirmFrame && (UART1_tx_buffer.Locked == FALSE))
588
        {
589
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'B', NC_ADDRESS, 1, &UART1_ConfirmFrame, sizeof(UART1_ConfirmFrame));
590
                UART1_ConfirmFrame = 0;
591
        }
151 killagreg 592
        else if(UART1_Request_ExternalControl && (UART1_tx_buffer.Locked == FALSE))
41 ingob 593
        {
110 killagreg 594
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'G', NC_ADDRESS, 1, (u8 *)&ExternControl, sizeof(ExternControl));
595
                UART1_Request_ExternalControl = FALSE;
41 ingob 596
        }
151 killagreg 597
        else if(UART1_Request_Display && (UART1_tx_buffer.Locked == FALSE))
41 ingob 598
        {
599
                LCD_PrintMenu();
112 killagreg 600
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'H', NC_ADDRESS, 2, &UART1_DisplayLine, sizeof(UART1_DisplayLine), (u8*)&DisplayBuff[UART1_DisplayLine * 20], 20);
601
                UART1_DisplayLine++;
602
                if(UART1_DisplayLine >= 4) UART1_DisplayLine = 0;
110 killagreg 603
                UART1_Request_Display = FALSE;
41 ingob 604
        }
151 killagreg 605
        else if(UART1_Request_Display1 && (UART1_tx_buffer.Locked == FALSE))
41 ingob 606
        {
607
                LCD_PrintMenu();
110 killagreg 608
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'L', NC_ADDRESS, 3, (u8*)&MenuItem, sizeof(MenuItem), (u8*)&MaxMenuItem, sizeof(MaxMenuItem),(u8*)DisplayBuff, sizeof(DisplayBuff));
609
                UART1_Request_Display1 = FALSE;
41 ingob 610
        }
151 killagreg 611
        else if(UART1_Request_VersionInfo && (UART1_tx_buffer.Locked == FALSE))
41 ingob 612
        {
110 killagreg 613
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'V', NC_ADDRESS,1, (u8 *)&UART_VersionInfo, sizeof(UART_VersionInfo));
614
                UART1_Request_VersionInfo = FALSE;
41 ingob 615
        }
151 killagreg 616
        else if(UART1_Request_ErrorMessage && (UART1_tx_buffer.Locked == FALSE))
41 ingob 617
        {
110 killagreg 618
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'E', NC_ADDRESS, 1, (u8 *)&ErrorMSG, sizeof(ErrorMSG));
619
                UART1_Request_ErrorMessage = FALSE;
41 ingob 620
        }
151 killagreg 621
        else if(UART1_Request_SendFollowMe && (UART1_tx_buffer.Locked == FALSE) && (GPSData.NumOfSats >= 4))              // sending for "Follow me"
41 ingob 622
        {
623
                GPS_CopyPosition(&(GPSData.Position),&(FollowMe.Position));
624
                FollowMe.Position.Status = NEWDATA;
625
                FollowMe.Heading = -1;
626
                FollowMe.ToleranceRadius = 1;
627
                FollowMe.HoldTime = 60;
628
                FollowMe.Event_Flag = 0;
629
                FollowMe.reserve[0] = 0;                // reserve
630
                FollowMe.reserve[1] = 0;                // reserve
631
                FollowMe.reserve[2] = 0;                // reserve
632
                FollowMe.reserve[3] = 0;                // reserve
110 killagreg 633
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 's', NC_ADDRESS, 1, (u8 *)&FollowMe, sizeof(FollowMe));
634
                UART1_Request_SendFollowMe = FALSE;
41 ingob 635
        }
151 killagreg 636
        else if(UART1_Request_NewWaypoint && (UART1_tx_buffer.Locked == FALSE))
41 ingob 637
        {
638
                u8 WPNumber = WPList_GetCount();
110 killagreg 639
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'W', NC_ADDRESS, 1, &WPNumber, sizeof(WPNumber));
640
                UART1_Request_NewWaypoint = FALSE;
41 ingob 641
        }
151 killagreg 642
        else if((UART1_Request_ReadWaypoint != 0xFF) && (UART1_tx_buffer.Locked == FALSE))
92 killagreg 643
        {
644
                u8 WPNumber = WPList_GetCount();
110 killagreg 645
                if (UART1_Request_ReadWaypoint < WPNumber)
92 killagreg 646
                {
110 killagreg 647
                        MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'X', NC_ADDRESS, 3, &WPNumber, 1, &UART1_Request_ReadWaypoint, 1, WPList_GetAt(UART1_Request_ReadWaypoint), sizeof(Waypoint_t));
92 killagreg 648
                }
649
                else
650
                {
110 killagreg 651
                        MKProtocol_CreateSerialFrame(&UART1_tx_buffer,'X', NC_ADDRESS, 1, &WPNumber, sizeof(WPNumber));
92 killagreg 652
                }
110 killagreg 653
                UART1_Request_ReadWaypoint = 0xFF;
92 killagreg 654
        }
110 killagreg 655
        UART1_Transmit(); // output pending bytes in tx buffer
41 ingob 656
}
657