Subversion Repositories NaviCtrl

Rev

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

Rev Author Line No. Line
349 ingob 1
/*#######################################################################################*/
2
/* !!! THIS IS NOT FREE SOFTWARE !!!                                                     */
3
/*#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + www.MikroKopter.com
6
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 7
// + Software Nutzungsbedingungen (english version: see below)
8
// + der Fa. HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland - nachfolgend Lizenzgeber genannt -
9
// + Der Lizenzgeber räumt dem Kunden ein nicht-ausschließliches, zeitlich und räumlich* unbeschränktes Recht ein, die im den
10
// + Mikrocontroller verwendete Firmware für die Hardware Flight-Ctrl, Navi-Ctrl, BL-Ctrl, MK3Mag & PC-Programm MikroKopter-Tool 
11
// + - nachfolgend Software genannt - nur für private Zwecke zu nutzen.
12
// + Der Einsatz dieser Software ist nur auf oder mit Produkten des Lizenzgebers zulässig.
349 ingob 13
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 14
// + Die vom Lizenzgeber gelieferte Software ist urheberrechtlich geschützt. Alle Rechte an der Software sowie an sonstigen im
15
// + Rahmen der Vertragsanbahnung und Vertragsdurchführung überlassenen Unterlagen stehen im Verhältnis der Vertragspartner ausschließlich dem Lizenzgeber zu.
16
// + Die in der Software enthaltenen Copyright-Vermerke, Markenzeichen, andere Rechtsvorbehalte, Seriennummern sowie
17
// + sonstige der Programmidentifikation dienenden Merkmale dürfen vom Kunden nicht verändert oder unkenntlich gemacht werden.
18
// + Der Kunde trifft angemessene Vorkehrungen für den sicheren Einsatz der Software. Er wird die Software gründlich auf deren
19
// + Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
20
// + Die Haftung des Lizenzgebers wird - soweit gesetzlich zulässig - begrenzt in Höhe des typischen und vorhersehbaren
21
// + Schadens. Die gesetzliche Haftung bei Personenschäden und nach dem Produkthaftungsgesetz bleibt unberührt. Dem Lizenzgeber steht jedoch der Einwand 
22
// + des Mitverschuldens offen.
23
// + Der Kunde trifft angemessene Vorkehrungen für den Fall, dass die Software ganz oder teilweise nicht ordnungsgemäß arbeitet.
24
// + Er wird die Software gründlich auf deren Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
25
// + Der Kunde wird er seine Daten vor Einsatz der Software nach dem Stand der Technik sichern.
26
// + Der Kunde ist darüber unterrichtet, dass der Lizenzgeber seine Daten im zur Vertragsdurchführung erforderlichen Umfang
27
// + und auf Grundlage der Datenschutzvorschriften erhebt, speichert, verarbeitet und, sofern notwendig, an Dritte übermittelt.
28
// + *) Die räumliche Nutzung bezieht sich nur auf den Einsatzort, nicht auf die Reichweite der programmierten Software.
29
// + #### ENDE DER NUTZUNGSBEDINGUNGEN ####'
30
// +  Hinweis: Informationen über erweiterte Nutzungsrechte (wie z.B. Nutzung für nicht-private Zwecke) sind auf Anfrage per Email an info(@)hisystems.de verfügbar.
349 ingob 31
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 32
// + Software LICENSING TERMS
349 ingob 33
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 34
// + of HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland, Germany - the Licensor -
35
// + The Licensor grants the customer a non-exclusive license to use the microcontroller firmware of the Flight-Ctrl, Navi-Ctrl, BL-Ctrl, and MK3Mag hardware 
36
// + (the Software) exclusively for private purposes. The License is unrestricted with respect to time and territory*.
37
// + The Software may only be used with the Licensor's products.
38
// + The Software provided by the Licensor is protected by copyright. With respect to the relationship between the parties to this
39
// + agreement, all rights pertaining to the Software and other documents provided during the preparation and execution of this
40
// + agreement shall be the property of the Licensor.
41
// + The information contained in the Software copyright notices, trademarks, other legal reservations, serial numbers and other
42
// + features that can be used to identify the program may not be altered or defaced by the customer.
43
// + The customer shall be responsible for taking reasonable precautions
44
// + for the safe use of the Software. The customer shall test the Software thoroughly regarding its suitability for the
45
// + intended purpose before implementing it for actual operation. The Licensor's liability shall be limited to the extent of typical and
46
// + foreseeable damage to the extent permitted by law, notwithstanding statutory liability for bodily injury and product
47
// + liability. However, the Licensor shall be entitled to the defense of contributory negligence.
48
// + The customer will take adequate precautions in the case, that the software is not working properly. The customer will test
49
// + the software for his purpose before any operational usage. The customer will backup his data before using the software.
50
// + The customer understands that the Licensor collects, stores and processes, and, where required, forwards, customer data
51
// + to third parties to the extent necessary for executing the agreement, subject to applicable data protection and privacy regulations.
52
// + *) The territory aspect only refers to the place where the Software is used, not its programmed range.
53
// + #### END OF LICENSING TERMS ####
54
// + Note: For information on license extensions (e.g. commercial use), please contact us at info(@)hisystems.de.
349 ingob 55
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
56
 
57
#include <stdio.h>
58
#include <stdarg.h>
59
#include <string.h>
60
#include "91x_lib.h"
61
#include "config.h"
62
#include "main.h"
63
#include "fat16.h"
64
#include "ftphelper.h"
65
#include "mkprotocol.h"
66
#include "debug.h"
67
#include "uart1.h"
68
 
69
 
70
typedef struct
71
{
72
  u8            Name[13];
73
  u8            Attribute;
74
  u32           Size;
75
 
76
} __attribute__((packed)) FTP_direntry_t;
77
 
78
FTP_direntry_t FTP_direntry;
79
 
80
char FTP_data[DATA_TRANSFER_SIZE+1];                              //  rx & tx buffer to avoid 2 buffers
81
 
82
u16 CompressBuffer(char *buf, u16 size, u16 offset)
83
{
84
  #define KEYWORD_COUNT 27
85
 
86
  const char keyword[KEYWORD_COUNT][16]=
87
                                        {"Altimeter>\0    \0",
88
                                         "Current>\0      \0",
89
                                         "Variometer>\0   \0",
90
                                         "GroundSpeed>\0  \0",
91
                                         "VerticalSpeed>\0\0",
92
                                         "FlightTime>\0   \0",
93
                                         "Voltage>\0      \0",
94
                                         "Capacity>\0     \0",
95
                                         "RCQuality>\0    \0",
96
                                         "RCRSSI>\0       \0",
97
                                         "Compass>\0      \0",
98
                                         "NickAngle>\0    \0",
99
                                         "RollAngle>\0    \0",
100
                                         "NCFlag>\0       \0",
101
                                         "ErrorCode>\0    \0",
102
                                         "TargetBearing>\0\0",
103
                                         "RCSticks>\0     \0",
104
                                         "GPSSticks>\0    \0",
105
                                         "extensions>\0   \0",
106
                                         "Course>\0       \0",
107
                                         "trkpt\0         \0",
108
                                         "time>\0         \0",
109
                                         "sat>\0          \0",
110
                                         "ele>\0          \0",
111
                                         " lat=\0         \0",
112
                                         " lon=\0         \0",
113
                                         "TargetDistance>\0" };
114
  u16 i, count = size;
115
  char *s = NULL, *start = buf+offset;
116
 
117
   for ( i = 0; i < KEYWORD_COUNT; i++)
118
   {
119
                s = strstr(start, keyword[i]);
120
                if (s != NULL)
121
                {       u8 keylen = strlen(keyword[i]);
122
                        *s= 27;  
123
                        *(s+1) = i+1;
124
                        count-= (keylen-2);
125
                        memcpy(s+2, s+keylen, count - (s-buf));
126
                        i--;
127
                }
128
        }
129
 
130
   return (count);
131
}
132
// --------------------------------------------------------------------
133
void CheckFTPCommand(u8 FTP_command)
134
{
368 holgerb 135
/*
349 ingob 136
  static Find_t fe;
137
  static File_t *fp = NULL;
138
  static u8 blockindex, compressLevel = 0;
139
 
140
  u32 filesize;
141
 
142
  switch (FTP_command)
143
  {
144
        case FTP_CMD_FINDFIRST:
145
                FTP_direntry.Name[0] = 0;
146
                if (findfirst_("*.*", 0x35, &fe))
147
                {
148
                  memcpy(&FTP_direntry.Name, &fe.name, 13);    
149
                  FTP_direntry.Attribute = fe.fp.Attribute;
150
                  FTP_direntry.Size = fe.fp.Size;
151
                 // Debug(FTP_direntry.Name);
152
                }
153
 
154
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'F', NC_ADDRESS, 2, &FTP_command, 1, &FTP_direntry, sizeof(FTP_direntry));
155
        break;
156
 
157
        case FTP_CMD_FINDNEXT:
158
 
159
                FTP_direntry.Name[0] = 0;
160
 
161
                if (findnext_(&fe))
162
                {
163
                  memcpy(&FTP_direntry.Name, &fe.name, 13);    
164
                  FTP_direntry.Attribute = fe.fp.Attribute;
165
                  FTP_direntry.Size = fe.fp.Size;
166
                 // Debug(FTP_direntry.Name);
167
                }
168
 
169
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'F', NC_ADDRESS, 2, &FTP_command, 1, &FTP_direntry, sizeof(FTP_direntry));
170
        break;
171
 
172
        case FTP_CMD_GET_CWD:
173
                {
174
                char data_null = 0;
175
                        MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'F', NC_ADDRESS, 3, &FTP_command, 1, GetPath(), strlen(GetPath()), &data_null, 1 );
176
                }
177
 
178
        break;
179
 
180
        case FTP_CMD_SET_CWD:
181
 
182
                chdir_(FTP_data);
183
        break;
184
 
185
        case FTP_CMD_OPEN_FILE:
186
                {
187
                u8 filefound;
188
 
189
                compressLevel = FTP_data[0];
190
                fp = fopen_(&FTP_data[1], 'r');
191
                if (fp != NULL)
192
                {
193
                  filefound = 1;
194
                  filesize = fp->Size;
195
                  blockindex = 0;                                                                               // reset index counter
196
                }
197
                else filefound = 0;                                                                             // this means, no valid file found for transfer
198
 
199
 
200
                MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'F', NC_ADDRESS, 3, &FTP_command, 1, &filefound, 1, &filesize, sizeof(filesize));
201
                }
202
        break;
203
 
204
        case FTP_CMD_GET_FILE_DATA:
205
                {
206
                  u16 size = DATA_TRANSFER_SIZE;
207
 
208
                if (FTP_data[0] == blockindex + 1)                                      // next block is requested
209
                 {
210
                   blockindex++;                                       
211
                 }
212
                 else if (FTP_data[0] == blockindex)                                    // repeat last block
213
                 {
214
                    fseek_(fp, SEEK_CUR, -DATA_TRANSFER_SIZE);                  // set filepointer to beginning of last block
215
                 }                                                                                                             
216
                 else blockindex = FTP_data[0]+ 10;                                             // ABORT transfer,  blockindex now out of valid range
217
 
218
                 fread_(FTP_data, DATA_TRANSFER_SIZE, 1, fp);                           // read data block to buffer);
219
                 FTP_data[DATA_TRANSFER_SIZE] = 0;             
220
 
221
             if (compressLevel)
222
                 {
223
                        size = CompressBuffer(FTP_data, DATA_TRANSFER_SIZE, 0);
224
 
225
                         if (compressLevel > 1)
226
                         {
227
                                if (size < DATA_TRANSFER_SIZE - 50)
228
                                 {              
229
                                        fread_(&FTP_data[size], DATA_TRANSFER_SIZE - size, 1, fp);                              // read data block to buffer);         
230
                                        FTP_data[DATA_TRANSFER_SIZE] = 0;              
231
                                   size = CompressBuffer(FTP_data, DATA_TRANSFER_SIZE, size);
232
                                }
233
                         }
234
                 }
235
 
236
                 MKProtocol_CreateSerialFrame(&UART1_tx_buffer, 'F', NC_ADDRESS, 4, &FTP_command, 1, &blockindex, 1, &size, 2, &FTP_data, size);
237
                }
238
        break;
239
 
240
        case FTP_CMD_CLOSE_FILE:
241
                fclose_(fp);
242
                Debug("ftp: CloseFile");               
243
 
244
        break;
245
 
246
        case FTP_CMD_NONE:
247
        default:
248
                FTP_command = FTP_CMD_NONE;
249
                Debug("ftp: CMD None");
250
        break;
251
  }
368 holgerb 252
*/
349 ingob 253
}
254
 
255