Subversion Repositories NaviCtrl

Rev

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