Skip to content

Commit

Permalink
Merge pull request #96 from huskyroboticsteam/RoverUpdate
Browse files Browse the repository at this point in the history
Rover update
  • Loading branch information
Obbay2 authored May 25, 2019
2 parents a362de7 + 5c0f026 commit bbcf26b
Show file tree
Hide file tree
Showing 70 changed files with 1,687 additions and 464 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ packages
*.pdb

*.o

MigrationBackup
7 changes: 4 additions & 3 deletions Arm/ArmBaseStation/ArmControl/ArmControl.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand All @@ -9,8 +9,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>HuskyRobotics.Arm</RootNamespace>
<AssemblyName>HuskyRobotics.Arm</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -45,7 +46,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.ValueTuple">
<Version>4.4.0</Version>
<Version>4.5.0</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
2 changes: 2 additions & 0 deletions BaseStation/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
*.suo
*.pdb

/MigrationBackup/

#Don't include library binaries or NuGet package binaries
/packages/
/libraries/
Expand Down
18 changes: 0 additions & 18 deletions BaseStation/EntryPoint/App.config

This file was deleted.

50 changes: 22 additions & 28 deletions BaseStation/EntryPoint/EntryPoint.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<OutputType>Exe</OutputType>
<RootNamespace>HuskyRobotics.BaseStation</RootNamespace>
<AssemblyName>BaseStation</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
Expand Down Expand Up @@ -59,10 +59,6 @@
<PropertyGroup>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="StartBaseStation.cs" />
</ItemGroup>
Expand All @@ -85,20 +81,9 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="BBBCSIO, Version=1.6.0.0, Culture=neutral, processorArchitecture=x86">
<HintPath>..\packages\HuskyRobotics.Scarlet.0.5.1\lib\BBBCSIO.dll</HintPath>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="SharpDX.DirectInput, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b4dcf0f35e5521f1, processorArchitecture=MSIL">
<HintPath>..\packages\SharpDX.DirectInput.4.2.0\lib\net45\SharpDX.DirectInput.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Half, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\HuskyRobotics.Scarlet.0.5.1\lib\System.Half.dll</HintPath>
</Reference>
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
</Reference>
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
Expand All @@ -119,16 +104,25 @@
<ItemGroup>
<Content Include="huskyrobotics.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HuskyRobotics.Scarlet">
<Version>0.5.2</Version>
</PackageReference>
<PackageReference Include="SharpDX.DirectInput">
<Version>4.2.0</Version>
</PackageReference>
<PackageReference Include="SharpDX.XInput">
<Version>4.2.0</Version>
</PackageReference>
<PackageReference Include="System.ValueTuple">
<Version>4.5.0</Version>
</PackageReference>
<PackageReference Include="WpfAnimatedGif">
<Version>1.4.18</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="AfterBuild">
<!-- Custom build tasks -->
<ItemGroup>
<IconFiles Include="$(SolutionDir)\UserInterface\Icons\*.*" />
<LibraryBinaries Include="$(SolutionDir)\libraries\**\*.*" />
</ItemGroup>
<Copy SkipUnchangedFiles="true" SourceFiles="@(IconFiles)" DestinationFolder="$(OutputPath)\Icons" />
<!-- Copy the map icons -->
<Copy SkipUnchangedFiles="true" SourceFiles="@(LibraryBinaries)" DestinationFolder="$(OutputPath)" />
<!-- Copy library binaries -->
</Target>
<PropertyGroup>
<PostBuildEvent>xcopy /E /Y /I /Q "$(SolutionDir)Icons" "$(TargetDir)Icons"</PostBuildEvent>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion BaseStation/EntryPoint/StartBaseStation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private static void Update()
{
PacketSender.Update();
CameraControl.Update();
Thread.Sleep(100);
Thread.Sleep(150);
}

private static volatile bool exit;
Expand Down
18 changes: 0 additions & 18 deletions BaseStation/EntryPoint/app.config

This file was deleted.

8 changes: 0 additions & 8 deletions BaseStation/EntryPoint/packages.config

This file was deleted.

Binary file added BaseStation/Icons/NewRoverIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/NewRoverIcon45.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/RealRoverIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/RoverIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/malamute.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon30.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon40.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon50.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon80.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/pointers/NewRoverIcon90.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added BaseStation/Icons/waypoint.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 0 additions & 6 deletions BaseStation/PTZCamera/App.config

This file was deleted.

29 changes: 9 additions & 20 deletions BaseStation/PTZCamera/PTZCamera.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<OutputType>Library</OutputType>
<RootNamespace>PTZCamera</RootNamespace>
<AssemblyName>PTZCamera</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
Expand Down Expand Up @@ -36,23 +36,8 @@
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="BBBCSIO, Version=1.6.0.0, Culture=neutral, processorArchitecture=x86">
<HintPath>..\packages\HuskyRobotics.Scarlet.0.5.1\lib\BBBCSIO.dll</HintPath>
</Reference>
<Reference Include="Scarlet, Version=0.5.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\HuskyRobotics.Scarlet.0.5.1\lib\Scarlet.dll</HintPath>
</Reference>
<Reference Include="SharpDX, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b4dcf0f35e5521f1, processorArchitecture=MSIL">
<HintPath>..\packages\SharpDX.4.2.0\lib\net45\SharpDX.dll</HintPath>
</Reference>
<Reference Include="SharpDX.XInput, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b4dcf0f35e5521f1, processorArchitecture=MSIL">
<HintPath>..\packages\SharpDX.XInput.4.2.0\lib\net45\SharpDX.XInput.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Half, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\HuskyRobotics.Scarlet.0.5.1\lib\System.Half.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
Expand All @@ -65,15 +50,19 @@
<Compile Include="PTZCamera.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Utilities\Utilities.csproj">
<Project>{a6dfdff4-614f-4225-8f75-c81c6765f23e}</Project>
<Name>Utilities</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="HuskyRobotics.Scarlet">
<Version>0.5.2</Version>
</PackageReference>
<PackageReference Include="SharpDX.XInput">
<Version>4.2.0</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
6 changes: 0 additions & 6 deletions BaseStation/PTZCamera/packages.config

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<OutputType>Exe</OutputType>
<RootNamespace>SensorDiagnosticsServer</RootNamespace>
<AssemblyName>SensorDiagnosticsServer</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
Expand All @@ -33,19 +33,10 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="BBBCSIO, Version=1.6.0.0, Culture=neutral, processorArchitecture=x86">
<HintPath>..\..\packages\HuskyRobotics.Scarlet.0.5.1\lib\BBBCSIO.dll</HintPath>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="Scarlet, Version=0.5.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\HuskyRobotics.Scarlet.0.5.1\lib\Scarlet.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Half, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\HuskyRobotics.Scarlet.0.5.1\lib\System.Half.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
Expand All @@ -58,15 +49,16 @@
<Compile Include="Test_Server.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SensorRealTimeGraph\SensorRealTimeGraph.csproj">
<Project>{89AF1702-7D86-4364-91B1-F1A027AF8AA8}</Project>
<Name>SensorRealTimeGraph</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="HuskyRobotics.Scarlet">
<Version>0.5.2</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

This file was deleted.

6 changes: 0 additions & 6 deletions BaseStation/SensorDiagnostics/SensorHistoryGraph/App.config

This file was deleted.

Loading

0 comments on commit bbcf26b

Please sign in to comment.