- Expand Q3 calibration tests with diverse scenarios in `GenesisSmartReader_Q3Test`. - Introduce channel-specific validation for calibration tests. - Adjust methods for Q3 calibration in `GenesisSmartReader` to support per-channel factors. - Add utilities for preparing simulation data and refinements for test consistency. - Update `CliRunner` with improved task management, timeout handling, and logging enhancements.
13 lines
193 B
C#
13 lines
193 B
C#
|
|
namespace TBF.Rig.RegisterReaders.PoseidonCmdStartStop
|
|
{
|
|
public enum CliTaskState
|
|
{
|
|
Running,
|
|
Completed,
|
|
TimedOut,
|
|
Canceled,
|
|
Faulted
|
|
}
|
|
|
|
} |