Subversion Repositories NaviCtrl

Rev

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

Rev Author Line No. Line
1 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
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
112 killagreg 57
#include <string.h>
41 ingob 58
#include "91x_lib.h"
112 killagreg 59
#include "main.h"
41 ingob 60
#include "uart1.h"
61
#include "usb.h"
111 killagreg 62
#include "mkprotocol.h"
112 killagreg 63
#include "waypoints.h"
64
#include "gps.h"
65
#include "timer.h"
66
#include "uart0.h"
67
#include "uart1.h"
68
#include "uart2.h"
69
#include "menu.h"
111 killagreg 70
 
71
 
72
// the tx buffer
73
#define USB_TX_BUFFER_LEN  150
74
u8 USB_tbuffer[USB_TX_BUFFER_LEN];
75
Buffer_t USB_tx_buffer;
76
 
77
// the rx buffer
78
#define USB_RX_BUFFER_LEN  150
79
u8 USB_rbuffer[USB_RX_BUFFER_LEN];
80
Buffer_t USB_rx_buffer;
81
 
112 killagreg 82
u8 USB_Request_VersionInfo      = FALSE;
83
u8 USB_Request_SendFollowMe     = FALSE;
84
u8 USB_Request_ExternalControl= FALSE;
85
u8 USB_Request_Display          = FALSE;
86
u8 USB_Request_Display1         = FALSE;
87
u8 USB_Request_DebugData        = FALSE;
88
u8 USB_Request_DebugLabel       = 255;
89
u8 USB_Request_NaviData         = FALSE;
90
u8 USB_Request_ErrorMessage     = FALSE;
91
u8 USB_Request_NewWaypoint      = FALSE;
92
u8 USB_Request_ReadWaypoint     = 255;
93
u8 USB_Request_Data3D           = FALSE;
94
u8 USB_Request_Echo                 = FALSE;
111 killagreg 95
 
112 killagreg 96
u8 USB_DisplayLine = 0;
97
u8 USB_ConfirmFrame = 0;
98
 
99
u32 USB_DebugData_Timer = 0;
100
u32 USB_DebugData_Interval = 0; // in ms
101
u32 USB_NaviData_Timer = 0;
102
u32 USB_NaviData_Interval = 0;  // in ms
103
u32 USB_Data3D_Timer = 0;               // in ms
104
u32 USB_Data3D_Interval = 0;
105
 
1 ingob 106
//-----------------------------------------------------------------
107
void USB_ConfigInit(void)
108
{
41 ingob 109
        GPIO_InitTypeDef GPIO_InitStructure;
1 ingob 110
 
110 killagreg 111
        UART1_PutString("\r\n USB init...");
41 ingob 112
        #ifdef MCLK96MHZ
113
        //USB clock = MCLK/2 = 48MHz
114
        SCU_USBCLKConfig(SCU_USBCLK_MCLK2);
115
        #else
116
        //USB clock = MCLK = 48MHz
117
        SCU_USBCLKConfig(SCU_USBCLK_MCLK);
118
        #endif
119
        //Enable USB clock
120
        SCU_AHBPeriphClockConfig(__USB,ENABLE);
121
        SCU_AHBPeriphReset(__USB,DISABLE);
122
        SCU_AHBPeriphClockConfig(__USB48M,ENABLE);
1 ingob 123
 
41 ingob 124
        //Configure GPIO0 (D+ Pull-Up on P0.1)
125
        SCU_APBPeriphClockConfig(__GPIO0 ,ENABLE);
126
        SCU_APBPeriphReset(__GPIO0,DISABLE);
1 ingob 127
 
41 ingob 128
        // GPIO_DeInit(P0.1);
129
        GPIO_StructInit(&GPIO_InitStructure);
130
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
131
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
132
        GPIO_InitStructure.GPIO_Type = GPIO_Type_PushPull ;
133
        GPIO_InitStructure.GPIO_IPConnected=GPIO_IPConnected_Enable;
134
        GPIO_InitStructure.GPIO_Alternate=GPIO_OutputAlt1;
135
        GPIO_Init (GPIO0, &GPIO_InitStructure);
1 ingob 136
 
112 killagreg 137
        // initialize txd buffer
138
        Buffer_Init(&USB_tx_buffer, USB_tbuffer, USB_TX_BUFFER_LEN);
111 killagreg 139
 
140
        // initialize rxd buffer
112 killagreg 141
        Buffer_Init(&USB_rx_buffer, USB_rbuffer, USB_RX_BUFFER_LEN);
111 killagreg 142
 
41 ingob 143
        PowerOff();
144
        Virtual_Com_Port_Reset();
1 ingob 145
 
41 ingob 146
        VIC_Config(USBLP_ITLine, VIC_IRQ, 2);
147
        VIC_ITCmd(USBLP_ITLine, ENABLE);
1 ingob 148
 
41 ingob 149
        USB_Init();
1 ingob 150
 
110 killagreg 151
        UART1_PutString("ok");  
1 ingob 152
}
153
 
