Subversion Repositories NaviCtrl

Rev

Rev 44 | 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
171 ingob 6
// + Nur für den privaten Gebrauch / NON-COMMERCIAL USE ONLY
41 ingob 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
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
171 ingob 28
// + Die Portierung oder Nutzung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
41 ingob 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
171 ingob 43
// +   * porting the sources to other systems or using the software on other systems (except hardware from www.mikrokopter.de) is not allowed
41 ingob 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"
62
#include "ramfunc.h"
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"
70
#include "timer.h"
71
#include "usb.h"
72
#include "main.h"
73
#include "waypoints.h"
74
#include "GPS.h"
75
 
76
// slave addresses
77
#define FC_ADDRESS 1
78
#define NC_ADDRESS 2
79
#define MK3MAG_ADDRESS 3
80
 
81
#define FALSE   0
82
#define TRUE    1
83
 
84
u8 Request_SendFollowMe         = FALSE;
85
u8 Request_VerInfo                      = FALSE;
86
u8 Request_ExternalControl      = FALSE;
87
u8 Request_Display                      = FALSE;
88
u8 Request_Display1             = FALSE;
89
u8 Request_DebugData            = FALSE;
90
u8 Request_DebugLabel           = 255;
91
u8 Request_ChannelOnly          = FALSE;
92
u8 Request_NaviData                     = FALSE;
93
u8 Request_ErrorMessage     = FALSE;
94
u8 Request_NewWaypoint          = FALSE;
95
 
96
u8 DisplayLine = 0;
97
 
98
UART_TypeDef *DebugUART = UART1;
99
 
100
volatile u8 txd_buffer[TXD_BUFFER_LEN];
101
volatile u8 rxd_buffer_locked = FALSE;
102
volatile u8 rxd_buffer[RXD_BUFFER_LEN];
103
volatile u8 txd_complete = TRUE;
104
volatile u8 ReceivedBytes = 0;
105
volatile u8 CntCrcError = 0;
106
volatile u8 *pRxData = NULL;
107
volatile u8  RxDataLen = 0;
108
 
109
u8 text[100];
110
 
111
u8 PcAccess = 100;
112
u8 MotorTest[4] = {0,0,0,0};
113
u8 ConfirmFrame = 0;
114
 
115
DebugOut_t DebugOut;
116
ExternControl_t ExternControl;
117
UART_VersionInfo_t UART_VersionInfo;
118
NaviData_t NaviData;
119
Waypoint_t FollowMe;
120
 
121
u32 DebugData_Timer;
122
u32 DebugData_Interval = 1000; // in 1ms
123
u32 NaviData_Timer;
124
u32 NaviData_Interval = 1000; // in 1ms
125
 
126
 
127
 
128
static u16 ptr_txd_buffer = 0;
129
 
130
const u8 ANALOG_LABEL[32][16] =
131
{
132
        //1234567890123456
133
        "AngleNick       ", //0
134
        "AngleRoll       ",
135
        "AccNick         ",
136
        "AccRoll         ",
137
        "                ",
138
        "                ", //5
139
        "                ",
140
        "                ",
141
        "                ",
142
        "                ",
143
        "                ", //10
144
        "GPS Data        ",
145
        "SPI Error       ",
146
        "SPI Okay        ",
147
        "I2C Error       ",
148
        "I2C Okay        ", //15
149
        "                ",//    "FC_Kalman_K     ",
150
        "ACC_Speed_N     ",
151
        "ACC_Speed_E     ",
152
        "                ",//    "GPS ACC         ",
153
        "                ",//    "MAXDrift        ", //20
154
        "N_Speed         ",
155
        "E_Speed         ",
156
        "                ",//    "KalmDist_N      ",
157
        "                ",//    "KalmDist_E      ",
158
        "GyroHeading     ",//25
159
        "CompassHeading  ",
160
        "Distance N      ",
161
        "Distance E      ",
162
        "GPS_Nick        ",
163
        "GPS_Roll        ", //30
164
        "Used_Sats       "
165
};
166
 
167
 
