├── .gitattributes ├── CMakeLists.txt ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── examples ├── Example10_SetRoverMode │ └── Example10_SetRoverMode.ino ├── Example11_UsbNMEA │ └── Example11_UsbNMEA.ino ├── Example12_FactoryReset │ └── Example12_FactoryReset.ino ├── Example13_SendCommand │ └── Example13_SendCommand.ino ├── Example14_SetPPS │ └── Example14_SetPPS.ino ├── Example15_QueryDevice │ └── Example15_QueryDevice.ino ├── Example16_PollForValidRTCMMessages │ └── Example16_PollForValidRTCMMessages.ino ├── Example17_Parser │ └── Example17_Parser.ino ├── Example18_CheckConfig │ └── Example18_CheckConfig.ino ├── Example19_Enable_Galileo_HAS │ └── Example19_Enable_Galileo_HAS.ino ├── Example1_PositionVelocityTime │ └── Example1_PositionVelocityTime.ino ├── Example20_NTRIP_Client │ ├── Example20_NTRIP_Client.ino │ └── secrets.h ├── Example21_NTRIP_Server │ ├── Example21_NTRIP_Server.ino │ └── secrets.h ├── Example2_DirectConnect │ └── Example2_DirectConnect.ino ├── Example3_ECEFAndStats │ └── Example3_ECEFAndStats.ino ├── Example4_EnableNMEA_5Hz │ └── Example4_EnableNMEA_5Hz.ino ├── Example5_EnableRTCM │ └── Example5_EnableRTCM.ino ├── Example6_AverageBase │ └── Example6_AverageBase.ino ├── Example7_FixedBase │ └── Example7_FixedBase.ino ├── Example8_SetConstellations │ └── Example8_SetConstellations.ino └── Example9_SignalElevation │ └── Example9_SignalElevation.ino ├── keywords.txt ├── library.properties └── src ├── SparkFun_Unicore_GNSS_Arduino_Library.cpp ├── SparkFun_Unicore_GNSS_Arduino_Library.h └── unicore_structs.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/.gitattributes -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/README.md -------------------------------------------------------------------------------- /examples/Example10_SetRoverMode/Example10_SetRoverMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example10_SetRoverMode/Example10_SetRoverMode.ino -------------------------------------------------------------------------------- /examples/Example11_UsbNMEA/Example11_UsbNMEA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example11_UsbNMEA/Example11_UsbNMEA.ino -------------------------------------------------------------------------------- /examples/Example12_FactoryReset/Example12_FactoryReset.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example12_FactoryReset/Example12_FactoryReset.ino -------------------------------------------------------------------------------- /examples/Example13_SendCommand/Example13_SendCommand.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example13_SendCommand/Example13_SendCommand.ino -------------------------------------------------------------------------------- /examples/Example14_SetPPS/Example14_SetPPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example14_SetPPS/Example14_SetPPS.ino -------------------------------------------------------------------------------- /examples/Example15_QueryDevice/Example15_QueryDevice.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example15_QueryDevice/Example15_QueryDevice.ino -------------------------------------------------------------------------------- /examples/Example16_PollForValidRTCMMessages/Example16_PollForValidRTCMMessages.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example16_PollForValidRTCMMessages/Example16_PollForValidRTCMMessages.ino -------------------------------------------------------------------------------- /examples/Example17_Parser/Example17_Parser.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example17_Parser/Example17_Parser.ino -------------------------------------------------------------------------------- /examples/Example18_CheckConfig/Example18_CheckConfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example18_CheckConfig/Example18_CheckConfig.ino -------------------------------------------------------------------------------- /examples/Example19_Enable_Galileo_HAS/Example19_Enable_Galileo_HAS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example19_Enable_Galileo_HAS/Example19_Enable_Galileo_HAS.ino -------------------------------------------------------------------------------- /examples/Example1_PositionVelocityTime/Example1_PositionVelocityTime.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example1_PositionVelocityTime/Example1_PositionVelocityTime.ino -------------------------------------------------------------------------------- /examples/Example20_NTRIP_Client/Example20_NTRIP_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example20_NTRIP_Client/Example20_NTRIP_Client.ino -------------------------------------------------------------------------------- /examples/Example20_NTRIP_Client/secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example20_NTRIP_Client/secrets.h -------------------------------------------------------------------------------- /examples/Example21_NTRIP_Server/Example21_NTRIP_Server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example21_NTRIP_Server/Example21_NTRIP_Server.ino -------------------------------------------------------------------------------- /examples/Example21_NTRIP_Server/secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example21_NTRIP_Server/secrets.h -------------------------------------------------------------------------------- /examples/Example2_DirectConnect/Example2_DirectConnect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example2_DirectConnect/Example2_DirectConnect.ino -------------------------------------------------------------------------------- /examples/Example3_ECEFAndStats/Example3_ECEFAndStats.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example3_ECEFAndStats/Example3_ECEFAndStats.ino -------------------------------------------------------------------------------- /examples/Example4_EnableNMEA_5Hz/Example4_EnableNMEA_5Hz.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example4_EnableNMEA_5Hz/Example4_EnableNMEA_5Hz.ino -------------------------------------------------------------------------------- /examples/Example5_EnableRTCM/Example5_EnableRTCM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example5_EnableRTCM/Example5_EnableRTCM.ino -------------------------------------------------------------------------------- /examples/Example6_AverageBase/Example6_AverageBase.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example6_AverageBase/Example6_AverageBase.ino -------------------------------------------------------------------------------- /examples/Example7_FixedBase/Example7_FixedBase.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example7_FixedBase/Example7_FixedBase.ino -------------------------------------------------------------------------------- /examples/Example8_SetConstellations/Example8_SetConstellations.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example8_SetConstellations/Example8_SetConstellations.ino -------------------------------------------------------------------------------- /examples/Example9_SignalElevation/Example9_SignalElevation.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/examples/Example9_SignalElevation/Example9_SignalElevation.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/library.properties -------------------------------------------------------------------------------- /src/SparkFun_Unicore_GNSS_Arduino_Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/src/SparkFun_Unicore_GNSS_Arduino_Library.cpp -------------------------------------------------------------------------------- /src/SparkFun_Unicore_GNSS_Arduino_Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/src/SparkFun_Unicore_GNSS_Arduino_Library.h -------------------------------------------------------------------------------- /src/unicore_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library/HEAD/src/unicore_structs.h --------------------------------------------------------------------------------