Skip to content

Commit 16f2025

Browse files
authored
Garmin FIT SDK 21.126.0
Garmin FIT SDK 21.126.0
2 parents 18714b7 + 83a9eb3 commit 16f2025

File tree

318 files changed

+1510
-643
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

318 files changed

+1510
-643
lines changed

Cookbook/ActivityDecode/.vscode/launch.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
{
2-
// Use IntelliSense to find out which attributes exist for C# debugging
3-
// Use hover for the description of the existing attributes
4-
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5-
"version": "0.2.0",
6-
"configurations": [
2+
// Use IntelliSense to find out which attributes exist for C# debugging
3+
// Use hover for the description of the existing attributes
4+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5+
"version": "0.2.0",
6+
"configurations": [
77
{
88
"name": ".NET Core Launch (console)",
99
"type": "coreclr",
1010
"request": "launch",
1111
"preLaunchTask": "build",
1212
// If you have changed target frameworks, make sure to update the program path.
1313
"program": "${workspaceFolder}/bin/Debug/netcoreapp3.1/ActivityDecode.dll",
14-
"args": ["${workspaceFolder}/Activity.fit"],
14+
"args": [
15+
"${workspaceFolder}/Activity.fit"
16+
],
1517
"cwd": "${workspaceFolder}",
1618
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
1719
"console": "internalConsole",

Cookbook/ActivityEncode/Program.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,17 @@ class Program
2020
{
2121
static void Main(string[] args)
2222
{
23-
CreateTimeBasedActivity();
24-
CreateLapSwimActivity();
23+
try
24+
{
25+
CreateTimeBasedActivity();
26+
CreateLapSwimActivity();
27+
}
28+
catch (Exception ex)
29+
{
30+
Console.WriteLine($"Exception {ex}");
31+
}
2532
}
33+
2634
static public void CreateTimeBasedActivity()
2735
{
2836
const double TwoPI = Math.PI * 2.0;

Cookbook/CourseEncode/Program.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,14 @@ class Program
2222

2323
static void Main(string[] args)
2424
{
25-
EncodeCourse();
25+
try
26+
{
27+
EncodeCourse();
28+
}
29+
catch (Exception ex)
30+
{
31+
Console.WriteLine($"Exception {ex}");
32+
}
2633
}
2734

2835
public static void EncodeCourse()

Cookbook/WorkoutEncode/Program.cs

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,17 @@ class Program
2121
{
2222
static void Main(string[] args)
2323
{
24-
CreateBikeTempoWorkout();
25-
CreateRun800RepeatsWorkout();
26-
CreateCustomTargetValuesWorkout();
27-
CreatePoolSwimWorkout();
24+
try
25+
{
26+
CreateBikeTempoWorkout();
27+
CreateRun800RepeatsWorkout();
28+
CreateCustomTargetValuesWorkout();
29+
CreatePoolSwimWorkout();
30+
}
31+
catch (Exception ex)
32+
{
33+
Console.WriteLine($"Exception {ex}");
34+
}
2835
}
2936

3037
static void CreateBikeTempoWorkout()

Dynastream/Fit/AccumulatedField.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Transfer (FIT) Protocol License.
77
/////////////////////////////////////////////////////////////////////////////////////////////
88
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
9-
// Profile Version = 21.120Release
10-
// Tag = production/release/21.120.00-0-g2d77811
9+
// Profile Version = 21.126.0Release
10+
// Tag = production/release/21.126.0-0-g0576dfe
1111
/////////////////////////////////////////////////////////////////////////////////////////////
1212

1313
#endregion

Dynastream/Fit/Accumulator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Transfer (FIT) Protocol License.
77
/////////////////////////////////////////////////////////////////////////////////////////////
88
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
9-
// Profile Version = 21.120Release
10-
// Tag = production/release/21.120.00-0-g2d77811
9+
// Profile Version = 21.126.0Release
10+
// Tag = production/release/21.126.0-0-g0576dfe
1111
/////////////////////////////////////////////////////////////////////////////////////////////
1212

1313
#endregion

Dynastream/Fit/BufferedMesgBroadcaster.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Transfer (FIT) Protocol License.
77
/////////////////////////////////////////////////////////////////////////////////////////////
88
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
9-
// Profile Version = 21.120Release
10-
// Tag = production/release/21.120.00-0-g2d77811
9+
// Profile Version = 21.126.0Release
10+
// Tag = production/release/21.126.0-0-g0576dfe
1111
/////////////////////////////////////////////////////////////////////////////////////////////
1212

1313
#endregion

Dynastream/Fit/Crc.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Transfer (FIT) Protocol License.
77
/////////////////////////////////////////////////////////////////////////////////////////////
88
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
9-
// Profile Version = 21.120Release
10-
// Tag = production/release/21.120.00-0-g2d77811
9+
// Profile Version = 21.126.0Release
10+
// Tag = production/release/21.126.0-0-g0576dfe
1111
/////////////////////////////////////////////////////////////////////////////////////////////
1212

1313
#endregion

Dynastream/Fit/Decode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Transfer (FIT) Protocol License.
77
/////////////////////////////////////////////////////////////////////////////////////////////
88
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
9-
// Profile Version = 21.120Release
10-
// Tag = production/release/21.120.00-0-g2d77811
9+
// Profile Version = 21.126.0Release
10+
// Tag = production/release/21.126.0-0-g0576dfe
1111
/////////////////////////////////////////////////////////////////////////////////////////////
1212

1313
#endregion

Dynastream/Fit/DecodeMode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Transfer (FIT) Protocol License.
77
/////////////////////////////////////////////////////////////////////////////////////////////
88
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
9-
// Profile Version = 21.120Release
10-
// Tag = production/release/21.120.00-0-g2d77811
9+
// Profile Version = 21.126.0Release
10+
// Tag = production/release/21.126.0-0-g0576dfe
1111
/////////////////////////////////////////////////////////////////////////////////////////////
1212

1313
#endregion

0 commit comments

Comments
 (0)