Fdf

SCPI Command :

SEARch:TRIGger:CAN:FDATa[:FDF]
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) BusBitCondition[source]
# SEARch:TRIGger:CAN:FDATa[:FDF]
value: enums.BusBitCondition = driver.search.trigger.can.fdata.fdf.get(search = 'abc')

Sets the EDL bit (extended data length) , which determines whether a frame is CAN or CAN-FD. The setting is available in CAN FD option R&S RTP-K9.

Parameters:

search – String with the search name

Returns:

fdf_bit: ONE: CAN FD. ZERO: CAN. DC: don’t care, the format is not relevant.

set(search: str, fdf_bit: BusBitCondition) None[source]
# SEARch:TRIGger:CAN:FDATa[:FDF]
driver.search.trigger.can.fdata.fdf.set(search = 'abc', fdf_bit = enums.BusBitCondition.DC)

Sets the EDL bit (extended data length) , which determines whether a frame is CAN or CAN-FD. The setting is available in CAN FD option R&S RTP-K9.

Parameters:
  • search – String with the search name

  • fdf_bit – ONE: CAN FD. ZERO: CAN. DC: don’t care, the format is not relevant.