168
/********************************************************/
169
/*            Initialization the UART1                  */
170
/********************************************************/
171
void UART1_Init (void)
172
{
173
        GPIO_InitTypeDef GPIO_InitStructure;
174
        UART_InitTypeDef UART_InitStructure;
175
 
176
        SCU_APBPeriphClockConfig(__UART1, ENABLE);  // Enable the UART1 Clock
177
        SCU_APBPeriphClockConfig(__GPIO3, ENABLE);  // Enable the GPIO3 Clock
178
 
179
        /*Configure UART1_Rx pin GPIO3.2*/
180
        GPIO_StructInit(&GPIO_InitStructure);
181
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
182
        GPIO_InitStructure.GPIO_Pin =                   GPIO_Pin_2;
183
        GPIO_InitStructure.GPIO_Type =                  GPIO_Type_PushPull;
184
        GPIO_InitStructure.GPIO_IPConnected =   GPIO_IPConnected_Enable;
185
        GPIO_InitStructure.GPIO_Alternate =     GPIO_InputAlt1; // UART1_RxD
186
        GPIO_Init(GPIO3, &GPIO_InitStructure);
187
 
188
        /*Configure UART1_Tx pin GPIO3.3*/
189
        GPIO_StructInit(&GPIO_InitStructure);
190
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinOutput;
191
        GPIO_InitStructure.GPIO_Pin =                   GPIO_Pin_3;
192
        GPIO_InitStructure.GPIO_Type =                  GPIO_Type_PushPull;
193
        GPIO_InitStructure.GPIO_Alternate =     GPIO_OutputAlt2; // UART1_TX
194
        GPIO_Init(GPIO3, &GPIO_InitStructure);
195
 
196
        /* UART1 configured as follow:
197
        - Word Length = 8 Bits
198
        - One Stop Bit
199
        - No parity
200
        - BaudRate = 57600 baud
201
        - Hardware flow control Disabled
202
        - Receive and transmit enabled
203
        - Receive and transmit FIFOs are Disabled
204
        */
205
        UART_StructInit(&UART_InitStructure);
206
        UART_InitStructure.UART_WordLength =                    UART_WordLength_8D;
207
        UART_InitStructure.UART_StopBits =                              UART_StopBits_1;
208
        UART_InitStructure.UART_Parity =                                UART_Parity_No ;
209
        UART_InitStructure.UART_BaudRate =                              BAUD_RATE;
210
        UART_InitStructure. UART_HardwareFlowControl =  UART_HardwareFlowControl_None;
211
        UART_InitStructure.UART_Mode =                                  UART_Mode_Tx_Rx;
212
        UART_InitStructure.UART_FIFO =                                  UART_FIFO_Enable;
213
        UART_InitStructure.UART_TxFIFOLevel =                   UART_FIFOLevel_1_2;
214
        UART_InitStructure.UART_RxFIFOLevel =                   UART_FIFOLevel_1_2;
215
 
216
        UART_DeInit(UART1); // reset uart 1     to default
217
        UART_Init(UART1, &UART_InitStructure); // initialize uart 1
218
        // enable uart 1 interrupts selective
219
        UART_ITConfig(UART1, UART_IT_Receive | UART_IT_ReceiveTimeOut, ENABLE);
220
        UART_Cmd(UART1, ENABLE); // enable uart 1
221
        // configure the uart 1 interupt line as an IRQ with priority 4 (0 is highest)
222
        VIC_Config(UART1_ITLine, VIC_IRQ, 4);
223
        // enable the uart 1 IRQ
224
        VIC_ITCmd(UART1_ITLine, ENABLE);
225
        // initialize the debug timer
226
        DebugData_Timer = SetDelay(DebugData_Interval);
227
        NaviData_Timer = SetDelay(NaviData_Interval+500);
228
        // unlock rxd_buffer
229
        rxd_buffer_locked = FALSE;
230
        pRxData = NULL;
231
        RxDataLen = 0;
232
        // no bytes to send
233
        txd_complete = TRUE;
234
        // Fill Version Info Structure
235
        UART_VersionInfo.SWMajor = VERSION_MAJOR;
236
        UART_VersionInfo.SWMinor = VERSION_MINOR;
237
        UART_VersionInfo.SWPatch = VERSION_PATCH;
238
        UART_VersionInfo.ProtoMajor = VERSION_SERIAL_MAJOR;
239
        UART_VersionInfo.ProtoMinor = VERSION_SERIAL_MINOR;
240
 
241
        SerialPutString("\r\nUART1 init...ok");
242
}
243
 
244
 
