Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1612 dongfang 1
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
// + Copyright (c) 04.2007 Holger Buss
1623 - 3
// + Nur für den privaten Gebrauch
1612 dongfang 4
// + www.MikroKopter.com
5
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1623 - 6
// + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation),
7
// + dass eine Nutzung (auch auszugsweise) nur für den privaten und nicht-kommerziellen Gebrauch zulässig ist.
1612 dongfang 8
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
9
// + bzgl. der Nutzungsbedingungen aufzunehmen.
1623 - 10
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
1612 dongfang 11
// + Verkauf von Luftbildaufnahmen, usw.
12
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1623 - 13
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
14
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
1612 dongfang 15
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
16
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
1623 - 17
// + auf anderen Webseiten oder Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
18
// + eindeutig als Ursprung verlinkt und genannt werden
1612 dongfang 19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1623 - 20
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
1612 dongfang 21
// + Benutzung auf eigene Gefahr
1623 - 22
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
1612 dongfang 23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
// + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
1623 - 25
// + mit unserer Zustimmung zulässig
1612 dongfang 26
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
27
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
28
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
29
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
30
// + this list of conditions and the following disclaimer.
31
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
32
// +     from this software without specific prior written permission.
33
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permittet
34
// +     for non-commercial use (directly or indirectly)
35
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
36
// +     with our written permission
37
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
38
// +     clearly linked as origin
39
// +   * porting to systems other than hardware from www.mikrokopter.de is not allowed
40
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
41
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
44
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
45
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
46
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
1623 - 47
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
48
// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1612 dongfang 49
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
50
// +  POSSIBILITY OF SUCH DAMAGE.
51
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1623 - 52
 
1612 dongfang 53
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
54
// + Contant Values
55
// + 0-250 -> normale Values
56
// + 251 -> Poti1
57
// + 252 -> Poti2
58
// + 253 -> Poti3
59
// + 254 -> Poti4
60
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
61
 
62
#ifndef EEMEM
63
#define EEMEM __attribute__ ((section (".eeprom")))
64
#endif
65
 
66
#include <avr/eeprom.h>
67
#include <string.h>
68
#include "eeprom.h"
69
#include "printf_P.h"
70
#include "output.h"
71
// TODO: Get rid of these. They have nothing to do with eeprom.
72
#include "flight.h"
73
#include "rc.h"
74
#include "sensors.h"
75
 
76
// byte array in eeprom
77
uint8_t EEPromArray[E2END+1] EEMEM;
78
 
79
paramset_t      staticParams;
80
MixerTable_t    Mixer;
81
 
82
/*
83
 * Default for your own experiments here, so you don't have to reset them
84
 * from MK-Tool all the time.
85
 */
86
void setDefaultUserParams(void) {
87
  uint8_t i;
88
  for (i=0; i<sizeof(staticParams.UserParams1); i++) {
89
    staticParams.UserParams1[i] = 0;
90
  }
91
  for (i=0; i<sizeof(staticParams.UserParams2); i++) {
92
    staticParams.UserParams2[i] = 0;
93
  }
1635 - 94
  /*
95
   * While we are still using userparams for flight parameters, do set
96
   * some safe & meaningful default values.
97
   */
1775 - 98
  staticParams.UserParams1[3] = 8;                      // Throttle stick D=8
1646 - 99
  staticParams.UserParams2[0] = 0b11010101; // All gyro filter constants 2; acc. 4
100
  staticParams.UserParams2[1] = 2;                      // H&I motor smoothing.
101
  staticParams.UserParams2[2] = 120;            // Yaw I factor
1775 - 102
  staticParams.UserParams2[3] = 10;             // Max Z acceleration for acc. correction of angles.                    
1612 dongfang 103
}
104
 
