A request message for sending out one LIN wakeup frame.

interface SendLinWakeupFrameRequest {
    channelIdentifier: string;
    count: number;
    interval: number;
    preferences: ApiPreferences;
}

Properties

channelIdentifier: string

Identifier of the LIN channel to send the wakeup frame on.

count: number

The number of wakeup frames to send. Maximum value of count is 255 (0xFF).

interval: number

The time, in bit times, between the wakeup frames. Maximum value of interval is either 255 (0xFF) or 65535 (0xFFFF) depending on device.

preferences: ApiPreferences