245
/****************************************************************/
246
/*               USART1 receiver ISR                            */
247
/****************************************************************/
248
void UART1_IRQHandler(void)
249
{
250
        static u16 crc;
251
        static u8 ptr_rxd_buffer = 0;
252
        static u8 crc1, crc2;
253
        static u8 abortState = 0;
254
        u8 c;
255
 
256
        if((UART_GetITStatus(UART1, UART_IT_Receive) != RESET) || (UART_GetITStatus(UART1, UART_IT_ReceiveTimeOut) != RESET) )
257
        {
258
                // clear the pending bits
259
                UART_ClearITPendingBit(UART1, UART_IT_Receive);
260
                UART_ClearITPendingBit(UART1, UART_IT_ReceiveTimeOut);
261
                // if debug UART is not UART1
262
                if (DebugUART != UART1)
263
                {       // forward received data to the debug UART tx buffer
264
                        while(UART_GetFlagStatus(UART1, UART_FLAG_RxFIFOEmpty) != SET)
265
                        {
266
                                // wait for space in the tx buffer of the DebugUART
267
                                while(UART_GetFlagStatus(DebugUART, UART_FLAG_TxFIFOFull) == SET) {};
268
                                // move the byte from the rx buffer of UART1 to the tx buffer of DebugUART
269
                                c = UART_ReceiveData(UART1);
270
 
271
                                // check for abort condition (ESC ESC 0x55 0xAA 0x00)
272
                                switch (abortState)
273
                                {
274
                                  case 0: if (c == 27) abortState++;
275
                                                break;
276
                                  case 1: if (c == 27) abortState++; else abortState = 0;
277
                                        break;
278
                                  case 2: if (c == 0x55) abortState++; else abortState = 0;
279
                                                break;
280
                                  case 3: if (c == 0xAA) abortState++; else abortState = 0;
281
                                                break;
282
                                  case 4: if (c == 0x00)
283
                                           {
284
                                                    DebugUART = UART1;
285
                                                        UART0_Connect_to_MKGPS();
286
                                                   }
287
                                          abortState = 0;
288
                                                break;
289
                                }
290
 
291
                                if (DebugUART != UART1) UART_SendData(DebugUART, c);
292
                        }
293
                }
294
                else  // DebugUART == UART1 (normal operation)
295
                {
296
                        while ((UART_GetFlagStatus(UART1, UART_FLAG_RxFIFOEmpty) != SET) && (!rxd_buffer_locked))
297
                        { // some byes in the fifo and rxd buffer not locked
298
                            // get byte from fifo
299
                        c = UART_ReceiveData(UART1);
300
                                if((ptr_rxd_buffer == 0) && (c == '#')) // if rxd buffer is empty and syncronisation character is received
301
                                {
302
                                        rxd_buffer[ptr_rxd_buffer++] = c; // copy 1st byte to buffer
303
                                        crc = c; // init crc
304
                                }
305
                                #if 0
306
                                else if (ptr_rxd_buffer == 1) // handle address
307
                                {
308
                                        rxd_buffer[ptr_rxd_buffer++] = c; // copy byte to rxd buffer
309
                                        crc += c; // update crc
310
                                }
311
                                #endif
312
                                else if (ptr_rxd_buffer < RXD_BUFFER_LEN) // rxd buffer not full
313
                                {
314
                                        if (c != '\r') // no termination character received
315
                                        {
316
                                                rxd_buffer[ptr_rxd_buffer++] = c; // copy byte to rxd buffer
317
                                                crc += c; // update crc
318
                                        }
319
                                        else // termination character received
320
                                        {
321
                                                // the last 2 bytes are no subject for checksum calculation
322
                                                // they are the checksum itself
323
                                                crc -= rxd_buffer[ptr_rxd_buffer-2];
324
                                                crc -= rxd_buffer[ptr_rxd_buffer-1];
325
                                                // calculate checksum from transmitted data
326
                                                crc %= 4096;
327
                                                crc1 = '=' + crc / 64;
328
                                                crc2 = '=' + crc % 64;
329
                                                // compare checksum to transmitted checksum bytes
330
                                                if((crc1 == rxd_buffer[ptr_rxd_buffer-2]) && (crc2 == rxd_buffer[ptr_rxd_buffer-1]))
331
                                                {   // checksum valid
332
                                                        rxd_buffer_locked = TRUE;               // lock the rxd buffer
333
                                                        ReceivedBytes = ptr_rxd_buffer + 1;     // store number of received bytes
334
                                                        rxd_buffer[ptr_rxd_buffer] = '\r';      // set termination character
335
                                                        // if 2nd byte is an 'R' start bootloader
336
                                                        if(rxd_buffer[2] == 'R')
337
                                                        {
338
                                                                PowerOff();
339
                                                                VIC_DeInit();
340
                                                                Execute_Bootloader(); // Reset-Commando - Bootloader starten
341
                                                        }
342
                                                } // eof checksum valid
343
                                                else
344
                                                {       // checksum invalid
345
                                                        rxd_buffer_locked = FALSE; // unlock rxd buffer
346
                                                }  // eof checksum invalid
347
                                                ptr_rxd_buffer = 0; // reset rxd buffer pointer
348
                                        } // eof termination character received
349
                                } // rxd buffer not full
350
                                else // rxd buffer overrun
351
                                {
352
                                        ptr_rxd_buffer = 0; // reset rxd buffer pointer
353
                                        rxd_buffer_locked = FALSE; // unlock rxd buffer
354
                                } // eof rxd buffer overrrun
355
                        } // some byes in the fifo and rxd buffer not locked
356
                } // eof DebugUart = UART1
357
        }
358
}
359
 