105
void setOtherDefaults(void) {
1614 dongfang 106
/* Channel assignments were changed to the normal:
107
 * Aileron/roll=1, elevator/pitch=2, throttle=3, yaw/rudder=4
108
 */
109
  staticParams.ChannelAssignment[CH_PITCH]    = 2;
110
  staticParams.ChannelAssignment[CH_ROLL]     = 1;
111
  staticParams.ChannelAssignment[CH_THROTTLE] = 3;
112
  staticParams.ChannelAssignment[CH_YAW]      = 4;
113
  staticParams.ChannelAssignment[CH_POTS+0]   = 5;
114
  staticParams.ChannelAssignment[CH_POTS+1]   = 6;
115
  staticParams.ChannelAssignment[CH_POTS+2]   = 7;
116
  staticParams.ChannelAssignment[CH_POTS+3]   = 8;
1775 - 117
  staticParams.GlobalConfig = CFG_AXIS_COUPLING_ACTIVE | CFG_HEADING_HOLD; // CFG_COMPASS_ACTIVE | CFG_GPS_ACTIVE;//CFG_HEIGHT_CONTROL | CFG_HEIGHT_SWITCH | CFG_COMPASS_FIX;
1612 dongfang 118
  staticParams.HeightMinGas = 30;
119
  staticParams.MaxHeight     = 251;
120
  staticParams.HeightP      = 10;
121
  staticParams.HeightD  = 30;
122
  staticParams.Height_ACC_Effect = 30;
123
  staticParams.Height_Gain = 4;
1775 - 124
  staticParams.StickP = 8;
125
  staticParams.StickD = 12;
1612 dongfang 126
  staticParams.StickYawP = 12;
1615 dongfang 127
  staticParams.MinThrottle = 8;
128
  staticParams.MaxThrottle = 230;
1612 dongfang 129
  staticParams.CompassYawEffect = 128;
130
  staticParams.GyroP = 80;
131
  staticParams.GyroI = 100;
1775 - 132
  staticParams.LowVoltageWarning = 95;
1612 dongfang 133
  staticParams.EmergencyGas = 35;
134
  staticParams.EmergencyGasDuration = 30;
1646 - 135
  staticParams.Unused0 = 0;
1612 dongfang 136
  staticParams.IFactor = 32;
137
  staticParams.ServoPitchControl = 100;
138
  staticParams.ServoPitchComp = 40;
139
  staticParams.ServoPitchCompInvert = 0;
140
  staticParams.ServoPitchMin = 50;
141
  staticParams.ServoPitchMax = 150;
142
  staticParams.ServoRefresh = 5;
143
  staticParams.LoopGasLimit = 50;
144
  staticParams.LoopThreshold = 90;
145
  staticParams.LoopHysteresis = 50;
146
  staticParams.BitConfig = 0;
147
  staticParams.AxisCoupling1 = 90;
148
  staticParams.AxisCoupling2 = 67;
149
  staticParams.AxisCouplingYawCorrection = 0;
150
  staticParams.DynamicStability = 50;
151
  staticParams.J16Bitmask = 95;
152
  staticParams.J17Bitmask = 243;
153
  staticParams.J16Timing = 15;
154
  staticParams.J17Timing = 15;
155
  staticParams.NaviGpsModeControl = 253;
156
  staticParams.NaviGpsGain = 100;
157
  staticParams.NaviGpsP = 90;
158
  staticParams.NaviGpsI = 90;
159
  staticParams.NaviGpsD = 90;
160
  staticParams.NaviGpsPLimit = 75;
161
  staticParams.NaviGpsILimit = 75;
162
  staticParams.NaviGpsDLimit = 75;
163
  staticParams.NaviGpsACC = 0;
164
  staticParams.NaviGpsMinSat = 6;
165
  staticParams.NaviStickThreshold = 8;
166
  staticParams.NaviWindCorrection = 90;
167
  staticParams.NaviSpeedCompensation = 30;
168
  staticParams.NaviOperatingRadius = 100;
169
  staticParams.NaviAngleLimitation = 100;
170
  staticParams.NaviPHLoginTime = 4;
171
}
172
 
173
/***************************************************/
174
/*    Default Values for parameter set 1           */
175
/***************************************************/
176
void ParamSet_DefaultSet1(void) { // sport
1646 - 177
  setOtherDefaults();
1612 dongfang 178
  gyro_setDefaults();
179
  setDefaultUserParams();
1775 - 180
  staticParams.GlobalConfig = CFG_ROTARY_RATE_LIMITER | CFG_AXIS_COUPLING_ACTIVE;
1612 dongfang 181
  memcpy(staticParams.Name, "Sport\0",6);
182
}
183
 
184
/***************************************************/
185
/*    Default Values for parameter set 2           */
186
/***************************************************/
187
void ParamSet_DefaultSet2(void) { // normal
1646 - 188
  setOtherDefaults();
1612 dongfang 189
  gyro_setDefaults();
190
  setDefaultUserParams();
1775 - 191
  staticParams.GlobalConfig = CFG_ROTARY_RATE_LIMITER | CFG_AXIS_COUPLING_ACTIVE;
1612 dongfang 192
  staticParams.Height_Gain = 3;
193
  staticParams.J16Timing = 20;
194
  staticParams.J17Timing = 20;
195
  memcpy(staticParams.Name, "Normal\0", 7);
196
}
197
 
198
/***************************************************/
199
/*    Default Values for parameter set 3           */
200
/***************************************************/
201
void ParamSet_DefaultSet3(void) { // beginner
1646 - 202
  setOtherDefaults();
1612 dongfang 203
  gyro_setDefaults();
204
  setDefaultUserParams();
1775 - 205
  staticParams.GlobalConfig = CFG_ROTARY_RATE_LIMITER | CFG_AXIS_COUPLING_ACTIVE;
1612 dongfang 206
  staticParams.Height_Gain = 3;
207
  staticParams.EmergencyGasDuration = 20;
208
  staticParams.AxisCouplingYawCorrection = 70;
209
  staticParams.J16Timing = 30;
210
  staticParams.J17Timing = 30;
211
  memcpy(staticParams.Name, "Beginner\0", 9);
212
}
213
 
