Subversion Repositories NaviCtrl

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
110 killagreg 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 <string.h>
58
#include <stdarg.h>
59
#include "91x_lib.h"
60
#include "mkprotocol.h" 
61
#include "ramfunc.h"
62
#include "usb.h"
63
 
64
 
65
/**************************************************************/
66
/* Create serial output frame                                 */
67
/**************************************************************/
68
void MKProtocol_CreateSerialFrame(Buffer_t* pTxBuff, u8 CmdID, u8 Address, u8 numofbuffers , ...) //u8 *data, u8 len, ....
69
{
70
        va_list ap;
71
 
72
        u8 a,b,c;
73
        u8 ptr = 0;
74
        u16 tmpCRC = 0, i;
75
 
76
        u8* pdata = NULL;
77
        int len = 0;
78
 
79
        if(pTxBuff->Locked == FALSE)
80
        {       // tx-buffer is not in use
81
                pTxBuff->Position = 0;
82
                pTxBuff->pData[pTxBuff->Position++] = '#';                      // Start character
83
                pTxBuff->pData[pTxBuff->Position++] = 'a' + Address;    // Address (a=0; b=1,...)
84
                pTxBuff->pData[pTxBuff->Position++] = CmdID;                    // Command
85
 
86
                va_start(ap, numofbuffers);
87
                if(numofbuffers)
88
                {
89
                        pdata = va_arg(ap, u8*);
90
                        len = va_arg(ap, int);
91
                        ptr = 0;
92
                        numofbuffers--;
93
                }
94
                while(len)
95
                {
96
                        if(len)
97
                        {
98
                                a = pdata[ptr++];
99
                                len--;
100
                                if((!len) && numofbuffers) // try to jump to next buffer
101
                                {
102
                                        pdata = va_arg(ap, u8*);
103
                                        len = va_arg(ap, int);
104
                                        ptr = 0;
105
                                        numofbuffers--;
106
                                }
107
                        }
108
                        else a = 0;
109
                        if(len)
110
                        {
111
                                b = pdata[ptr++];
112
                                len--;
113
                                if((!len) && numofbuffers) // try to jump to next buffer
114
                                {
115
                                        pdata = va_arg(ap, u8*);
116
                                        len = va_arg(ap, int);
117
                                        ptr = 0;
118
                                        numofbuffers--;
119
                                }
120
                        }
121
                        else b = 0;
122
                        if(len)
123
                        {
124
                                c = pdata[ptr++];
125
                                len--;
126
                                if((!len) && numofbuffers) // try to jump to next buffer
127
                                {
128
                                        pdata = va_arg(ap, u8*);
129
                                        len = va_arg(ap, int);
130
                                        ptr = 0;
131
                                        numofbuffers--;
132
                                }
133
                        }
134
                        else c = 0;
135
                        pTxBuff->pData[pTxBuff->Position++] = '=' + (a >> 2);
136
                        pTxBuff->pData[pTxBuff->Position++] = '=' + (((a & 0x03) << 4) | ((b & 0xf0) >> 4));
137
                        pTxBuff->pData[pTxBuff->Position++] = '=' + (((b & 0x0f) << 2) | ((c & 0xc0) >> 6));
138
                        pTxBuff->pData[pTxBuff->Position++] = '=' + ( c & 0x3f);
139
                }
140
                va_end(ap);
141
                // add crc
142
                for(i = 0; i < pTxBuff->Position; i++)
143
                {
144
                        tmpCRC += pTxBuff->pData[i];
145
                }
146
                tmpCRC %= 4096;
147
                pTxBuff->pData[pTxBuff->Position++] = '=' + tmpCRC / 64;
148
                pTxBuff->pData[pTxBuff->Position++] = '=' + tmpCRC % 64;
149
                pTxBuff->pData[pTxBuff->Position++] = '\r';
150
                pTxBuff->Position = 0;  // reset buffer position for transmision
151
                pTxBuff->Locked = TRUE; // mark as used
152
        } // EOF buffer not in use
153
}
154
 