360
/**************************************************************/
361
/*         Transmit tx buffer via debug uart                  */
362
/**************************************************************/
363
void UART1_Transmit(void)
364
{
365
        u8 tmp_tx;
366
        // if something has to be send and the txd fifo is not full
367
        if((!txd_complete) && (UART_GetFlagStatus(UART1, UART_FLAG_TxFIFOFull) == RESET))
368
        {
369
                tmp_tx = txd_buffer[ptr_txd_buffer]; // read byte from txd buffer
370
                // if terminating character or end of txd buffer reached
371
                if((tmp_tx == '\r') || (ptr_txd_buffer == TXD_BUFFER_LEN))
372
                {
373
                        ptr_txd_buffer = 0;     // reset txd buffer pointer
374
                        txd_complete = TRUE;// set complete flag
375
                }
376
                UART_SendData(UART1, tmp_tx); // put character to txd fifo
377
                // set pointer to next byte
378
                ptr_txd_buffer++;
379
        }
380
}
381
 
382
/**************************************************************/
383
/* Add CRC and initiate transmission via debug uart           */
384
/**************************************************************/
385
void AddCRC(u16 datalen)
386
{
387
        u16 tmpCRC = 0, i;
388
        for(i = 0; i < datalen; i++)
389
        {
390
                tmpCRC += txd_buffer[i];
391
        }
392
        tmpCRC %= 4096;
393
        txd_buffer[i++] = '=' + tmpCRC / 64;
394
        txd_buffer[i++] = '=' + tmpCRC % 64;
395
        txd_buffer[i++] = '\r';
396
 
397
        ptr_txd_buffer = 0;
398
        txd_complete = FALSE;
399
        UART_SendData(UART1,txd_buffer[ptr_txd_buffer++]);      // send first byte, to be continued in the txd irq
400
}
401
 
402
 
403
 
404
/**************************************************************/
405
/* Code output data                                           */
406
/**************************************************************/
407
void SendOutData(u8 cmd, u8 Address, u8 numofbuffers , ...) //u8 *data, u8 len, ....
408
{
409
        va_list ap;
410
 
411
        u16 pt = 0;
412
        u8 a,b,c;
413
        u8 ptr = 0;
414
 
415
        u8* pdata = NULL;
416
        int len = 0;
417
 
418
        txd_buffer[pt++] = '#';                         // Start character
419
        txd_buffer[pt++] = 'a' + Address;       // Address (a=0; b=1,...)
420
        txd_buffer[pt++] = cmd;                         // Command
421
 
422
        va_start(ap, numofbuffers);
423
        if(numofbuffers)
424
        {
425
                pdata = va_arg(ap, u8*);
426
                len = va_arg(ap, int);
427
                ptr = 0;
428
                numofbuffers--;
429
        }
430
        while(len)
431
        {
432
                if(len)
433
                {
434
                        a = pdata[ptr++];
435
                        len--;
436
                        if((!len) && numofbuffers) // try to jump to next buffer
437
                        {
438
                                pdata = va_arg(ap, u8*);
439
                                len = va_arg(ap, int);
440
                                ptr = 0;
441
                                numofbuffers--;
442
                        }
443
                }
444
                else a = 0;
445
                if(len)
446
                {
447
                        b = pdata[ptr++];
448
                        len--;
449
                        if((!len) && numofbuffers) // try to jump to next buffer
450
                        {
451
                                pdata = va_arg(ap, u8*);
452
                                len = va_arg(ap, int);
453
                                ptr = 0;
454
                                numofbuffers--;
455
                        }
456
                }
457
                else b = 0;
458
                if(len)
459
                {
460
                        c = pdata[ptr++];
461
                        len--;
462
                        if((!len) && numofbuffers) // try to jump to next buffer
463
                        {
464
                                pdata = va_arg(ap, u8*);
465
                                len = va_arg(ap, int);
466
                                ptr = 0;
467
                                numofbuffers--;
468
                        }
469
                }
470
                else c = 0;
471
                txd_buffer[pt++] = '=' + (a >> 2);
472
                txd_buffer[pt++] = '=' + (((a & 0x03) << 4) | ((b & 0xf0) >> 4));
473
                txd_buffer[pt++] = '=' + (((b & 0x0f) << 2) | ((c & 0xc0) >> 6));
474
                txd_buffer[pt++] = '=' + ( c & 0x3f);
475
        }
476
        va_end(ap);
477
        AddCRC(pt);     // add checksum after data block and initates the transmission
478
}
479
 
