ccNOos  v0.0.0
Build Portable Microcontroller Applications!
NEO_LEA_M8T.h
Go to the documentation of this file.
1 /** \file NEO_LEA_M8T.h
2 * \brief <a href="https://www.inmechasol.org/" target="_blank">IMS</a>:
3  <a href="https://github.com/InMechaSol/ccNOos" target="_blank">ccNOos</a>,
4  Declarations for straight C and C++
5 
6  Copyright 2021 <a href="https://www.inmechasol.org/" target="_blank">InMechaSol, Inc</a>
7 
8  Licensed under the Apache License, Version 2.0(the "License");
9  you may not use this file except in compliance with the License.
10  You may obtain a copy of the License at
11 
12  http://www.apache.org/licenses/LICENSE-2.0
13 
14  Unless required by applicable law or agreed to in writing, software
15  distributed under the License is distributed on an "AS IS" BASIS,
16  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  See the License for the specific language governing permissions and
18  limitations under the License.
19 
20 Notes:
21  (.c includes .h) - for straight C or
22  (.cpp includes .c which includes .h) - for C++ wrapped straight C
23  *Always compiled to a single compilation unit, either C or CPP, not both
24 
25 */
26 
27 #ifndef NEOLEAM8T_H__
28 #define NEOLEAM8T_H__
29 
30 #include "console_menu.h"
31 
32 
33 struct gpsData
34 {
36  I_16 day, month, year;
37 };
38 
40 
41 UI_8 tryParseGPSData(char* gpsStringin, struct gpsData* gpsDataPtr);
42 
43 
44 
45 
46 #endif // NEOLEAM8T_H__
console_menu.h
IMS: ccNOos, Declarations for straight C and C++
gpsData::day
I_16 day
Definition: NEO_LEA_M8T.h:36
gpsData::year
I_16 year
Definition: NEO_LEA_M8T.h:36
tryParseGPSData
UI_8 tryParseGPSData(char *gpsStringin, struct gpsData *gpsDataPtr)
Definition: NEO_LEA_M8T.c:227
gpsData::utctime
float utctime
Definition: NEO_LEA_M8T.h:35
gpsData::altitude
float altitude
Definition: NEO_LEA_M8T.h:35
gpsData::longitude
float longitude
Definition: NEO_LEA_M8T.h:35
gpsData::month
I_16 month
Definition: NEO_LEA_M8T.h:36
gpsData::lattitude
float lattitude
Definition: NEO_LEA_M8T.h:35
gpsData
Definition: NEO_LEA_M8T.h:34
createGPSDataStruct
struct gpsData createGPSDataStruct()
Definition: NEO_LEA_M8T.c:29