155
// typical called in an UART Rx ISR
156
/**************************************************************/
157
/* Collect serial frame                                       */
158
/**************************************************************/
159
void MKProtocol_CollectSerialFrame(Buffer_t* pRxBuff, u8 c)
160
{
161
        if(pRxBuff->Locked == FALSE)
162
        { // rx buffer not locked
163
                if((pRxBuff->Position == 0) && (c == '#')) // if rxd buffer is empty and syncronisation character is received
164
                        {
165
                                pRxBuff->pData[pRxBuff->Position++] = c; // copy 1st byte to buffer
166
                                //crc = c; // init crc
167
                        }
168
                        else if (pRxBuff->Position < pRxBuff->Size) // rx buffer not full
169
                        {
170
                                if (c != '\r') // no termination character received
171
                                {
172
                                        pRxBuff->pData[pRxBuff->Position++] = c; // copy byte to rxd buffer
173
                                        //crc += c; // update crc
174
                                }
175
                                else // termination character received
176
                                {
177
                                        // calculate checksum from transmitted data
178
                                        u16 crc = 0, i;
179
                                        u8 crc1, crc2;
180
                                        for(i = 0; i < (pRxBuff->Position-2); i++)
181
                                        {
182
                                                crc +=  pRxBuff->pData[i];  
183
                                        }              
184
                                        crc %= 4096;
185
                                        crc1 = '=' + crc / 64;
186
                                        crc2 = '=' + crc % 64;
187
                                        // compare checksum to transmitted checksum bytes
188
                                        if((crc1 == pRxBuff->pData[pRxBuff->Position-2]) && (crc2 == pRxBuff->pData[pRxBuff->Position-1]))
189
                                        {   // checksum is valid
190
                                                pRxBuff->Locked = TRUE;                                     // lock the rxd buffer
191
                                                pRxBuff->pData[pRxBuff->Position] = '\r';       // set termination character
192
                                                // if 2nd byte is an 'R' start bootloader
193
                                                if(pRxBuff->pData[2] == 'R')
194
                                                {
195
                                                        PowerOff();
196
                                                        VIC_DeInit();
197
                                                        Execute_Bootloader(); // Reset-Commando - Bootloader starten
198
                                                }
199
                                        } // eof checksum valid
200
                                        else
201
                                        {       // checksum is invalid
202
                                                pRxBuff->Position = 0;   // reset rxd buffer position
203
                                                pRxBuff->Locked = FALSE; // unlock rxd buffer
204
                                        }  // eof checksum invalid
205
                                } // eof termination character received
206
                        } // rxd buffer not full
207
                        else // rxd buffer overrun
208
                        {
209
                                pRxBuff->Position = 0; // reset rxd buffer      pointer
210
                                pRxBuff->Locked = FALSE; // unlock rxd buffer
211
                        } // eof rxd buffer overrrun
212
        }
213
}
214
 
215
/**************************************************************/
216
/* Decode data                                                */
217
/**************************************************************/
218
void MKProtocol_DecodeSerialFrame(Buffer_t* pRxBuff, SerialMsg_t* pSerialMsg)
219
{
220
        u8 a,b,c,d;
221
        u8 x,y,z;
222
        u8 ptrIn = 3; // start with first data byte in rx buffer
223
        u8 ptrOut = 3;
224
        u8 len = pRxBuff->Position - 6;  // must be a multiple of 4 (3 bytes at begin and 3 bytes at end are no payload )
225
        while(len)
226
        {
227
                a = pRxBuff->pData[ptrIn++] - '=';
228
                b = pRxBuff->pData[ptrIn++] - '=';
229
                c = pRxBuff->pData[ptrIn++] - '=';
230
                d = pRxBuff->pData[ptrIn++] - '=';
231
                //if(ptrIn > ReceivedBytes - 3) break;
232
 
233
                x = (a << 2) | (b >> 4);
234
                y = ((b & 0x0f) << 4) | (c >> 2);
235
                z = ((c & 0x03) << 6) | d;
236
 
237
                if(len--) pRxBuff->pData[ptrOut++] = x; else break;
238
                if(len--) pRxBuff->pData[ptrOut++] = y; else break;
239
                if(len--) pRxBuff->pData[ptrOut++] = z; else break;
240
        }
241
        pSerialMsg->Address = pRxBuff->pData[1] - 'a';
242
        pSerialMsg->CmdID = pRxBuff->pData[2];
243
        pSerialMsg->pData = &(pRxBuff->pData[3]);
244
        pSerialMsg->DataLen = ptrOut - 3;       // return number of data in bytes
245
}