Show / Hide Table of Contents

Class MountedSessionCapabilities

Indicates MountedSession capabilities. Some data sources may not provide all possible capabilities. Further capability options may be added in future versions.

Inheritance
System.Object
MountedSessionCapabilities
Namespace: MESL.SqlRace.Domain.MountedSessions
Assembly: MESL.SqlRace.Domain.dll
Syntax
public sealed class MountedSessionCapabilities : ValueType

Fields

CANData

Supports CAN data: messages collected from the CAN bus.

Declaration
public bool CANData
Field Value
Type Description
System.Boolean

Constants

Supports constants.

Declaration
public bool Constants
Field Value
Type Description
System.Boolean
See Also
Constants

Events

Supports events.

Declaration
public bool Events
Field Value
Type Description
System.Boolean
See Also
ReadPagedEvents(ReadDirection, Nullable<Int64>, Nullable<Int64>)

Laps

Supports laps.

Declaration
public bool Laps
Field Value
Type Description
System.Boolean
See Also
Laps

PeriodicData

Supports periodic (regularly sampled) data. This data is sampled with an accurate clock at a specific frequency for each channel. It is suitable for most high-precision measurements, offering sample rates up to 1 KHz on an MAT ECU, or up to 400 KHz on the High-Speed Logger. Sampling may not be continuous: it can be triggered by specific conditions (e.g. gear-change).

Declaration
public bool PeriodicData
Field Value
Type Description
System.Boolean

RowData

Supports row data ("slow row"). This data is sampled at low rates from sections of logger memory, with the lowest level of timing accuracy. It is suitable for counters, bit-fields, etc. It is typically ignored where PeriodicData or TimestampedData is available.

Declaration
public bool RowData
Field Value
Type Description
System.Boolean

TimestampedData

Supports timestamped / "synchro" data. Timestamped data represents samples with associated precise timestamps. Synchro data is specifically sampled based on external triggers (for example: crankshaft rotation) for maximum timing accuracy. This type of data is used in preference to PeriodicData when available.

Declaration
public bool TimestampedData
Field Value
Type Description
System.Boolean
Back to top Generated by DocFX