Subversion Repositories NaviCtrl

Rev

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

Rev Author Line No. Line
41 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
41 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
41 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
41 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
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
57
 
58
#include <string.h>
59
#include "91x_lib.h"
60
#include "waypoints.h"
61
#include "uart1.h"
62
 
63
// the waypoints list
280 killagreg 64
#define MAX_LIST_LEN 31
227 killagreg 65
 
280 killagreg 66
Point_t PointList[MAX_LIST_LEN];
67
u8 WPIndex = 0;         // list index of GPS point representig the current WP, can be maximal WPCount
68
u8 POIIndex = 0;        // list index of GPS Point representing the current POI, can be maximal WPCount
69
u8 WPCount = 0;         // number of waypoints
70
u8 PointCount = 0;              // number of wp in the list can be maximal equal to MAX_LIST_LEN
283 holgerb 71
u8 POICount = 0;
41 ingob 72
 
280 killagreg 73
u8 WPActive = TRUE;
74
 
75
u8 PointList_Init(void)
41 ingob 76
{
280 killagreg 77
        return PointList_Clear();
41 ingob 78
}
79
 
280 killagreg 80
u8 PointList_Clear(void)
41 ingob 81
{
82
        u8 i;
227 killagreg 83
        WPIndex = 0;    // real list position are 1 ,2, 3 ...
84
        POIIndex = 0;   // real list position are 1 ,2, 3 ...
280 killagreg 85
        WPCount = 0;    // no waypoints
283 holgerb 86
    POICount = 0;
280 killagreg 87
        PointCount = 0; // no contents
88
        WPActive = TRUE;
89
        NaviData.WaypointNumber = WPCount;
90
        NaviData.WaypointIndex = 0;
41 ingob 91
 
280 killagreg 92
        for(i = 0; i < MAX_LIST_LEN; i++)
41 ingob 93
        {
280 killagreg 94
                PointList[i].Position.Status = INVALID;
95
                PointList[i].Position.Latitude = 0;
96
                PointList[i].Position.Longitude = 0;
97
                PointList[i].Position.Altitude = 0;
98
                PointList[i].Heading = 361;             // invalid value
99
                PointList[i].ToleranceRadius = 0;       // in meters, if the MK is within that range around the target, then the next target is triggered
100
                PointList[i].HoldTime = 0;                      // in seconds, if the was once in the tolerance area around a WP, this time defines the delay before the next WP is triggered
286 killagreg 101
                PointList[i].Type = POINT_TYPE_INVALID;
280 killagreg 102
                PointList[i].Event_Flag = 0;            // future implementation
286 killagreg 103
                PointList[i].AltitudeRate = 0;          // no change of setpoint
41 ingob 104
        }
105
        return TRUE;           
106
}
107
 
280 killagreg 108
u8 PointList_GetCount(void)
41 ingob 109
{
280 killagreg 110
        return PointCount; // number of points in the list
41 ingob 111
}
112
 
295 killagreg 113
Point_t* PointList_GetAt(u8 index)
41 ingob 114
{
295 killagreg 115
        if((index > 0) && (index <= PointCount)) return(&(PointList[index-1])); // return pointer to this waypoint
116
        else return(NULL);
117
}
118
 
