Big changes

This commit is contained in:
Duc
2025-03-13 12:04:22 -07:00
parent c689fcb7f9
commit ffa9905494
748 changed files with 199255 additions and 3743 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Raytheon.Instruments.LSPS
{
public static class Autofill
{
public enum Command
{
COOLDOWN,
WARMUP,
TURN_OFF,
FORCE,
GET_STATE,
GET_TIME_TO_FILL
};
private const string name_ = "AUTOFILL";
public static string GetFullCommand(Enum command)
{
return $"{name_} {command.ToString()}";
}
}
}

View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Raytheon.Instruments.LSPS
{
public static class BlackBody
{
public enum Command
{
CONTROL_SETPOINT,
GET_TEMP,
GET_SETPOINT,
GET_HTR,
GET_STABILITY,
GET_CONTROL_STATE,
GET_RATE_OF_CHANGE,
GET_TEMP_ERROR,
GET_TEMPA,
GET_TEMPB,
GET_CONTROL_SETPOINT,
GET_STATUS,
GET_BIT
};
private const string name_ = "BB";
public static string GetFullCommand(Enum command)
{
return $"{name_} {command.ToString()}";
}
}
}

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Raytheon.Instruments.LSPS
{
public static class ChamberVacuum
{
public enum Command
{
GET_CVAC,
GET_SVAC
};
private const string name_ = "CVAC";
public static string GetFullCommand(Enum command)
{
return $"{name_} {command.ToString()}";
}
}
}

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Raytheon.Instruments.LSPS
{
public static class Chopper
{
public enum Command
{
CW_SET_SETPOINT,
CW_STOP_OPEN,
CW_STOP_CLOSED,
CW_TURN_OFF,
CW_GET_SETPOINT,
CW_GET_CHOP_FREQ,
CW_GET_STATE,
CW_GET_STATUS,
CW_GET_STABILITY,
GET_BIT
};
private const string name_ = "CHOPPER";
public static string GetFullCommand(Enum command)
{
return $"{name_} {command.ToString()}";
}
}
}

View File

@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Raytheon.Instruments.LSPS
{
public static class GALIL
{
public enum Command
{
FW_HOME,
FW_SET_POS,
FW_GET_POS,
FW_GET_STATUS,
TW_HOME,
TW_SET_POS,
TW_GET_POS,
TW_GET_STATUS,
SM_HOME,
SM_STOP,
SM_SET_BEAM_ANGLES,
SM_GET_BEAM_ANGLES,
SM_SET_BEAM_SPEED,
SM_DRAW_CIRCLE_NUMREVS,
SM_SET_RIGHT_LEFT_ARROW_ANGLE,
SM_SET_UP_DOWN_ARROW_ANGLE,
SM_GET_AZ_STATUS,
SM_GET_EL_STATUS,
SM_LOAD_PROFILE_FROM_FILE,
SM_LOAD_PROFILE,
SM_MOVE_PROFILE,
SM_MOVE_TO_START_PROFILE,
SM_RESET_PROFILE,
SM_GET_PROFILE_SIZE,
SM_GET_PROFILE
};
private const string name_ = "GALIL";
public static string GetFullCommand(Enum command)
{
return $"{name_} {command.ToString()}";
}
}
}

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Raytheon.Instruments.LSPS
{
public static class NIF
{
public enum InputIndex
{
UUT_GV_OPEN,
UUT_GV_CLOSE
}
public enum Command
{
CLOSE_UUT_GV,
OPEN_UUT_GV,
GET_STATUS,
GET_INPUT_INDEX,
GET_TEMP_INDEX
};
private const string name_ = "NIF";
public static string GetFullCommand(Enum command)
{
return $"{name_} {command.ToString()}";
}
}
}

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Raytheon.Instruments.LSPS
{
public static class RIO
{
public enum Command
{
GV_CLOSE,
GV_OPEN,
GET_GV_CLOSED_INPUT,
GET_GV_OPEN_INPUT,
GET_GV_CHAMBER_PRESSURE,
GET_GV_CANISTER_PRESSURE
};
private const string name_ = "RIO";
public static string GetFullCommand(Enum command)
{
return $"{name_} {command.ToString()}";
}
}
}