112 killagreg 154
 
155
/**************************************************************/
156
/* Process incomming data from debug uart                     */
157
/**************************************************************/
158
void USB_ProcessRxData(void)
159
{
160
        SerialMsg_t SerialMsg;
161
        // if data in the rxd buffer are not locked immediately return
162
        DebugOut.Analog[4] = USB_rx_buffer.Position;
163
        if((USB_rx_buffer.Locked == FALSE) || (DebugUART != UART1) ) return;
164
        Waypoint_t * pWaypoint = NULL;
165
 
166
        MKProtocol_DecodeSerialFrame(&USB_rx_buffer, &SerialMsg); // decode serial frame in rxd buffer
167
    if(SerialMsg.CmdID != 'z') SerialLinkOkay = 250;      // reset SerialTimeout, but not in case of the "ping"
168
        switch(SerialMsg.Address) // check for Slave Address
169
        {
170
                case NC_ADDRESS:  // own Slave Address
171
                switch(SerialMsg.CmdID)
172
                {
173
                        case 'e': // request for the text of the error status
174
                                USB_Request_ErrorMessage = TRUE;
175
                                break;
176
 
177
                        case 's'://  new target position
178
                                pWaypoint = (Waypoint_t*)SerialMsg.pData;
179
                                BeepTime = 300;
180
                                if(pWaypoint->Position.Status == NEWDATA)
181
                                {
182
                                        WPList_Clear(); // empty WPList
183
                                        WPList_Append(pWaypoint);
184
                                        GPS_pWaypoint = WPList_Begin();
185
                                }
186
                                break;
187
                   /*
188
                        case 'u': // redirect debug uart
189
                                switch(SerialMsg.pData[0])
190
                                {
191
                                        case UART_FLIGHTCTRL:
192
                                                UART2_Init();                           // initialize UART2 to FC pins
193
                                                DebugUART = UART2;
194
                                                break;
195
                                        case UART_MK3MAG:
196
                                                if(FC.MKFlags & MKFLAG_MOTOR_RUN) break; // not if the motors are running
197
                                                UART0_Connect_to_MK3MAG();      // mux UART0 to MK3MAG pins
198
                                                GPSData.Status = INVALID;
199
                                                DebugUART = UART0;
200
                                                break;
201
                                        case UART_MKGPS:
202
                                                if(FC.MKFlags & MKFLAG_MOTOR_RUN) break; // not if the motors are running
203
                                                UART0_Connect_to_MKGPS();       // connect UART0 to MKGPS pins
204
                                                GPSData.Status = INVALID;
205
                                                DebugUART = UART0;
206
                                                break;
207
                                }
208
                                break;
209
                         */
210
                        case 'w'://  Append Waypoint to List
211
                                pWaypoint = (Waypoint_t*)SerialMsg.pData;
212
                                if(pWaypoint->Position.Status == INVALID)
213
                                {  // clear WP List
214
                                        WPList_Clear();
215
                                        GPS_pWaypoint = WPList_Begin();
216
                                        //UART1_PutString("\r\nClear WP List\r\n");
217
                                }
218
                                else if (pWaypoint->Position.Status == NEWDATA)
219
                                {  // app current WP to the list
220
                                        WPList_Append(pWaypoint);
221
                                        BeepTime = 500;
222
                                        //UART1_PutString("\r\nAdd WP to List\r\n");
223
                                }
224
                                USB_Request_NewWaypoint = TRUE;
225
                                break;
226
 
227
                        case 'x'://  Read Waypoint from List
228
                                USB_Request_ReadWaypoint = SerialMsg.pData[0];
229
                                break;
230
 
231
                        default:
232
                                // unsupported command recieved
233
                                break;
234
                } // case NC_ADDRESS
235
                // "break;" is missing here to fall thru to the common commands
236
 
237
                default:  // and any other Slave Address
238
 
239
                switch(SerialMsg.CmdID) // check CmdID
240
                {
241
                        case 'a':// request for the labels of the analog debug outputs
242
                                USB_Request_DebugLabel = SerialMsg.pData[0];
243
                                if(USB_Request_DebugLabel > 31) USB_Request_DebugLabel = 31;
244
                                break;
245
 
246
                        case 'b': // submit extern control
247
                                memcpy(&ExternControl, SerialMsg.pData, sizeof(ExternControl));
248
                                USB_ConfirmFrame = ExternControl.Frame;
249
                                break;
250
 
251
                        case 'd': // request for debug data;
252
                                USB_DebugData_Interval = (u32) SerialMsg.pData[0] * 10;
253
                                if(USB_DebugData_Interval > 0) USB_Request_DebugData = TRUE;
254
                                break;
255
 
256
                        case 'c': // request for 3D data;
257
                                USB_Data3D_Interval = (u32) SerialMsg.pData[0] * 10;
258
                                if(USB_Data3D_Interval > 0) USB_Request_Data3D = TRUE;
259
                                break;
260
 
261
                        case 'g':// request for external control data
262
                                USB_Request_ExternalControl = TRUE;
263
                                break;
264
 
265
                        case 'h':// reqest for display line
266
                                RemoteKeys |= SerialMsg.pData[0];
267
                                if(RemoteKeys != 0) USB_DisplayLine = 0;
268
                                USB_Request_Display = TRUE;
269
                                break;
270
 
271
                        case 'l':// reqest for display columns
272
                                MenuItem = SerialMsg.pData[0];
273
                                USB_Request_Display1 = TRUE;
274
                                break;
275
 
276
                        case 'o': // request for navigation information
277
                                USB_NaviData_Interval = (u32) SerialMsg.pData[0] * 10;
278
                                if(USB_NaviData_Interval > 0) USB_Request_NaviData = TRUE;
279
                                break;
280
 
281
                        case 'v': // request for version info
282
                                USB_Request_VersionInfo = TRUE;
283
                                break;
284
                        default:
285
                                // unsupported command recieved
286
                                break;
287
                }
288
                break; // default:
289
        }
290
        Buffer_Clear(&USB_rx_buffer);
291
}
292
 
