19 lines
362 B
Plaintext
19 lines
362 B
Plaintext
namespace DTS.Common.Enums.Sensors
|
|
{
|
|
/// <summary>
|
|
/// describes different ways of filtering channels and sensors by type
|
|
/// </summary>
|
|
public enum PossibleFilters
|
|
{
|
|
All,
|
|
Analog,
|
|
Squib,
|
|
DigitalIn,
|
|
DigitalOut,
|
|
UART,
|
|
StreamOut,
|
|
StreamIn,
|
|
CAN
|
|
}
|
|
}
|