Subversion Repositories NaviCtrl

Rev

Rev 81 | 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
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
41 ingob 57
#include <stdio.h>
58
#include <stdlib.h>
59
#include <string.h>
60
#include "91x_lib.h"
61
#include "fat16.h"
62
#include "settings.h"
63
#include "uart1.h"
1 ingob 64
 
65
struct str_setting_parameter CFG_Parameter[] =
66
{
67
  //{"1234567890123456"   , "12345678901234567890123456789012", Group, Value, Default  , Min,   Max },
68
    {"Parameter1      " , "12345678901234567890123456789012",     1    , 0     , 222   , 200  , 230 },
69
    {"Parameter2      " , "12345678901234567890123456789012",     1    , 0     , 0     , 0    , 220 },
70
    {"Parameter22     " , "12345678901234567890123456789012",     1    , 0     , 0     , 0    , 220 },
71
};
72
 
73
 
74
//----------------------------------------------------------------------------------
75
void InitDefaultParameters(void)
76
{
77
  u8 i;
78
  for (i=0;i<sizeof(CFG_Parameter) / sizeof(struct str_setting_parameter);i++)
79
  {
80
    CFG_Parameter[i].Value  = CFG_Parameter[i].Default;
81
  }      
82
 
83
}
84
 
85
//----------------------------------------------------------------------------------
86
void SetParameter(char *name, char *value)
87
{
88
  u8 i;
89
  char string[] = "                \0";
90
 
91
  i=strlen(name);
92
  if (i>16) i=16;
93
 
94
  memcpy(string, name, i);
95
//  sprintf(text,"#%s#%s#\n\r", name, string);  SerialPutString(text);
96
 
97
  for (i=0;i<sizeof(CFG_Parameter) / sizeof(struct str_setting_parameter);i++)
98
  {
99
 //   sprintf(text,"#%s#\n\r", CFG_Parameter[i].Name);    SerialPutString(text);
100
     if (strncmp(string, CFG_Parameter[i].Name, 16) == 0)
101
          {
102
            CFG_Parameter[i].Value = (unsigned char) atoi(value);
103
 
104
                if (CFG_Parameter[i].Value < CFG_Parameter[i].Min || CFG_Parameter[i].Value > CFG_Parameter[i].Max)
105
                    CFG_Parameter[i].Value  = CFG_Parameter[i].Default;
106
 
107
                sprintf(text,"%s = %d\n\r", string, CFG_Parameter[i].Value);    SerialPutString(text);
108
                break;
109
          }
110
   }    
111
}
112
 
113
//----------------------------------------------------------------------------------
41 ingob 114
void ReadSetting(u8 number)
1 ingob 115
 {
41 ingob 116
   File_t *fp;
117
   u8 text[32];
1 ingob 118
   u8 tmp;
41 ingob 119
   u8 *token;
1 ingob 120
 
121
   InitDefaultParameters();
122
 
123
   SerialPutString("\n\rReading setting file...\n\r");
124
   fp = fopen_("setting1.txt", 'r');
125
 
126
   if (fp == NULL)
127
   {
128
     SerialPutString("ERROR: File not found !\n\r");
129
     return;
130
   }
131
 
132
   for (tmp=0;tmp<10;tmp++)
133
   {
134
            fgets_(text , 31, fp);
135
                if (text[0] == 0) break;
136
 
137
                if (text[0] != '\n' && text[0] != '\r' && text[0] != ' ' && text[0] != ';' && text[0] != '#')
138
                {
139
                        token = strtok(text, "=");
140
                        if (token != NULL)
141
                        {
142
                          //SerialPutString(token);SerialPutString(" --> ");
143
                  SetParameter(token, strtok(NULL, "="));
144
 
145
                          //SerialPutString("\n\r");
146
                        }
147
                }
148
   }
149
   fclose_(fp);
150
 
151
}
152