119
u8 PointList_SetAt(Point_t* pPoint)
120
{
121
        // if index is in range
122
        if((pPoint->Index > 0) && (pPoint->Index < MAX_LIST_LEN))
41 ingob 123
        {
295 killagreg 124
                // check list entry before update
125
                if(PointList[pPoint->Index-1].Type)
126
                switch(PointList[pPoint->Index-1].Type)
277 killagreg 127
                {
295 killagreg 128
                        case POINT_TYPE_INVALID: // was invalid
129
                                switch(pPoint->Type)
130
                                {
131
                                        default:
132
                                        case POINT_TYPE_INVALID:
133
                                                // nothing to do
134
                                                break;
135
 
136
                                        case POINT_TYPE_WP:
137
                                                WPCount++;
138
                                                PointCount++;
139
                                                break;
140
 
141
                                        case POINT_TYPE_POI:
142
                                                POICount++;
143
                                                PointCount++;
144
                                                break;
145
                                }
146
                                break;
277 killagreg 147
 
295 killagreg 148
                        case POINT_TYPE_WP: // was  a waypoint
149
                                switch(pPoint->Type)
150
                                {
151
                                        case POINT_TYPE_INVALID:
152
                                                WPCount--;
153
                                                PointCount--;
154
                                                break;
277 killagreg 155
 
295 killagreg 156
                                        default:
157
                                        case POINT_TYPE_WP:
158
                                                //nothing to do
159
                                                break;
160
 
161
                                        case POINT_TYPE_POI:
162
                                                POICount++;
163
                                                WPCount--;
164
                                                break;
165
                                }
166
                                break;
167
 
168
                        case POINT_TYPE_POI: // was a poi
169
                                switch(pPoint->Type)
170
                                {
171
                                        case POINT_TYPE_INVALID:
172
                                                POICount--;
173
                                                PointCount--;
174
                                                break;
175
 
176
                                        case POINT_TYPE_WP:
177
                                                WPCount++;
178
                                                POICount--;
179
                                                break;
180
 
181
                                        case POINT_TYPE_POI:
182
                                        default:
183
                                                // nothing to do
184
                                                break;
185
                                }
186
                                break;         
277 killagreg 187
                }
295 killagreg 188
                memcpy(&PointList[pPoint->Index-1], pPoint, sizeof(Point_t)); // copy data to list entry                                                                                
189
                NaviData.WaypointNumber = WPCount;
190
                return pPoint->Index;
41 ingob 191
        }
295 killagreg 192
        else return 0;
41 ingob 193
}
194
 
227 killagreg 195
// returns the pointer to the first waypoint within the list
280 killagreg 196
Point_t* PointList_WPBegin(void)
41 ingob 197
{
277 killagreg 198
        u8 i;
227 killagreg 199
        WPIndex = 0; // set list position invalid
295 killagreg 200
 
283 holgerb 201
        if(WPActive == FALSE) return(NULL);
295 killagreg 202
 
277 killagreg 203
        POIIndex = 0; // set invalid POI
280 killagreg 204
        if(PointCount > 0)
152 killagreg 205
        {
225 killagreg 206
                // search for first wp in list
295 killagreg 207
                for(i = 0; i <MAX_LIST_LEN; i++)
225 killagreg 208
                {
280 killagreg 209
                        if((PointList[i].Type == POINT_TYPE_WP) && (PointList[i].Position.Status != INVALID))
225 killagreg 210
                        {
227 killagreg 211
                                WPIndex = i + 1;
225 killagreg 212
                                break;
213
                        }
214
                }
277 killagreg 215
                if(WPIndex) // found a WP in the list
216
                {
280 killagreg 217
                        NaviData.WaypointIndex = 1;
277 killagreg 218
                        // update index to POI
280 killagreg 219
                        if(PointList[WPIndex-1].Heading < 0) POIIndex = (u8)(-PointList[WPIndex-1].Heading);
277 killagreg 220
                        else POIIndex = 0;     
280 killagreg 221
                        return(&(PointList[WPIndex-1])); // if list is not empty return pointer to first waypoint in the list           
277 killagreg 222
                }
223
                else // some points in the list but no WP found
224
                {
280 killagreg 225
                        NaviData.WaypointIndex = 0;
277 killagreg 226
                        //Check for an existing POI
295 killagreg 227
                        for(i = 0; i < MAX_LIST_LEN; i++)
277 killagreg 228
                        {
280 killagreg 229
                                if((PointList[i].Type == POINT_TYPE_POI) && (PointList[i].Position.Status != INVALID))
277 killagreg 230
                                {
231
                                        POIIndex = i + 1;
232
                                        break;
233
                                }
234
                        }
235
                }
152 killagreg 236
        }
277 killagreg 237
        else // no point in the list
152 killagreg 238
        {
277 killagreg 239
                POIIndex = 0;
295 killagreg 240
                NaviData.WaypointIndex = 0;    
227 killagreg 241
        }
295 killagreg 242
 
243
        if(WPIndex) return(&(PointList[WPIndex-1]));
244
        else return(NULL);
41 ingob 245
}
246
 