293
 
1 ingob 294
//-----------------------------------------------------------------
111 killagreg 295
void USB_CableConfig(FunctionalState NewState)
1 ingob 296
{
41 ingob 297
        if (NewState == ENABLE)
298
        GPIO_WriteBit(GPIO0, GPIO_Pin_1, Bit_RESET);
299
        else
300
        GPIO_WriteBit(GPIO0, GPIO_Pin_1, Bit_SET);
1 ingob 301
}
302
 
303
//-----------------------------------------------------------------
111 killagreg 304
void USB_PutString(u8 *string)
1 ingob 305
{
41 ingob 306
        u8 i = 0;
307
        u16 timeout = 0;
308
 
111 killagreg 309
        while (string[i++] != 0){} // get string len
41 ingob 310
        while (_GetEPTxStatus(ENDP1) != EP_TX_NAK){ if (timeout++ > 60000) return;}
111 killagreg 311
        UserToPMABufferCopy(string, ENDP1_TXADDR, ++i); // copy string to usb buffer
41 ingob 312
        SetEPTxCount(ENDP1,i);
313
        SetEPTxValid(ENDP1);
1 ingob 314
}
315
 
316
//-----------------------------------------------------------------
111 killagreg 317
void USB_PutChar(u8 c)
1 ingob 318
{
41 ingob 319
        u16 timeout = 0;
320
        while (_GetEPTxStatus(ENDP1) != EP_TX_NAK){ if (timeout++ > 60000) return;}
111 killagreg 321
        UserToPMABufferCopy(&c, ENDP1_TXADDR, 2);
41 ingob 322
        SetEPTxCount(ENDP1,2);
323
        SetEPTxValid(ENDP1);
324
}
325
 
