├── COPYING ├── HISTORY ├── README ├── src ├── Fit2TcxConverter.cpp ├── Fit2TcxConverter.h ├── Makefile.in ├── TcxBuilder │ ├── TcxActivities.cpp │ ├── TcxActivities.h │ ├── TcxActivity.cpp │ ├── TcxActivity.h │ ├── TcxAuthor.cpp │ ├── TcxAuthor.h │ ├── TcxBase.cpp │ ├── TcxBase.h │ ├── TcxCreator.cpp │ ├── TcxCreator.h │ ├── TcxLap.cpp │ ├── TcxLap.h │ ├── TcxTrack.cpp │ ├── TcxTrack.h │ ├── TcxTrackpoint.cpp │ ├── TcxTrackpoint.h │ └── TcxTypes.h ├── config.h.in ├── configManager.cpp ├── configManager.h ├── configure ├── configure.ac ├── deviceManager.cpp ├── deviceManager.h ├── edge305Device.cpp ├── edge305Device.h ├── fit │ ├── fitDefines.hpp │ ├── fitFileException.hpp │ ├── fitMsg.hpp │ ├── fitMsg_Activity.hpp │ ├── fitMsg_DeviceInfo.hpp │ ├── fitMsg_Event.hpp │ ├── fitMsg_File_Creator.hpp │ ├── fitMsg_File_ID.hpp │ ├── fitMsg_Lap.hpp │ ├── fitMsg_Listener.hpp │ ├── fitMsg_Record.hpp │ ├── fitMsg_Session.hpp │ ├── fitReader.cpp │ └── fitReader.hpp ├── garminFilebasedDevice.cpp ├── garminFilebasedDevice.h ├── gpsDevice.cpp ├── gpsDevice.h ├── gpsFunctions.h ├── log.cpp ├── log.h ├── main.cpp ├── messageBox.cpp ├── messageBox.h └── npapi │ ├── npapi.h │ ├── npfunctions.h │ ├── npruntime.h │ └── nptypes.h └── test.html /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/COPYING -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/HISTORY -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/README -------------------------------------------------------------------------------- /src/Fit2TcxConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/Fit2TcxConverter.cpp -------------------------------------------------------------------------------- /src/Fit2TcxConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/Fit2TcxConverter.h -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/TcxBuilder/TcxActivities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxActivities.cpp -------------------------------------------------------------------------------- /src/TcxBuilder/TcxActivities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxActivities.h -------------------------------------------------------------------------------- /src/TcxBuilder/TcxActivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxActivity.cpp -------------------------------------------------------------------------------- /src/TcxBuilder/TcxActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxActivity.h -------------------------------------------------------------------------------- /src/TcxBuilder/TcxAuthor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxAuthor.cpp -------------------------------------------------------------------------------- /src/TcxBuilder/TcxAuthor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxAuthor.h -------------------------------------------------------------------------------- /src/TcxBuilder/TcxBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxBase.cpp -------------------------------------------------------------------------------- /src/TcxBuilder/TcxBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxBase.h -------------------------------------------------------------------------------- /src/TcxBuilder/TcxCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxCreator.cpp -------------------------------------------------------------------------------- /src/TcxBuilder/TcxCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxCreator.h -------------------------------------------------------------------------------- /src/TcxBuilder/TcxLap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxLap.cpp -------------------------------------------------------------------------------- /src/TcxBuilder/TcxLap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxLap.h -------------------------------------------------------------------------------- /src/TcxBuilder/TcxTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxTrack.cpp -------------------------------------------------------------------------------- /src/TcxBuilder/TcxTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxTrack.h -------------------------------------------------------------------------------- /src/TcxBuilder/TcxTrackpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxTrackpoint.cpp -------------------------------------------------------------------------------- /src/TcxBuilder/TcxTrackpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxTrackpoint.h -------------------------------------------------------------------------------- /src/TcxBuilder/TcxTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/TcxBuilder/TcxTypes.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/configManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/configManager.cpp -------------------------------------------------------------------------------- /src/configManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/configManager.h -------------------------------------------------------------------------------- /src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/configure -------------------------------------------------------------------------------- /src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/configure.ac -------------------------------------------------------------------------------- /src/deviceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/deviceManager.cpp -------------------------------------------------------------------------------- /src/deviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/deviceManager.h -------------------------------------------------------------------------------- /src/edge305Device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/edge305Device.cpp -------------------------------------------------------------------------------- /src/edge305Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/edge305Device.h -------------------------------------------------------------------------------- /src/fit/fitDefines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitDefines.hpp -------------------------------------------------------------------------------- /src/fit/fitFileException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitFileException.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg_Activity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg_Activity.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg_DeviceInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg_DeviceInfo.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg_Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg_Event.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg_File_Creator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg_File_Creator.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg_File_ID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg_File_ID.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg_Lap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg_Lap.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg_Listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg_Listener.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg_Record.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg_Record.hpp -------------------------------------------------------------------------------- /src/fit/fitMsg_Session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitMsg_Session.hpp -------------------------------------------------------------------------------- /src/fit/fitReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitReader.cpp -------------------------------------------------------------------------------- /src/fit/fitReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/fit/fitReader.hpp -------------------------------------------------------------------------------- /src/garminFilebasedDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/garminFilebasedDevice.cpp -------------------------------------------------------------------------------- /src/garminFilebasedDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/garminFilebasedDevice.h -------------------------------------------------------------------------------- /src/gpsDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/gpsDevice.cpp -------------------------------------------------------------------------------- /src/gpsDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/gpsDevice.h -------------------------------------------------------------------------------- /src/gpsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/gpsFunctions.h -------------------------------------------------------------------------------- /src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/log.cpp -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/log.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/messageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/messageBox.cpp -------------------------------------------------------------------------------- /src/messageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/messageBox.h -------------------------------------------------------------------------------- /src/npapi/npapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/npapi/npapi.h -------------------------------------------------------------------------------- /src/npapi/npfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/npapi/npfunctions.h -------------------------------------------------------------------------------- /src/npapi/npruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/npapi/npruntime.h -------------------------------------------------------------------------------- /src/npapi/nptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/src/npapi/nptypes.h -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiesner/GarminPlugin/HEAD/test.html --------------------------------------------------------------------------------