Bus speed information, used for listing available bus speed settings for CAN.

interface CanBusSpeedInfo {
    actualBitRate: number;
    bitRate: number;
    bitRateError: number;
    busParams: CanBusParams;
    description: string;
    samplePoint: number;
}

Properties

actualBitRate: number

The actual bit rate (measured in bits per second).

bitRate: number

The target bit rate (measured in bits per second).

bitRateError: number

The bit rate error with these settings.

busParams: CanBusParams

Bus parameters for this bus speed.

description: string

A text description of the bus speed.

samplePoint: number

The sample point in percentage.