Subversion Repositories Projects

Rev

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

Rev Author Line No. Line
406 joko 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 <stdio.h>
58
#include <stdlib.h>
59
#include <string.h>
60
#include "fat16.h"
61
#include "settings.h"
62
#include "uart0.h"
63
#include "uart1.h"
64
#include "main.h"
65
 
66
typedef struct
67
{
68
        ParamId_t ParamId;
69
        int8_t   Name[17]; // 0 terminator is the last byte
70
        uint8_t   Group;   // 0 = reserved  1,2,3,4
71
        uint16_t  Value;
72
        uint16_t  Default;
73
        uint16_t  Min;
74
        uint16_t  Max;
75
} __attribute__((packed)) Parameter_t;
76
 
77
Parameter_t CFG_Parameter[] =
78
{
79
  //{PID             , "1234567890123456" , Group, Value, Default,   Min,       Max },
80
        {PID_KML_LOGGING , "KMLLogging      " ,     1,   500,     500,    0,    60000}, // the log interval for KML logging, 0 = off
81
        {PID_GPX_LOGGING , "GPXLogging      " ,     1,  1000,    1000,    0,    60000}   // the log interval for GPX logging, 0 = off
82
};
83
 
84
 
85
//----------------------------------------------------------------------------------
86
// initialize all parameters by its default value
87
void Settings_SetDefaultValues(void)
88
{
89
        uint8_t i;
90
        // run thrue all parameters and set value to default
91
        for (i = 0; i < sizeof(CFG_Parameter) / sizeof(Parameter_t); i++)
92
        {
93
                CFG_Parameter[i].Value  = CFG_Parameter[i].Default;
94
        }
95
}
96
 
97
//----------------------------------------------------------------------------------
98
// set parameter from string based name and value
99
uint8_t Settings_SetParameterFromString(int8_t *name, int8_t *value)
100
{
101
        uint8_t i, retval = 0;
102
        int8_t string[] = "                \0"; // null terminated string of 16 characters
103
 
104
        if((name == NULL) || (value == NULL)) return(retval);
105
 
106
        i = strlen(name);                                       // lenght of the parameter name
107
        if (i > 16) i = 16;                                     // cut off at 16
108
 
109
        memcpy(string, name, i);                        // copy name to local buffer
110
 
111
    // search name in parameter list
112
        for (i = 0; i < sizeof(CFG_Parameter) / sizeof(Parameter_t); i++)
113
        {
114
                if(strncmp(string, CFG_Parameter[i].Name, 16) == 0) // names are matching
115
                {
116
                        CFG_Parameter[i].Value = (uint16_t)atoi(value); // convert string to number and set value
117
                        // out of range ?
118
                        if((CFG_Parameter[i].Value < CFG_Parameter[i].Min) || (CFG_Parameter[i].Value > CFG_Parameter[i].Max))
119
                        {       // print a warning
120
                                sprintf(text,"\r\n%s <-- %d is out of range [%d...%d]", string, CFG_Parameter[i].Value, CFG_Parameter[i].Min, CFG_Parameter[i].Max);
121
                                printf(text);
122
                                CFG_Parameter[i].Value = CFG_Parameter[i].Default;  // fallback to default
123
                        }
124
                        retval = 1; // value in range
125
                        break; // end loop
126
                }
127
        }
128
        if(!retval)
129
        {      
130
                sprintf(text,"\r\n%s <-- unknown parameter\r\n", string);
131
                printf(text);
132
        }
133
        return(retval);
134
}
135
 
136
//----------------------------------------------------------------------------------
137
// read settings from file on sd-card
138
void Settings_Init(void)
139
{
140
        #define LINE_MAX 32
141
        File_t *fp;
142
        int8_t settingsline[LINE_MAX];
143
        char *name, *value;
144
        uint8_t i;
145
        char *tmp;
146
 
147
        printf("\n\rSettings init...");
148
        Settings_SetDefaultValues();
149
 
150
        if(Fat16_IsValid())
151
        {       // check if settings file is existing
152
                if(fexist_("settings.ini"))
153
                {      
154
                        fp = fopen_("settings.ini", 'r');               // try to open the file
155
                        if (fp == NULL)                                                 // could not open the file
156
                        {
157
                                printf("ERROR: Opening settings file!");
158
                                return;
159
                        }
160
                        // read all lines from file
161
                        while(fgets_(settingsline, LINE_MAX, fp) != 0)
162
                        {
163
                                if ( // ignorelines starting with \r,\n,' ',';','#'
164
                                        (settingsline[0] != '\n') &&
165
                                        (settingsline[0] != '\r') &&
166
                                        (settingsline[0] != ' ' ) &&
167
                                        (settingsline[0] != ';' ) &&
168
                                        (settingsline[0] != '#' )
169
                                        )
170
                                {
171
                                        name  = strtok_r(settingsline, "=", & tmp); // get name
172
                                        value = strtok_r(NULL, "=", & tmp); // get value
173
                                        if ((name != NULL) && (value != NULL))
174
                                        {
175
                                                Settings_SetParameterFromString(name, value);
176
                                        }
177
                                }
178
                        }
179
                        fclose_(fp);
180
                        printf("ok");
181
                        return;
182
                }
183
                else // settings file does not exist
184
                {       // create default settings file
185
                        fp = fopen_("settings.ini", 'w');               // try to open the file
186
                        if(fp == NULL)
187
                        {
188
                                printf("ERROR: Creating default settings file!");
189
                                return;
190
                        }
191
                        // run thrue all parameters and set value to default
192
                        for (i = 0; i < sizeof(CFG_Parameter) / sizeof(Parameter_t); i++)
193
                        {
194
                                sprintf(settingsline, "%s = %d\r\n", CFG_Parameter[i].Name, CFG_Parameter[i].Default);
195
                                fputs_(settingsline, fp); // write to file
196
                        }
197
                        fputs_("\r\n", fp); // newline at the end of file
198
                        fclose_(fp);
199
                        printf("Default settings file created!");
200
                        return;
201
                }
202
        }
203
        else // no acces to fat 16 filesystem
204
        {
205
                printf("Using default values!");
206
                return;
207
        }
208
}
209
 
210
 
211
//----------------------------------------------------------------------------------
212
// read value of a paramter identified by its id
213
// returns 1 on success and 0 on error
214
uint8_t Settings_GetParamValue(ParamId_t Pid, uint16_t * pValue)
215
{
216
        uint8_t i, retval = 0;
217
 
218
        for (i = 0; i < sizeof(CFG_Parameter) / sizeof(Parameter_t); i++)
219
        {
220
                if(CFG_Parameter[i].ParamId == Pid)
221
                {
222
                        *pValue = CFG_Parameter[i].Value;
223
                        retval = 1;
224
                        break;
225
                }
226
        }
227
        return retval;
228
}