Skip to content

Commit 53dc7aa

Browse files
authored
Merge pull request #19 from StephenHidem/Documentation
Documentation
2 parents cb0eeb0 + f94302d commit 53dc7aa

File tree

247 files changed

+381
-1069
lines changed

Some content is hidden

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

247 files changed

+381
-1069
lines changed

AntPlus.UnitTests/AntDeviceCollectionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ private AntDeviceCollection CreateAntDeviceCollection()
3535
return new AntDeviceCollection(
3636
mockAntRadio.Object,
3737
null,
38-
2000);
38+
3000);
3939
}
4040

4141
[TestMethod]

AntPlus/AntPlus.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<GenerateDocumentationFile>True</GenerateDocumentationFile>
66
<RootNamespace>SmallEarthTech.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
7-
<AssemblyVersion>2.1.0.0</AssemblyVersion>
7+
<AssemblyVersion>2.2.0.0</AssemblyVersion>
88
</PropertyGroup>
99

1010
<ItemGroup>
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<topic id="3c9ce4f9-cb16-44d2-84c4-3981f14f2161" revisionNumber="1">
3+
<developerConceptualDocument xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink">
4+
<introduction>
5+
<para>Version 2.2.0.0 was released on August 28, 2023.</para>
6+
</introduction>
7+
<section>
8+
<title>Changes in This Release</title>
9+
<content>
10+
<list class="bullet">
11+
<listItem>
12+
<para>Removed unneeded collection classes.</para>
13+
</listItem>
14+
<listItem>
15+
<para>Updated unit tests.</para>
16+
</listItem>
17+
<listItem>
18+
<para>Added pedal contribution property to the StandardPowerSensor class.</para>
19+
</listItem>
20+
<listItem>
21+
<para>AntDeviceCollection - available ANT channels are assigned on a round robin basis as sensors are created.</para>
22+
</listItem>
23+
<listItem>
24+
<para>Use lock for SendExtAcknowledgedData method to grant mutually exclusive access to the underlying channel.</para>
25+
</listItem>
26+
</list>
27+
</content>
28+
</section>
29+
<relatedTopics>
30+
<link xlink:href="4a8ae1c2-5d9b-4e27-bd18-34b479401b65" />
31+
</relatedTopics>
32+
</developerConceptualDocument>
33+
</topic>

Documentation/ContentLayout.content

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@
1919
<HelpKeyword index="K" term="version, 2.0.0.0" />
2020
</HelpKeywords>
2121
</Topic>
22-
<Topic id="07393f6f-e5a8-47d3-bbcc-6c6dd391afb9" visible="True" isSelected="true" title="Version 2.1.0.0" />
22+
<Topic id="07393f6f-e5a8-47d3-bbcc-6c6dd391afb9" visible="True" title="Version 2.1.0.0">
23+
<HelpKeywords>
24+
<HelpKeyword index="K" term="version, 2.1.0.0" />
25+
</HelpKeywords>
26+
</Topic>
27+
<Topic id="3c9ce4f9-cb16-44d2-84c4-3981f14f2161" visible="True" isSelected="true" title="Version 2.2.0.0">
28+
<HelpKeywords>
29+
<HelpKeyword index="K" term="version, 2.2.0.0" />
30+
</HelpKeywords>
31+
</Topic>
2332
</Topic>
2433
</Topics>

Documentation/Documentation.shfbproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
<Folder Include="media" />
102102
</ItemGroup>
103103
<ItemGroup>
104+
<None Include="Content\VersionHistory\v2.2.0.0.aml" />
104105
<None Include="Content\VersionHistory\v2.1.0.0.aml" />
105106
<None Include="Content\VersionHistory\v1.0.0.0.aml" />
106107
<None Include="Content\VersionHistory\v2.0.0.0.aml" />

Examples/WpfUsbStickApp/Controls/BicycleCrankTorqueControl.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
xmlns:uc="clr-namespace:WpfUsbStickApp.Controls"
77
xmlns:dp="clr-namespace:SmallEarthTech.AntPlus.DeviceProfiles.BicyclePower;assembly=AntPlus"
88
d:DataContext="{d:DesignInstance Type=dp:Bicycle}"
9-
mc:Ignorable="d"
10-
d:DesignHeight="450" d:DesignWidth="800" d:Background="White">
9+
mc:Ignorable="d"
10+
d:DesignHeight="227.184" d:DesignWidth="252.427" d:Background="White">
1111
<Grid>
1212
<StackPanel>
1313
<GroupBox Header="Crank Torque">

docs/fti/FTI_100.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/fti/FTI_101.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/fti/FTI_102.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/fti/FTI_103.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)