480
 
481
/**************************************************************/
482
/* Decode data                                                */
483
/**************************************************************/
484
void Decode64(void)
485
{
486
        u8 a,b,c,d;
487
        u8 x,y,z;
488
        u8 ptrIn = 3; // start with first data byte in rx buffer
489
        u8 ptrOut = 3;
490
        u8 len = ReceivedBytes - 6;      // must be a multiple of 4 (3 bytes at begin and 3 bytes at end are no payload )
491
        while(len)
492
        {
493
                a = rxd_buffer[ptrIn++] - '=';
494
                b = rxd_buffer[ptrIn++] - '=';
495
                c = rxd_buffer[ptrIn++] - '=';
496
                d = rxd_buffer[ptrIn++] - '=';
497
                //if(ptrIn > ReceivedBytes - 3) break;
498
 
499
                x = (a << 2) | (b >> 4);
500
                y = ((b & 0x0f) << 4) | (c >> 2);
501
                z = ((c & 0x03) << 6) | d;
502
 
503
                if(len--) rxd_buffer[ptrOut++] = x; else break;
504
                if(len--) rxd_buffer[ptrOut++] = y; else break;
505
                if(len--) rxd_buffer[ptrOut++] = z; else break;
506
        }
507
        pRxData = &rxd_buffer[3];
508
        RxDataLen = ptrOut - 3;
509
}
510
 
