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