214
/***************************************************/
215
/*       Read Parameter from EEPROM as byte        */
216
/***************************************************/
217
uint8_t GetParamByte(uint16_t param_id) {
218
  return eeprom_read_byte(&EEPromArray[EEPROM_ADR_PARAM_BEGIN + param_id]);
219
}
220
 
221
/***************************************************/
222
/*       Write Parameter to EEPROM as byte         */
223
/***************************************************/
224
void SetParamByte(uint16_t param_id, uint8_t value) {
225
  eeprom_write_byte(&EEPromArray[EEPROM_ADR_PARAM_BEGIN + param_id], value);
226
}
227
 
228
/***************************************************/
229
/*       Read Parameter from EEPROM as word        */
230
/***************************************************/
231
uint16_t GetParamWord(uint16_t param_id) {
232
  return eeprom_read_word((uint16_t *) &EEPromArray[EEPROM_ADR_PARAM_BEGIN + param_id]);
233
}
234
 
235
/***************************************************/
236
/*       Write Parameter to EEPROM as word         */
237
/***************************************************/
238
void SetParamWord(uint16_t param_id, uint16_t value) {
239
  eeprom_write_word((uint16_t *) &EEPromArray[EEPROM_ADR_PARAM_BEGIN + param_id], value);
240
}
241
 
242
/***************************************************/
243
/*       Read Parameter Set from EEPROM            */
244
/***************************************************/
245
// number [1..5]
246
void ParamSet_ReadFromEEProm(uint8_t setnumber) {
247
  if((1 > setnumber) || (setnumber > 5)) setnumber = 3;
248
  eeprom_read_block((uint8_t *) &staticParams.ChannelAssignment[0], &EEPromArray[EEPROM_ADR_PARAMSET_BEGIN + PARAMSET_STRUCT_LEN * (setnumber - 1)], PARAMSET_STRUCT_LEN);
249
  output_init();
250
}
251
 
252
/***************************************************/
253
/*        Write Parameter Set to EEPROM            */
254
/***************************************************/
255
// number [1..5]
256
void ParamSet_WriteToEEProm(uint8_t setnumber) {
257
  if(setnumber > 5) setnumber = 5;
258
  if(setnumber < 1) return;
259
  eeprom_write_block((uint8_t *) &staticParams.ChannelAssignment[0], &EEPromArray[EEPROM_ADR_PARAMSET_BEGIN + PARAMSET_STRUCT_LEN * (setnumber - 1)], PARAMSET_STRUCT_LEN);
260
  eeprom_write_word((uint16_t *) &EEPromArray[EEPROM_ADR_PARAMSET_LENGTH], PARAMSET_STRUCT_LEN);
261
  eeprom_write_block( &staticParams.ChannelAssignment[0], &EEPromArray[EEPROM_ADR_CHANNELS], 8); // backup the first 8 bytes that is the rc channel mapping
262
  // set this parameter set to active set
263
  setActiveParamSet(setnumber);
264
  output_init();
265
}
266
 
267
/***************************************************/
268
/*       Get active parameter set                  */
269
/***************************************************/
270
uint8_t getActiveParamSet(void) {
271
  uint8_t setnumber;
272
  setnumber = eeprom_read_byte(&EEPromArray[PID_ACTIVE_SET]);
273
  if(setnumber > 5) {
274
    setnumber = 3;
275
    eeprom_write_byte(&EEPromArray[PID_ACTIVE_SET], setnumber);
276
  }
277
  return(setnumber);
278
}
279
 
280
/***************************************************/
281
/*       Set active parameter set                  */
282
/***************************************************/
283
void setActiveParamSet(uint8_t setnumber) {
284
  if(setnumber > 5) setnumber = 5;
285
  if(setnumber < 1) setnumber = 1;
286
  eeprom_write_byte(&EEPromArray[PID_ACTIVE_SET], setnumber);
287
}
288
 
289
/***************************************************/
290
/*          Read MixerTable from EEPROM            */
291
/***************************************************/
292
uint8_t MixerTable_ReadFromEEProm(void) {
293
  if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_MIXER_TABLE]) == EEMIXER_REVISION) {
294
    eeprom_read_block((uint8_t *) &Mixer, &EEPromArray[EEPROM_ADR_MIXER_TABLE], sizeof(Mixer));
295
    return 1;
296
  }
297
  else return 0;
298
}
299
 
