Skip to content

Commit

Permalink
feat: Adds paths to reboot processor and restart program
Browse files Browse the repository at this point in the history
  • Loading branch information
ndorin committed Jun 6, 2024
1 parent 574089e commit b17392a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions 3-series/MobileControlSystemController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2416,6 +2416,12 @@ private void ParseStreamRx(string messageText)
case "/system/clientJoined":
HandleClientJoined(message.Content);
break;
case "/system/reboot":
SystemMonitorController.ProcessorReboot();
break;
case "/system/programReset":
SystemMonitorController.ProgramReset(InitialParametersClass.ApplicationNumber);
break;
case "raw":
var wrapper = message.Content.ToObject<DeviceActionWrapper>();
DeviceJsonApi.DoDeviceAction(wrapper);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<DefineConstants>TRACE;SERIES4</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PepperDashEssentials" Version="2.0.0-alpha-2512" />
<PackageReference Include="PepperDashEssentials" Version="2.0.0-alpha-2520" />
<PackageReference Include="WebSocketSharp-netstandard" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@
<Folder Include="SIMPLJoinMaps\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="PepperDashEssentials" Version="2.0.0-alpha-2512" />
<PackageReference Include="PepperDashEssentials" Version="2.0.0-alpha-2520" />
</ItemGroup>
</Project>

0 comments on commit b17392a

Please sign in to comment.