1 ingob 326
//-----------------------------------------------------------------
111 killagreg 327
void USB_SendData(u8 *pdata, u16 count)
1 ingob 328
{
41 ingob 329
        u8 i;
330
        count++;
331
 
332
        for (i=0;i< (count/64)+1;i++)  
333
        {
334
                while (_GetEPTxStatus(ENDP1) != EP_TX_NAK);
335
                if (i < (count/64))
336
                {
111 killagreg 337
                        UserToPMABufferCopy(&pdata[i*64], ENDP1_TXADDR, 64);
41 ingob 338
                        SetEPTxCount(ENDP1,64);
339
                }
340
                else
341
                {
111 killagreg 342
                        UserToPMABufferCopy(&pdata[i*64], ENDP1_TXADDR, count % 64);
41 ingob 343
                        SetEPTxCount(ENDP1, count % 64);
344
                }
345
                SetEPTxValid(ENDP1);
1 ingob 346
        }
347
}
348
 
112 killagreg 349
/**************************************************************/
350
/*         Transmit tx buffer via usb                         */
351
/**************************************************************/
352
void USB_Transmit(void)
353
{   // nur blockweises kopieren des sendebuffers, nicht alles mit einem mal
354
        // if something has to be send and the txd fifo is not full
355
        if(USB_tx_buffer.Locked == TRUE)
356
        {
357
                if(_GetEPTxStatus(ENDP1) == EP_TX_NAK) // ready to send
358
                {
359
                        if(USB_tx_buffer.Position < USB_tx_buffer.DataBytes)
360
                        {
361
                                u16 i = USB_tx_buffer.DataBytes - USB_tx_buffer.Position; // bytes to send
362
                                if(i > 64) i = 64; // limit packet size to 64 bytes
363
                                UserToPMABufferCopy(&(USB_tx_buffer.pData[USB_tx_buffer.Position]), ENDP1_TXADDR, i);
364
                                SetEPTxCount(ENDP1,i); 
365
                        USB_tx_buffer.Position += i;
366
                        }
367
                }
368
                if(USB_tx_buffer.Position >= USB_tx_buffer.DataBytes) // all bytes transfered
369
                {
370
                        Buffer_Clear(&USB_tx_buffer); // clear buffer
371
                }
372
        }
373
}
374
 
375
/**************************************************************/
376
/* Send the answers to incomming commands at the debug uart   */
377
/**************************************************************/
378
void USB_TransmitTxData(void)
379
{
380
        USB_Transmit(); // output pending bytes in tx buffer
381
        if((USB_tx_buffer.Locked == TRUE)) return;
382
 
383
        if((USB_Request_DebugLabel != 0xFF) && (USB_tx_buffer.Locked == FALSE))
384
        {
385
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'A', NC_ADDRESS, 2, &USB_Request_DebugLabel, sizeof(USB_Request_DebugLabel), (u8 *) ANALOG_LABEL[USB_Request_DebugLabel], 16);
386
                USB_Request_DebugLabel = 0xFF;
387
        }
388
        if(USB_ConfirmFrame && (USB_tx_buffer.Locked == FALSE))
389
        {
390
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'B', NC_ADDRESS, 1, &USB_ConfirmFrame, sizeof(USB_ConfirmFrame));
391
                USB_ConfirmFrame = 0;
392
        }
393
        if( (( (USB_DebugData_Interval > 0) && CheckDelay(USB_DebugData_Timer)) || USB_Request_DebugData) && (USB_tx_buffer.Locked == FALSE))
394
        {
395
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'D', NC_ADDRESS, 1,(u8 *)&DebugOut, sizeof(DebugOut));
396
                USB_DebugData_Timer = SetDelay(USB_DebugData_Interval);
397
                USB_Request_DebugData = FALSE;
