From df418b503f5dac9d175ae9a6660dd5a9889fcb46 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 27 Apr 2024 03:18:46 -0500 Subject: [PATCH] wip --- {can => opendbc/can}/SConscript | 0 {can => opendbc/can}/__init__.py | 0 {can => opendbc/can}/can_define.py | 0 {can => opendbc/can}/common.cc | 0 {can => opendbc/can}/common.h | 0 {can => opendbc/can}/common.pxd | 0 {can => opendbc/can}/common_dbc.h | 0 {can => opendbc/can}/dbc.cc | 0 {can => opendbc/can}/packer.cc | 0 {can => opendbc/can}/packer.py | 0 {can => opendbc/can}/packer_pyx.pyx | 0 {can => opendbc/can}/parser.cc | 0 {can => opendbc/can}/parser.py | 0 {can => opendbc/can}/parser_pyx.pyx | 0 {can => opendbc/can}/tests/.gitignore | 0 {can => opendbc/can}/tests/__init__.py | 0 {can => opendbc/can}/tests/test.dbc | 0 {can => opendbc/can}/tests/test_checksums.py | 0 {can => opendbc/can}/tests/test_dbc_exceptions.py | 0 {can => opendbc/can}/tests/test_dbc_parser.py | 0 {can => opendbc/can}/tests/test_define.py | 0 {can => opendbc/can}/tests/test_packer_parser.py | 0 {can => opendbc/can}/tests/test_parser_performance.py | 0 23 files changed, 0 insertions(+), 0 deletions(-) rename {can => opendbc/can}/SConscript (100%) rename {can => opendbc/can}/__init__.py (100%) rename {can => opendbc/can}/can_define.py (100%) rename {can => opendbc/can}/common.cc (100%) rename {can => opendbc/can}/common.h (100%) rename {can => opendbc/can}/common.pxd (100%) rename {can => opendbc/can}/common_dbc.h (100%) rename {can => opendbc/can}/dbc.cc (100%) rename {can => opendbc/can}/packer.cc (100%) rename {can => opendbc/can}/packer.py (100%) rename {can => opendbc/can}/packer_pyx.pyx (100%) rename {can => opendbc/can}/parser.cc (100%) rename {can => opendbc/can}/parser.py (100%) rename {can => opendbc/can}/parser_pyx.pyx (100%) rename {can => opendbc/can}/tests/.gitignore (100%) rename {can => opendbc/can}/tests/__init__.py (100%) rename {can => opendbc/can}/tests/test.dbc (100%) rename {can => opendbc/can}/tests/test_checksums.py (100%) rename {can => opendbc/can}/tests/test_dbc_exceptions.py (100%) rename {can => opendbc/can}/tests/test_dbc_parser.py (100%) rename {can => opendbc/can}/tests/test_define.py (100%) rename {can => opendbc/can}/tests/test_packer_parser.py (100%) rename {can => opendbc/can}/tests/test_parser_performance.py (100%) diff --git a/can/SConscript b/opendbc/can/SConscript similarity index 100% rename from can/SConscript rename to opendbc/can/SConscript diff --git a/can/__init__.py b/opendbc/can/__init__.py similarity index 100% rename from can/__init__.py rename to opendbc/can/__init__.py diff --git a/can/can_define.py b/opendbc/can/can_define.py similarity index 100% rename from can/can_define.py rename to opendbc/can/can_define.py diff --git a/can/common.cc b/opendbc/can/common.cc similarity index 100% rename from can/common.cc rename to opendbc/can/common.cc diff --git a/can/common.h b/opendbc/can/common.h similarity index 100% rename from can/common.h rename to opendbc/can/common.h diff --git a/can/common.pxd b/opendbc/can/common.pxd similarity index 100% rename from can/common.pxd rename to opendbc/can/common.pxd diff --git a/can/common_dbc.h b/opendbc/can/common_dbc.h similarity index 100% rename from can/common_dbc.h rename to opendbc/can/common_dbc.h diff --git a/can/dbc.cc b/opendbc/can/dbc.cc similarity index 100% rename from can/dbc.cc rename to opendbc/can/dbc.cc diff --git a/can/packer.cc b/opendbc/can/packer.cc similarity index 100% rename from can/packer.cc rename to opendbc/can/packer.cc diff --git a/can/packer.py b/opendbc/can/packer.py similarity index 100% rename from can/packer.py rename to opendbc/can/packer.py diff --git a/can/packer_pyx.pyx b/opendbc/can/packer_pyx.pyx similarity index 100% rename from can/packer_pyx.pyx rename to opendbc/can/packer_pyx.pyx diff --git a/can/parser.cc b/opendbc/can/parser.cc similarity index 100% rename from can/parser.cc rename to opendbc/can/parser.cc diff --git a/can/parser.py b/opendbc/can/parser.py similarity index 100% rename from can/parser.py rename to opendbc/can/parser.py diff --git a/can/parser_pyx.pyx b/opendbc/can/parser_pyx.pyx similarity index 100% rename from can/parser_pyx.pyx rename to opendbc/can/parser_pyx.pyx diff --git a/can/tests/.gitignore b/opendbc/can/tests/.gitignore similarity index 100% rename from can/tests/.gitignore rename to opendbc/can/tests/.gitignore diff --git a/can/tests/__init__.py b/opendbc/can/tests/__init__.py similarity index 100% rename from can/tests/__init__.py rename to opendbc/can/tests/__init__.py diff --git a/can/tests/test.dbc b/opendbc/can/tests/test.dbc similarity index 100% rename from can/tests/test.dbc rename to opendbc/can/tests/test.dbc diff --git a/can/tests/test_checksums.py b/opendbc/can/tests/test_checksums.py similarity index 100% rename from can/tests/test_checksums.py rename to opendbc/can/tests/test_checksums.py diff --git a/can/tests/test_dbc_exceptions.py b/opendbc/can/tests/test_dbc_exceptions.py similarity index 100% rename from can/tests/test_dbc_exceptions.py rename to opendbc/can/tests/test_dbc_exceptions.py diff --git a/can/tests/test_dbc_parser.py b/opendbc/can/tests/test_dbc_parser.py similarity index 100% rename from can/tests/test_dbc_parser.py rename to opendbc/can/tests/test_dbc_parser.py diff --git a/can/tests/test_define.py b/opendbc/can/tests/test_define.py similarity index 100% rename from can/tests/test_define.py rename to opendbc/can/tests/test_define.py diff --git a/can/tests/test_packer_parser.py b/opendbc/can/tests/test_packer_parser.py similarity index 100% rename from can/tests/test_packer_parser.py rename to opendbc/can/tests/test_packer_parser.py diff --git a/can/tests/test_parser_performance.py b/opendbc/can/tests/test_parser_performance.py similarity index 100% rename from can/tests/test_parser_performance.py rename to opendbc/can/tests/test_parser_performance.py