511
/**************************************************************/
512
/* Process incomming data from debug uart                     */
513
/**************************************************************/
514
void UART1_ProcessRxData(void)
515
{
516
        // if data in the rxd buffer are not locked immediately return
517
        if((!rxd_buffer_locked) || (DebugUART != UART1) ) return;
518
        Waypoint_t * pWaypoint = NULL;
519
 
520
 
521
 
522
        PcAccess = 255;
523
        Decode64(); // decode data block in rxd buffer
524
        switch(rxd_buffer[1] - 'a') // check for Slave Address
525
        {
526
                case NC_ADDRESS:  // own Slave Address
527
 
528
                switch(rxd_buffer[2])
529
                {
530
                        case 'e': // request for the text of the error status
531
                                Request_ErrorMessage = TRUE;
532
                                break;
533
 
534
                        case 'o': // request for navigation information
535
                                NaviData_Interval = (u32) pRxData[0] * 10;
536
                                if(NaviData_Interval > 0) Request_NaviData = TRUE;
537
                                break;
538
 
539
                        case 's'://  new target position
540
                                pWaypoint = (Waypoint_t*)&pRxData[0];
541
                                BeepTime = 300;
542
                                if(pWaypoint->Position.Status == NEWDATA)
543
                                {
544
                                        WPList_Clear(); // empty WPList
545
                                        WPList_Append(pWaypoint);
546
                                        GPS_pWaypoint = WPList_Begin();
547
                                }
548
                                break;
549
 
550
                        case 'u': // redirect debug uart
551
                                switch(pRxData[0])
552
                                {
553
                                        case UART_FLIGHTCTRL:
554
                                                UART2_Init();                           // initialize UART2 to FC pins
555
                                                DebugUART = UART2;
556
                                                break;
557
                                        case UART_MK3MAG:
558
                                                if(FC.MKFlags & MKFLAG_MOTOR_RUN) break; // not if the motors are running
559
                                                UART0_Connect_to_MK3MAG();      // mux UART0 to MK3MAG pins
560
                                                GPSData.Status = INVALID;
561
                                                DebugUART = UART0;
562
                                                break;
563
                                        case UART_MKGPS:
564
                                                if(FC.MKFlags & MKFLAG_MOTOR_RUN) break; // not if the motors are running
565
                                                UART0_Connect_to_MKGPS();       // connect UART0 to MKGPS pins
566
                                                GPSData.Status = INVALID;
567
                                                DebugUART = UART0;
568
                                                break;
569
                                }
570
                                break;
571
 
572
                        case 'w'://  new PCPosition for GPSTargetList
573
                                pWaypoint = (Waypoint_t*)&pRxData[0];
574
                                if(pWaypoint->Position.Status == INVALID)
575
                                {  // clear WP List
576
                                        WPList_Clear();
577
                                        GPS_pWaypoint = WPList_Begin();
578
                                        //SerialPutString("\r\nClear WP List\r\n");
579
                                }
580
                                else if (pWaypoint->Position.Status == NEWDATA)
581
                                {  // app current WP to the list
582
                                        WPList_Append(pWaypoint);
583
                                        BeepTime = 500;
584
                                        //SerialPutString("\r\nAdd WP to List\r\n");
585
                                }
586
                                Request_NewWaypoint = TRUE;
587
                                break;
588
 
589
                        default:
590
                                // unsupported command recieved
591
                                break;
592
                } // case NC_ADDRESS
593
 
594
 
595
                default:  // and any other Slave Address
596
 
597
                switch(rxd_buffer[2]) // check CmdID
598
                {
599
                        case 'a':// request for the labels of the analog debug outputs
600
                                Request_DebugLabel = pRxData[0];
601
                                if(Request_DebugLabel > 31) Request_DebugLabel = 31;
602
                                break;
603
 
604
                        case 'b': // submit extern control
605
                                memcpy(&ExternControl, (u8*)&pRxData[0], sizeof(ExternControl));
606
                                ConfirmFrame = ExternControl.Frame;
607
                                break;
608
 
609
                        case 'd': // request for debug data;
610
                                DebugData_Interval = (u32) pRxData[0] * 10;
611
                                if(DebugData_Interval > 0) Request_DebugData = TRUE;
612
                                break;
613
 
614
                        case 'g':// request for external control data
615
                                Request_ExternalControl = TRUE;
616
                                break;
617
 
618
                        case 'h':// reqest for display line
619
                                RemoteKeys |= pRxData[0];
620
                                if(RemoteKeys != 0) DisplayLine = 0;
621
                                Request_Display = TRUE;
622
                                break;
623
 
624
                        case 'l':// reqest for display columns
625
                                MenuItem = pRxData[0];
626
                                Request_Display1 = TRUE;
627
                                break;
628
                        case 'v': // request for version info
629
                                Request_VerInfo = TRUE;
630
                                break;
631
                        default:
632
                                // unsupported command recieved
633
                                break;
634
                }
635
                break; // default:
636
        }
637
        // unlock the rxd buffer after processing
638
        pRxData = NULL;
639
        RxDataLen = 0;
640
        rxd_buffer_locked = FALSE;
641
}
642
 
643
 
644
/*****************************************************/
645
/*                   Send a character                */
646
/*****************************************************/
647
s16 uart_putchar (char c)
648
{
649
        if (c == '\n') uart_putchar('\r');
650
        // wait until txd fifo is not full
651
        while (UART_GetFlagStatus(UART1, UART_FLAG_TxFIFOFull) != RESET);
652
        // transmit byte
653
        UART_SendData(UART1, c);
654
        return (0);
655
}
656
 
657
/*****************************************************/
658
/*       Send a string to the debug uart              */
659
/*****************************************************/
660
void SerialPutString(u8 *s)
661
{
662
        if(s == NULL) return;
663
        while (*s != '\0' && DebugUART == UART1)
664
        {
665
                uart_putchar(*s);
666
                s ++;
667
        }
668
}
669
 
670
 
671
 
