00c6d076e71a9d6fbc3f72b308a2e6c3dba83119
[bertos.git] / bertos / net / nmea.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2009 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  * \brief NMEA implementation.
33  *
34  * \author Daniele Basile <asterix@develer.com>
35  *
36  */
37
38 #include "nmea.h"
39
40 #include "cfg/cfg_nmea.h"
41
42 #include <cfg/debug.h>
43
44 #define LOG_LEVEL  NMEA_LOG_LEVEL
45 #define LOG_FORMAT NMEA_LOG_FORMAT
46 #include <cfg/log.h>
47
48 #include <net/nmeap/inc/nmeap.h>
49
50 #include <ctype.h>
51 #include <time.h>
52 #include <string.h>
53
54
55 static uint32_t tokenToInt(const char *s)
56 {
57         uint32_t num = 0;
58         int i;
59
60         ASSERT(s);
61
62         for(i = 0; i < NMEAP_MAX_TOKENS; i++)
63         {
64                 char c = *s++;
65
66                 if (c == '.')
67                         continue;
68
69                 if (c == '\0' || !isdigit(c))
70                         break;
71
72                 num *= 10;
73                 num += c - '0';
74         }
75
76         return num;
77 }
78
79
80 static udegree_t nmea_latitude(const char *plat, const char *phem)
81 {
82         int ns;
83         uint32_t lat;
84         uint32_t deg;
85         uint32_t min;
86
87         if (*plat == 0)
88         {
89         return 0;
90     }
91     if (*phem == 0)
92         {
93         return 0;
94     }
95
96     /* north lat is +, south lat is - */
97     if (*phem == 'N')
98         {
99         ns = 1;
100     }
101     else
102         {
103         ns = -1;
104     }
105
106         lat = tokenToInt(plat);
107         deg = lat / 1000000;
108         min = lat - deg * 1000000;
109         lat = deg * 1000000 + ((min * 5) + 1) / 3;
110
111         return ns * lat;
112 }
113
114 static udegree_t nmea_longitude(const char *plot, const char *phem)
115 {
116         int ew;
117         uint32_t lot;
118         uint32_t deg;
119         uint32_t min;
120
121         if (*plot == 0)
122         {
123         return 0;
124     }
125     if (*phem == 0)
126         {
127         return 0;
128     }
129
130     /* west long is negative, east long is positive */
131     if (*phem == 'E')
132         {
133         ew = 1;
134     }
135     else {
136         ew = -1;
137     }
138
139         lot = tokenToInt(plot);
140         deg = lot / 1000000;
141         min = lot - deg * 1000000;
142         lot = deg * 1000000 + ((min * 5) + 1) / 3;
143
144         return ew  * lot;
145 }
146
147 static uint16_t nmea_altitude(const char *palt, const char *punits)
148 {
149         uint32_t alt;
150
151         if (*palt == 0)
152         {
153         return 0;
154     }
155
156         alt = tokenToInt(palt);
157
158     if (*punits == 'F')
159         {
160         /* convert to feet */
161         /* alt = alt * 3.2808399 */
162                 alt = alt * 3 +  /* 3.0 */
163                           (alt >> 2) + /* 0.25 */
164                           (alt >> 6) + /* 0.015625 */
165                           (alt >> 7) + /* 0.0078125 */
166                           (alt >> 8); /* 0,00390625 */
167
168     }
169
170         return alt;
171 }
172
173 static time_t timestampToSec(uint32_t time_stamp, uint32_t date_stamp)
174 {
175         struct tm t;
176         uint16_t msec;
177         uint16_t tmr[3];
178         uint16_t date[3];
179
180         memset(&t, 0, sizeof(t));
181         memset(&tmr, 0, sizeof(tmr));
182         memset(&date, 0, sizeof(date));
183
184         LOG_INFO("time_s[%u],date[%u]\n", time_stamp, date_stamp);
185         uint32_t res = time_stamp / 1000;
186         uint32_t all = time_stamp;
187         msec = all - res * 1000;
188         for (int i = 0; i < 3; i++)
189         {
190                 all = res;
191                 res = all / 100;
192                 tmr[i]  = all - res * 100;
193                 LOG_INFO("t[%d]%d\n", tmr[i],i);
194         }
195
196         t.tm_sec = tmr[0] + (ROUND_UP(msec, 1000) / 1000);
197         t.tm_min = tmr[1];
198         t.tm_hour = tmr[2];
199         t.tm_mday = 1;
200         t.tm_mon = 1;
201         t.tm_year = 70;
202
203         if (date_stamp)
204         {
205                 res = all = date_stamp;
206                 for (int i = 0; i < 3; i++)
207                 {
208                         all = res;
209                         res = all / 100;
210                         date[i]  = all - res * 100;
211                         LOG_INFO("d[%d]%d\n", date[i],i);
212                 }
213                 t.tm_mday = date[2];
214                 t.tm_mon = date[1] - 1; // time struct count month from 0 to 11;
215                 // we should specific number of years from 1900, but the year field
216                 // is only two cipher, so we sum 100 (2000 - 1900)..
217                 t.tm_year = date[0] + 100;
218         }
219         LOG_INFO("times=%d,%d,%d,%d,%d,%d\n",t.tm_sec, t.tm_min, t.tm_hour, t.tm_year, t.tm_mon, t.tm_mday);
220
221         return  mktime(&t);
222 }
223
224
225 /**
226  * standard GPGGA sentence parser
227  */
228 int nmea_gpgga(nmeap_context_t *context, nmeap_sentence_t *sentence)
229 {
230         /*
231          * get pointer to sentence data
232          */
233         NmeaGga *gga = (NmeaGga *)sentence->data;
234
235         /*
236          * if there is a data element, extract data from the tokens
237          */
238         if (gga != 0)
239         {
240                 gga->latitude   = nmea_latitude(context->token[2],context->token[3]);
241                 gga->longitude  = nmea_longitude(context->token[4],context->token[5]);
242                 gga->altitude   = nmea_altitude(context->token[9],context->token[10]);
243                 gga->time       = timestampToSec(tokenToInt(context->token[1]), 0);
244                 gga->satellites = tokenToInt(context->token[7]);
245                 gga->quality    = tokenToInt(context->token[6]);
246                 gga->hdop       = tokenToInt(context->token[8]);
247                 gga->geoid      = nmea_altitude(context->token[11],context->token[12]);
248
249         }
250
251
252         /*
253          * if the sentence has a callout, call it
254          */
255         if (sentence->callout != 0)
256                 (*sentence->callout)(context, gga, context->user_data);
257
258         return NMEA_GPGGA;
259 }
260
261 /**
262  * standard GPRMCntence parser
263  */
264 int nmea_gprmc(nmeap_context_t *context, nmeap_sentence_t *sentence)
265 {
266
267     /*
268          * get pointer to sentence data
269          */
270     NmeaRmc *rmc = (NmeaRmc *)sentence->data;
271
272         /*
273          * if there is a data element, use it
274          */
275         if (rmc != 0)
276         {
277                 /*
278                  * extract data from the tokens
279                  */
280                 rmc->time       = timestampToSec(tokenToInt(context->token[1]), tokenToInt(context->token[9]));
281                 rmc->warn       = *context->token[2];
282                 rmc->latitude   = nmea_latitude(context->token[3],context->token[4]);
283                 rmc->longitude  = nmea_longitude(context->token[5],context->token[6]);
284                 rmc->speed      = tokenToInt(context->token[7]);
285                 rmc->course     = tokenToInt(context->token[8]);
286                 rmc->mag_var    = tokenToInt(context->token[10]);
287         }
288
289     /*
290          * if the sentence has a callout, call it
291          */
292     if (sentence->callout != 0)
293         (*sentence->callout)(context, rmc, context->user_data);
294
295     return NMEA_GPRMC;
296 }
297
298
299 /**
300  * standard GPVTG sentence parser
301  */
302 int nmea_gpvtg(nmeap_context_t *context, nmeap_sentence_t *sentence)
303 {
304
305     /*
306          * get pointer to sentence data
307          */
308     NmeaVtg *vtg = (NmeaVtg *)sentence->data;
309
310         /*
311          * if there is a data element, use it
312          */
313         if (vtg != 0)
314         {
315                 /*
316                  * extract data from the tokens
317                  */
318                 vtg->track_good  = tokenToInt(context->token[1]);
319                 vtg->knot_speed  = tokenToInt(context->token[5]);
320                 vtg->km_speed    = tokenToInt(context->token[7]);
321         }
322
323     /*
324          * if the sentence has a callout, call it
325          */
326     if (sentence->callout != 0)
327         (*sentence->callout)(context, vtg, context->user_data);
328
329     return NMEA_GPVTG;
330 }
331
332 /**
333  * standard GPGDSV sentence parser
334  */
335 int nmea_gpgsv(nmeap_context_t *context, nmeap_sentence_t *sentence)
336 {
337
338     /*
339          * get pointer to sentence data
340          */
341     NmeaGsv *gsv = (NmeaGsv *)sentence->data;
342
343         /*
344          * if there is a data element, use it
345          */
346         if (gsv != 0)
347         {
348                 /*
349                  * extract data from the tokens
350                  */
351                 gsv->tot_message     = tokenToInt(context->token[1]);
352                 gsv->message_num     = tokenToInt(context->token[2]);
353                 gsv->tot_svv         = tokenToInt(context->token[3]);
354                 gsv->sv_prn          = tokenToInt(context->token[4]);
355                 gsv->elevation       = tokenToInt(context->token[5]);
356                 gsv->azimut          = tokenToInt(context->token[6]);
357                 gsv->snr             = tokenToInt(context->token[7]);
358                 gsv->sv_prn2         = tokenToInt(context->token[8]);
359                 gsv->elevation2      = tokenToInt(context->token[9]);
360                 gsv->azimut2         = tokenToInt(context->token[10]);
361                 gsv->snr2            = tokenToInt(context->token[11]);
362                 gsv->sv_prn3         = tokenToInt(context->token[12]);
363                 gsv->elevation3      = tokenToInt(context->token[13]);
364                 gsv->azimut3         = tokenToInt(context->token[14]);
365                 gsv->snr3            = tokenToInt(context->token[15]);
366                 gsv->sv_prn4         = tokenToInt(context->token[16]);
367                 gsv->elevation4      = tokenToInt(context->token[17]);
368                 gsv->azimut4         = tokenToInt(context->token[18]);
369                 gsv->snr4            = tokenToInt(context->token[19]);
370         }
371
372
373     /*
374          * if the sentence has a callout, call it
375          */
376     if (sentence->callout != 0)
377         (*sentence->callout)(context,gsv,context->user_data);
378
379     return NMEA_GPGSV;
380 }
381
382 void nmea_poll(nmeap_context_t *context, KFile *channel)
383 {
384         int c;
385         while ((c = kfile_getc(channel)) != EOF)
386         {
387                 if (nmeap_parse(context, c) == -1)
388                         break;
389         }
390 }
391