398
        }
399
 
400
        if((( (USB_Data3D_Interval > 0) && CheckDelay(USB_Data3D_Timer) ) || USB_Request_Data3D) && (USB_tx_buffer.Locked == FALSE))
401
        {
402
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'C', NC_ADDRESS, 1,(u8 *)&Data3D, sizeof(Data3D));
403
                USB_Data3D_Timer = SetDelay(USB_Data3D_Interval);
404
                USB_Request_Data3D = FALSE;
405
        }
406
 
407
        if(USB_Request_ExternalControl && (USB_tx_buffer.Locked == FALSE))
408
        {
409
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'G', NC_ADDRESS, 1, (u8 *)&ExternControl, sizeof(ExternControl));
410
                USB_Request_ExternalControl = FALSE;
411
        }
412
        if(USB_Request_Display && (USB_tx_buffer.Locked == FALSE))
413
        {
414
                LCD_PrintMenu();
415
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'H', NC_ADDRESS, 2, &USB_DisplayLine, sizeof(USB_DisplayLine), (u8*)&DisplayBuff[USB_DisplayLine * 20], 20);
416
                USB_DisplayLine++;
417
                if(USB_DisplayLine >= 4) USB_DisplayLine = 0;
418
                USB_Request_Display = FALSE;
419
        }
420
        if(USB_Request_Display1 && (USB_tx_buffer.Locked == FALSE))
421
        {
422
                LCD_PrintMenu();
423
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'L', NC_ADDRESS, 3, (u8*)&MenuItem, sizeof(MenuItem), (u8*)&MaxMenuItem, sizeof(MaxMenuItem),(u8*)DisplayBuff, sizeof(DisplayBuff));
424
                USB_Request_Display1 = FALSE;
425
        }
426
        if(USB_Request_VersionInfo && (USB_tx_buffer.Locked == FALSE))
427
        {
428
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'V', NC_ADDRESS,1, (u8 *)&UART_VersionInfo, sizeof(UART_VersionInfo));
429
                USB_Request_VersionInfo = FALSE;
430
        }
431
        if(( (USB_NaviData_Interval && CheckDelay(USB_NaviData_Timer) ) || USB_Request_NaviData) && (USB_tx_buffer.Locked == FALSE))
432
        {
433
                NaviData.Errorcode = ErrorCode;
434
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'O', NC_ADDRESS,1, (u8 *)&NaviData, sizeof(NaviData));
435
                USB_NaviData_Timer = SetDelay(USB_NaviData_Interval);
436
                USB_Request_NaviData = FALSE;
437
        }
438
        if(USB_Request_ErrorMessage && (USB_tx_buffer.Locked == FALSE))
439
        {
440
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'E', NC_ADDRESS, 1, (u8 *)&ErrorMSG, sizeof(ErrorMSG));
441
                USB_Request_ErrorMessage = FALSE;
442
        }
443
        if(USB_Request_NewWaypoint && (USB_tx_buffer.Locked == FALSE))
444
        {
445
                u8 WPNumber = WPList_GetCount();
446
                MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'W', NC_ADDRESS, 1, &WPNumber, sizeof(WPNumber));
447
                USB_Request_NewWaypoint = FALSE;
448
        }
449
        if((USB_Request_ReadWaypoint != 0xFF) && (USB_tx_buffer.Locked == FALSE))
450
        {
451
                u8 WPNumber = WPList_GetCount();
452
                if (USB_Request_ReadWaypoint < WPNumber)
453
                {
454
                        MKProtocol_CreateSerialFrame(&USB_tx_buffer, 'X', NC_ADDRESS, 3, &WPNumber, 1, &USB_Request_ReadWaypoint, 1, WPList_GetAt(USB_Request_ReadWaypoint), sizeof(Waypoint_t));
455
                }
456
                else
457
                {
458
                        MKProtocol_CreateSerialFrame(&USB_tx_buffer,'X', NC_ADDRESS, 1, &WPNumber, sizeof(WPNumber));
459
                }
460
                USB_Request_ReadWaypoint = 0xFF;
461
        }
462
        USB_Transmit(); // output pending bytes in tx buffer
463
}