672
/**************************************************************/
673
/* Send the answers to incomming commands at the debug uart   */
674
/**************************************************************/
675
void UART1_TransmitTxData(void)
676
{
677
        if(!txd_complete || (DebugUART != UART1) ) return;
678
 
679
        if(Request_DebugLabel != 0xFF)
680
        {
681
                SendOutData('A', NC_ADDRESS, 2, &Request_DebugLabel, sizeof(Request_DebugLabel), (u8 *) ANALOG_LABEL[Request_DebugLabel], 16);
682
                Request_DebugLabel = 0xFF;
683
        }
684
        if(ConfirmFrame && txd_complete)
685
        {
686
                SendOutData('B', NC_ADDRESS, 1, &ConfirmFrame, sizeof(ConfirmFrame));
687
                ConfirmFrame = 0;
688
        }
689
        if( ((DebugData_Interval>0 && CheckDelay(DebugData_Timer)) || Request_DebugData) && txd_complete)
690
        {
691
                SendOutData('D', NC_ADDRESS, 1,(u8 *)&DebugOut, sizeof(DebugOut));
692
                DebugData_Timer = SetDelay(DebugData_Interval);
693
                Request_DebugData = FALSE;
694
        }
695
        if(Request_ExternalControl && txd_complete)
696
        {
697
                SendOutData('G', NC_ADDRESS, 1, (u8 *)&ExternControl, sizeof(ExternControl));
698
                Request_ExternalControl = FALSE;
699
        }
700
        if(Request_Display && txd_complete)
701
        {
702
                LCD_PrintMenu();
703
                SendOutData('H', NC_ADDRESS, 2, &DisplayLine, sizeof(DisplayLine), (u8*)&DisplayBuff[DisplayLine * 20], 20);
704
                DisplayLine++;
705
                if(DisplayLine >= 4) DisplayLine = 0;
706
                Request_Display = FALSE;
707
        }
708
        if(Request_Display1 && txd_complete)
709
        {
710
                LCD_PrintMenu();
711
                SendOutData('L', NC_ADDRESS, 3, (u8*)&MenuItem, sizeof(MenuItem), (u8*)&MaxMenuItem, sizeof(MaxMenuItem),(u8*)DisplayBuff, sizeof(DisplayBuff));
712
                Request_Display1 = FALSE;
713
        }
714
        if(Request_VerInfo && txd_complete)
715
        {
716
                SendOutData('V', NC_ADDRESS,1, (u8 *)&UART_VersionInfo, sizeof(UART_VersionInfo));
717
                Request_VerInfo = FALSE;
718
        }
719
        if(( (NaviData_Interval && CheckDelay(NaviData_Timer) ) || Request_NaviData) && txd_complete)
720
        {
721
                NaviData.Errorcode = ErrorCode;
722
                SendOutData('O', NC_ADDRESS,1, (u8 *)&NaviData, sizeof(NaviData));
723
                NaviData_Timer = SetDelay(NaviData_Interval);
724
                Request_NaviData = FALSE;
725
        }
726
        if(Request_ErrorMessage && txd_complete)
727
        {
728
                SendOutData('E', NC_ADDRESS, 1, (u8 *)&ErrorMSG, sizeof(ErrorMSG));
729
                Request_ErrorMessage = FALSE;
730
        }
731
        if(Request_SendFollowMe && txd_complete && (GPSData.NumOfSats >= 4))              // sending for "Follow me"
732
        {
733
                GPS_CopyPosition(&(GPSData.Position),&(FollowMe.Position));
734
                FollowMe.Position.Status = NEWDATA;
735
                FollowMe.Heading = -1;
736
                FollowMe.ToleranceRadius = 1;
737
                FollowMe.HoldTime = 60;
738
                FollowMe.Event_Flag = 0;
739
                FollowMe.reserve[0] = 0;                // reserve
740
                FollowMe.reserve[1] = 0;                // reserve
741
                FollowMe.reserve[2] = 0;                // reserve
742
                FollowMe.reserve[3] = 0;                // reserve
743
                SendOutData('s', NC_ADDRESS, 1, (u8 *)&FollowMe, sizeof(FollowMe));
744
                Request_SendFollowMe = FALSE;
745
        }
746
 
747
        if(Request_NewWaypoint && txd_complete)
748
        {
749
                u8 WPNumber = WPList_GetCount();
750
                SendOutData('W', NC_ADDRESS, 1, &WPNumber, sizeof(WPNumber));  
751
                Request_NewWaypoint = FALSE;
752
        }
753
 
754
}
755