Skip to main content

canGetConfiguration, canSetConfiguration

Valid for: CANoe DE • CANoe:lite DE

Function Syntax

Description

The CAN controller parameters can be set or read. canSetConfiguration performs an automatic reset of the CAN controller.

Parameters

  • Channel: The CAN channel.
  • struct canSettings:
    • float baudrate; // in bit/s
    • unsigned char tseg1, tseg2; // length of the time segments 1 and 2 in time quanta
    • unsigned char sjw; // sync jump width in time quanta
    • unsigned char sam; // number of sampling points (1 or 3)
    • unsigned int flags; // see description below
Flags for canGetConfiguration:
  • Bit Position 0, 1:
    • 0: unknown transceiver
    • 1: Low speed
    • 2: Single wire
    • 3: High speed
  • Bit Position 8:
    • 0x100: The channel is configured for CAN FD
  • All others: Reserved
Flags for canSetConfiguration:
  • Bit Position 0:
    • 0: Normal mode
    • 1: Silent mode (acknowledge not created)
  • All others: Reserved, and must be 0.

Return Values

  • 1: success
  • 0: error

Example