mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-02 20:12:07 +08:00
14bead366a
This reverts commit 255c89c6ab.
9 lines
236 B
Python
9 lines
236 B
Python
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"))
|