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
configs = can.interface.detect_available_configs(interfaces="etas")
for c in configs:
print(c)`
I tried to use detect_available_configs to initialize the output of the identified device, but for now the problem seems to be that I am directly stuck in this function. And I successfully installed the driver and BOA
The text was updated successfully, but these errors were encountered:
`import time
from datetime import datetime
import can
from can.interfaces.etas import EtasBus
from can import Message
from can.io.blf import BLFWriter
bitrate = 500000
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
log_filename = f'can_log_{timestamp}.blf'
print(timestamp)
configs = can.interface.detect_available_configs(interfaces="etas")
for c in configs:
print(c)`
I tried to use detect_available_configs to initialize the output of the identified device, but for now the problem seems to be that I am directly stuck in this function. And I successfully installed the driver and BOA
The text was updated successfully, but these errors were encountered: