Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added external define option to GPSfix_cfg.h #94

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/GPSfix_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Enable/disable the storage for the members of a fix.
*
* Disabling a member prevents it from being parsed from a received message.
* The disabled member cannot be accessed or stored, and its validity flag
* The disabled member cannot be accessed or stored, and its validity flag
* would not be available. It will not be declared, and code that uses that
* member will not compile.
*
Expand All @@ -32,6 +32,8 @@
* See also note regarding the DOP members, below.
*
*/
#ifndef NEOGPS_EXTERNAL_GPS_FIX_CFG_DEFINES /* Allows these defines to be changed in your own code, so there will
be no need to change this library directly (like when using "lib_deps" in PlatformIO) */

#define GPS_FIX_DATE
#define GPS_FIX_TIME
Expand All @@ -54,3 +56,5 @@
//#define GPS_FIX_GEOID_HEIGHT

#endif

#endif