Fixed connected enum; Call status header button

This commit is contained in:
Heath Volmer
2017-09-21 10:56:37 -06:00
parent ca3f6d4d14
commit 639e1810db
11 changed files with 36 additions and 28 deletions

View File

@@ -162,6 +162,14 @@ namespace PepperDash.Essentials.Core
tl.BooleanInput[sigNum].BoolValue = value;
}
/// <summary>
/// Helper method to set the value of a ushort Sig on TriList
/// </summary>
public static void SetUshort(this BasicTriList tl, uint sigNum, ushort value)
{
tl.UShortInput[sigNum].UShortValue = value;
}
/// <summary>
/// Helper method to set the value of a string Sig on TriList
/// </summary>