225 killagreg 247
// returns the last waypoint
280 killagreg 248
Point_t* PointList_WPEnd(void)
151 killagreg 249
{
277 killagreg 250
 
251
        u8 i;
227 killagreg 252
        WPIndex = 0; // set list position invalid
277 killagreg 253
        POIIndex = 0; // set invalid
283 holgerb 254
 
280 killagreg 255
        if(WPActive == FALSE) return(NULL);
277 killagreg 256
 
280 killagreg 257
        if(PointCount > 0)
151 killagreg 258
        {
227 killagreg 259
                // search backward!
295 killagreg 260
                for(i = 1; i <= MAX_LIST_LEN; i++)
225 killagreg 261
                {
295 killagreg 262
                        if((PointList[MAX_LIST_LEN - i].Type == POINT_TYPE_WP) && (PointList[MAX_LIST_LEN - i].Position.Status != INVALID))
225 killagreg 263
                        {      
295 killagreg 264
                                WPIndex = MAX_LIST_LEN - i + 1;
225 killagreg 265
                                break;
266
                        }
267
                }
277 killagreg 268
                if(WPIndex) // found a WP within the list
269
                {
280 killagreg 270
                        NaviData.WaypointIndex = WPCount;
271
                        if(PointList[WPIndex-1].Heading < 0) POIIndex = (u8)(-PointList[WPIndex-1].Heading);
277 killagreg 272
                        else POIIndex = 0;     
273
                }
278 killagreg 274
                else // list contains some points but no WP in the list
277 killagreg 275
                {
276
                        // search backward for a POI!
295 killagreg 277
                        for(i = 1; i <= MAX_LIST_LEN; i++)
277 killagreg 278
                        {
295 killagreg 279
                                if((PointList[MAX_LIST_LEN - i].Type == POINT_TYPE_POI) && (PointList[MAX_LIST_LEN - i].Position.Status != INVALID))
277 killagreg 280
                                {      
295 killagreg 281
                                        POIIndex = MAX_LIST_LEN - i + 1;
277 killagreg 282
                                        break;
283
                                }
284
                        }
295 killagreg 285
                        NaviData.WaypointIndex = 0;    
277 killagreg 286
                }
151 killagreg 287
        }
277 killagreg 288
        else // no point in the list
227 killagreg 289
        {
280 killagreg 290
                POIIndex = 0;
291
                NaviData.WaypointIndex = 0;
227 killagreg 292
        }
295 killagreg 293
        if(WPIndex) return(&(PointList[WPIndex-1]));
294
        else return(NULL);
151 killagreg 295
}
296
 
41 ingob 297
// returns a pointer to the next waypoint or NULL if the end of the list has been reached
280 killagreg 298
Point_t* PointList_WPNext(void)
41 ingob 299
{
227 killagreg 300
        u8 wp_found = 0;
280 killagreg 301
        if(WPActive == FALSE) return(NULL);
227 killagreg 302
 
295 killagreg 303
        if(WPIndex < MAX_LIST_LEN) // if there is a next entry in the list
41 ingob 304
        {
227 killagreg 305
                u8 i;
295 killagreg 306
                for(i = WPIndex; i < MAX_LIST_LEN; i++) // start search for next at next list entry
225 killagreg 307
                {
280 killagreg 308
                        if((PointList[i].Type == POINT_TYPE_WP) && (PointList[i].Position.Status != INVALID)) // jump over POIs
225 killagreg 309
                        {
227 killagreg 310
                                wp_found = i+1;
225 killagreg 311
                                break;
312
                        }
313
                }
41 ingob 314
        }
227 killagreg 315
        if(wp_found)
316
        {
317
                WPIndex = wp_found; // update list position
280 killagreg 318
                NaviData.WaypointIndex++;
319
                if(PointList[WPIndex-1].Heading < 0) POIIndex = (u8)(-PointList[WPIndex-1].Heading);
227 killagreg 320
                else POIIndex = 0;
280 killagreg 321
                return(&(PointList[WPIndex-1]));        // return pointer to this waypoint
227 killagreg 322
        }
277 killagreg 323
        else
280 killagreg 324
        {  // no next wp found
325
                NaviData.WaypointIndex = 0;    
277 killagreg 326
                POIIndex = 0;
327
                return(NULL);
328
        }
41 ingob 329
}      
280 killagreg 330
 
331
void PointList_WPActive(u8 set)
332
{
295 killagreg 333
        if(set)
334
        {      
335
                WPActive = TRUE;
336
                PointList_WPBegin(); // uopdates POI index
337
        }
338
        else
339
        {
340
                WPActive = FALSE;
341
                POIIndex = 0;  // disable POI also
342
        }
280 killagreg 343
}
41 ingob 344
 
280 killagreg 345
Point_t* PointList_GetPOI(void)
224 killagreg 346
{
280 killagreg 347
        return PointList_GetAt(POIIndex);      
224 killagreg 348
}
349