You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
236 B
9 lines
236 B
2 months ago
|
import glob
|
||
|
import os
|
||
|
|
||
|
from opendbc import DBC_PATH
|
||
|
|
||
|
ALL_DBCS = [os.path.basename(dbc).split('.')[0] for dbc in
|
||
|
glob.glob(f"{DBC_PATH}/*.dbc")]
|
||
|
TEST_DBC = os.path.abspath(os.path.join(os.path.dirname(__file__), "test.dbc"))
|