You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'stmin': 0, # Will request the sender to wait 0ms between consecutive frame. 0-127ms or 100-900ns with values from 0xF1-0xF9
166
-
'blocksize': 0, # Request the sender to send all consecutives frames without waiting a new flow control message
167
-
'wftmax': 0, # Number of wait frame allowed before triggering an error
168
-
'tx_data_length': 8, # Link layer (CAN layer) works with 8 byte payload (CAN 2.0)
169
-
'tx_data_min_length': 8, # Minimum length of CAN messages. Messages are padded to meet this length.
170
-
'tx_padding': 0, # Will pad all transmitted CAN messages with byte 0x00.
171
-
'rx_flowcontrol_timeout': 1000, # Triggers a timeout if a flow control is awaited for more than 1000 milliseconds
172
-
'rx_consecutive_frame_timeout': 1000, # Triggers a timeout if a consecutive frame is awaited for more than 1000 milliseconds
173
-
'override_receiver_stmin': None, # When sending, respect the stmin requirement of the receiver. Could be set to a float value in seconds.
174
-
'max_frame_size': 4095, # Limit the size of receive frame.
175
-
'can_fd': False, # Does not set the can_fd flag on the output CAN messages
176
-
'bitrate_switch': False, # Does not set the bitrate_switch flag on the output CAN messages
177
-
'rate_limit_enable': False, # Disable the rate limiter
178
-
'rate_limit_max_bitrate': 1000000, # Ignored when rate_limit_enable=False. Sets the max bitrate when rate_limit_enable=True
179
-
'rate_limit_window_size': 0.2, # Ignored when rate_limit_enable=False. Sets the averaging window size for bitrate calculation when rate_limit_enable=True
180
-
'listen_mode': False, # Does not use the listen_mode which prevent transmission.
197
+
# Will request the sender to wait 0ms between consecutive frame.
198
+
# 0-127ms or 100-900ns with values from 0xF1-0xF9.
199
+
'stmin': 0,
200
+
# Request the sender to send all consecutives frames without waiting a new flow control message.
201
+
'blocksize': 0,
202
+
# Number of wait frame allowed before triggering an error.
203
+
'wftmax': 0,
204
+
# Link layer (CAN layer) works with 8 byte payload (CAN 2.0).
205
+
'tx_data_length': 8,
206
+
# Minimum length of CAN messages. Messages are padded to meet this length.
207
+
'tx_data_min_length': 8,
208
+
# Will pad all transmitted CAN messages with byte 0x00.
209
+
'tx_padding': 0,
210
+
# Triggers a timeout if a flow control is awaited for more than 1000 milliseconds.
211
+
'rx_flowcontrol_timeout': 1000,
212
+
# Triggers a timeout if a consecutive frame is awaited for more than 1000 milliseconds.
213
+
'rx_consecutive_frame_timeout': 1000,
214
+
# When sending, respect the stmin requirement of the receiver.
215
+
# Could be set to a float value in seconds.
216
+
'override_receiver_stmin': None,
217
+
# Limit the size of receive frame.
218
+
'max_frame_size': 4095,
219
+
# Does not set the can_fd flag on the output CAN messages.
220
+
'can_fd': False,
221
+
# Does not set the bitrate_switch flag on the output CAN messages.
222
+
'bitrate_switch': False,
223
+
# Disable the rate limiter.
224
+
'rate_limit_enable': False,
225
+
# Ignored when rate_limit_enable=False. Sets the max bitrate when rate_limit_enable=True.
226
+
'rate_limit_max_bitrate': 1000000,
227
+
# Ignored when rate_limit_enable=False.
228
+
# Sets the averaging window size for bitrate calculation when rate_limit_enable=True.
229
+
'rate_limit_window_size': 0.2,
230
+
# Does not use the listen_mode which prevent transmission.
0 commit comments