Skip to content

Commit

Permalink
Merge pull request #138 from PepperDash/hotfix/vc4-simpl-json-evaluat…
Browse files Browse the repository at this point in the history
…eFile

Hotfix/vc4 simpl json evaluate file
  • Loading branch information
ndorin authored Jun 15, 2022
2 parents e1c63f4 + 33c3aa9 commit b133a27
Show file tree
Hide file tree
Showing 2 changed files with 288 additions and 181 deletions.
32 changes: 31 additions & 1 deletion Pepperdash Core/Pepperdash Core/JsonToSimpl/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,25 @@ public class JsonToSimplConstants
/// </summary>
public const ushort JsonIsValidBoolChange = 2;

/// <summary>
/// Reports the if the device is 3-series compatible
/// </summary>
public const ushort ProgramCompatibility3SeriesChange = 3;

/// <summary>
/// Reports the if the device is 4-series compatible
/// </summary>
public const ushort ProgramCompatibility4SeriesChange = 4;

/// <summary>
/// Reports the device platform enum value
/// </summary>
public const ushort DevicePlatformValueChange = 5;

/// <summary>
///
/// </summary>
public const ushort UshortValueChange = 101;
public const ushort UshortValueChange = 101;

/// <summary>
///
Expand All @@ -46,6 +61,21 @@ public class JsonToSimplConstants
///
/// </summary>
public const ushort FilePathResolvedChange = 205;

/// <summary>
/// Reports the root directory change
/// </summary>
public const ushort RootDirectoryChange = 206;

/// <summary>
/// Reports the room ID change
/// </summary>
public const ushort RoomIdChange = 207;

/// <summary>
/// Reports the room name change
/// </summary>
public const ushort RoomNameChange = 208;
}

/// <summary>
Expand Down
Loading

0 comments on commit b133a27

Please sign in to comment.