interface CanSignalProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoTFleetWise.CfnDecoderManifest.CanSignalProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnDecoderManifest_CanSignalProperty |
![]() | software.amazon.awscdk.services.iotfleetwise.CfnDecoderManifest.CanSignalProperty |
![]() | aws_cdk.aws_iotfleetwise.CfnDecoderManifest.CanSignalProperty |
![]() | aws-cdk-lib » aws_iotfleetwise » CfnDecoderManifest » CanSignalProperty |
Information about a single controller area network (CAN) signal and the messages it receives and transmits.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
const canSignalProperty: iotfleetwise.CfnDecoderManifest.CanSignalProperty = {
factor: 'factor',
isBigEndian: 'isBigEndian',
isSigned: 'isSigned',
length: 'length',
messageId: 'messageId',
offset: 'offset',
startBit: 'startBit',
// the properties below are optional
name: 'name',
};
Properties
Name | Type | Description |
---|---|---|
factor | string | A multiplier used to decode the CAN message. |
is | string | Whether the byte ordering of a CAN message is big-endian. |
is | string | Whether the message data is specified as a signed value. |
length | string | How many bytes of data are in the message. |
message | string | The ID of the message. |
offset | string | The offset used to calculate the signal value. |
start | string | Indicates the beginning of the CAN message. |
name? | string | The name of the signal. |
factor
Type:
string
A multiplier used to decode the CAN message.
isBigEndian
Type:
string
Whether the byte ordering of a CAN message is big-endian.
isSigned
Type:
string
Whether the message data is specified as a signed value.
length
Type:
string
How many bytes of data are in the message.
messageId
Type:
string
The ID of the message.
offset
Type:
string
The offset used to calculate the signal value.
Combined with factor, the calculation is value = raw_value * factor + offset
.
startBit
Type:
string
Indicates the beginning of the CAN message.
name?
Type:
string
(optional)
The name of the signal.