300
/***************************************************/
301
/*          Write Mixer Table to EEPROM            */
302
/***************************************************/
303
uint8_t MixerTable_WriteToEEProm(void) {
304
  if(Mixer.Revision == EEMIXER_REVISION) {
305
    eeprom_write_block((uint8_t *) &Mixer, &EEPromArray[EEPROM_ADR_MIXER_TABLE], sizeof(Mixer));
306
    return 1;
307
  }
308
  else return 0;
309
}
310
 
311
/***************************************************/
312
/*    Default Values for Mixer Table               */
313
/***************************************************/
314
void MixerTable_Default(void) { // Quadro 
315
  uint8_t i;
316
  Mixer.Revision = EEMIXER_REVISION;
317
  // clear mixer table (but preset throttle)
318
  for(i = 0; i < 16; i++) {
319
    Mixer.Motor[i][MIX_THROTTLE] = i < 4 ? 64 : 0;
320
    Mixer.Motor[i][MIX_PITCH] = 0;
321
    Mixer.Motor[i][MIX_ROLL] = 0;
322
    Mixer.Motor[i][MIX_YAW]  = 0;
323
  }
324
  // default = Quadro
325
  Mixer.Motor[0][MIX_PITCH] = +64;                                 Mixer.Motor[0][MIX_YAW] = +64;
326
  Mixer.Motor[1][MIX_PITCH] = -64;                                 Mixer.Motor[1][MIX_YAW] = +64;
327
  Mixer.Motor[2][MIX_ROLL] = -64; Mixer.Motor[2][MIX_YAW] = -64;
328
  Mixer.Motor[3][MIX_ROLL] = +64; Mixer.Motor[3][MIX_YAW] = -64;
329
  memcpy(Mixer.Name, "Quadro\0", 7);
330
}
331
 
332
/***************************************************/
333
/*       Initialize EEPROM Parameter Sets          */
334
/***************************************************/
335
void ParamSet_Init(void) {
1775 - 336
  uint8_t Channel_Backup=1, i, j;
1612 dongfang 337
  // parameter version  check
338
  if(eeprom_read_byte(&EEPromArray[PID_PARAM_REVISION]) != EEPARAM_REVISION) {
339
    // if version check faild
340
    printf("\n\rInit Parameter in EEPROM");
341
    eeprom_write_byte(&EEPromArray[EEPROM_ADR_MIXER_TABLE], 0xFF); // reset also mixer table
342
    // check if channel mapping backup is valid
1775 - 343
    for (j=0; j<4 && Channel_Backup; j++) {
344
      if (eeprom_read_byte(&EEPromArray[EEPROM_ADR_CHANNELS+0]) >= 12)
345
        Channel_Backup = 0;
346
    }
1612 dongfang 347
    // fill all 5 parameter settings
348
    for (i=1; i<6; i++) {
349
      switch(i) {
350
      case 1:
351
        ParamSet_DefaultSet1(); // Fill staticParams Structure to default parameter set 1 (Sport)
352
        break;
353
      case 2:
354
        ParamSet_DefaultSet2(); // Kamera
355
        break;
356
      case 3:
357
        ParamSet_DefaultSet3(); // Beginner
358
        break;
359
      default:
360
        ParamSet_DefaultSet2(); // Kamera
361
        break;
362
      }
363
      if(Channel_Backup) { // if we have a rc channel mapping backup in eeprom
364
        // restore it
1775 - 365
        for (j=0; j<8; j++) {
366
          staticParams.ChannelAssignment[j] = eeprom_read_byte(&EEPromArray[EEPROM_ADR_CHANNELS+j]);
367
        }
1612 dongfang 368
      }
369
      ParamSet_WriteToEEProm(i);
370
    }
371
    // default-Setting is parameter set 3
372
    setActiveParamSet(1);
373
    // update version info
374
    SetParamByte(PID_PARAM_REVISION, EEPARAM_REVISION);
375
  }
376
  // read active parameter set to staticParams stucture
377
  ParamSet_ReadFromEEProm(getActiveParamSet());
378
  printf("\n\rUsing Parameter Set %d", getActiveParamSet());
379
 
380
  // load mixer table
381
  if(!MixerTable_ReadFromEEProm()) {
382
    printf("\n\rGenerating default Mixer Table");
383
    MixerTable_Default(); // Quadro
384
    MixerTable_WriteToEEProm();
385
  }
386
  // determine motornumber
387
  RequiredMotors = 0;
388
  for(i = 0; i < 16; i++) {
389
    if(Mixer.Motor[i][MIX_THROTTLE] > 0) RequiredMotors++;
390
  }
391
 
392
  printf("\n\rMixer-Config: '%s' (%u Motors)",Mixer.Name, RequiredMotors);
393
  printf("\n\r==============================");
394
}