Skip to content

Commit

Permalink
remove uds from panda
Browse files Browse the repository at this point in the history
  • Loading branch information
sshane committed Jan 13, 2025
1 parent a8f21d9 commit 7ac9778
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 946 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .python.serial import PandaSerial # noqa: F401
from .python.canhandle import CanHandle # noqa: F401
from .python.utils import logger # noqa: F401
from .python import (Panda, PandaDFU, uds, isotp, # noqa: F401
from .python import (Panda, PandaDFU, isotp, # noqa: F401
pack_can_buffer, unpack_can_buffer, calculate_checksum,
DLC_TO_LEN, LEN_TO_DLC, ALTERNATIVE_EXPERIENCE, CANPACKET_HEAD_SIZE)

Expand Down
4 changes: 2 additions & 2 deletions examples/query_fw_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import argparse
from tqdm import tqdm
from panda import Panda
from panda.python.uds import UdsClient, MessageTimeoutError, NegativeResponseError, InvalidSubAddressError, \
SESSION_TYPE, DATA_IDENTIFIER_TYPE
from opendbc.car.uds import UdsClient, MessageTimeoutError, NegativeResponseError, InvalidSubAddressError, \
SESSION_TYPE, DATA_IDENTIFIER_TYPE # pylint: disable=import-error

if __name__ == "__main__":
parser = argparse.ArgumentParser()
Expand Down
Loading

0 comments on commit 7ac9778

Please sign in to comment.