- Replace P1-P6 rational transfer function with factor/offset model for bench params - Add explicit rx/tx direction flags in bench XML configuration - Add T.Tank (BenchTemp) and P2 (AnalogSensor2) to temperature/pressure display - Apply SensorConfiguration calibration to pressure channels, fix empty sensors.xml fallback - Add live value labels to flowmeter charts - Hide pump live values and PSG encoder standalone label - Add K-Line connection state model, improve KWP service and status displays - Restructure .claude/skills into subdirectory format Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
507 B
C#
18 lines
507 B
C#
namespace HC_APTBS.Models
|
|
{
|
|
/// <summary>
|
|
/// Represents the current state of the K-Line diagnostic session.
|
|
/// </summary>
|
|
public enum KLineConnectionState
|
|
{
|
|
/// <summary>No session established (indicator: gray).</summary>
|
|
Disconnected,
|
|
|
|
/// <summary>Session active and keep-alive succeeding (indicator: green).</summary>
|
|
Connected,
|
|
|
|
/// <summary>Session lost — keep-alive or operation failed (indicator: red).</summary>
|
|
Failed
|
|
}
|
|
}
|