openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for over 200 supported car makes and models.
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.
 
 
 
 
 
 
Dean Lee 6f27ae486f replay: make `speed_` atomic (#30429) 1 year ago
..
lib Linter: remove pylint (#29611) 2 years ago
tests Tests: speedup replay test (#30037) 2 years ago
.gitignore move replay from selfdrive/ui/replay to tools/replay (#24971) 3 years ago
README.md replay: new demo route (#29215) 2 years ago
SConscript Minimal build (#29600) 2 years ago
__init__.py merge in tools 5 years ago
camera.cc cpplint: add filter `build/include_subdir` (#29585) 2 years ago
camera.h replay: fix visionbuf alignment on device (#26913) 2 years ago
can_replay.py add openpilot prefix to imports (#29498) 2 years ago
consoleui.cc cpplint: `build/include_what_you_use` (#29556) 2 years ago
consoleui.h move replay from selfdrive/ui/replay to tools/replay (#24971) 3 years ago
filereader.cc System: use paths for download folders too (#29818) 2 years ago
filereader.h move replay from selfdrive/ui/replay to tools/replay (#24971) 3 years ago
framereader.cc cpplint: add filter `build/include_subdir` (#29585) 2 years ago
framereader.h replay: fix visionbuf alignment on device (#26913) 2 years ago
logreader.cc replay/logreader: use unique_ptr for `mbr_` (#29440) 2 years ago
logreader.h cpplint: `build/include_what_you_use` (#29556) 2 years ago
main.cc replay: increase file descriptor limit macOS (#29346) 2 years ago
replay.cc cabana: remove the qlog parsing thread (#30319) 2 years ago
replay.h replay: make `speed_` atomic (#30429) 1 year ago
route.cc cpplint: `build/include_what_you_use` (#29556) 2 years ago
route.h cpplint: `build/include_what_you_use` (#29556) 2 years ago
ui.py ui.py: support strided buffer (#30236) 2 years ago
unlog_ci_segment.py Linter: remove pylint (#29611) 2 years ago
util.cc replay: make `installDownloadProgressHandler` thread safe (#30296) 2 years ago
util.h move replay from selfdrive/ui/replay to tools/replay (#24971) 3 years ago

README.md

Replay

Replay driving data

replay replays all the messages logged while running openpilot.

# Log in via browser to have access to routes from your comma account
python tools/lib/auth.py

# Start a replay
tools/replay/replay <route-name>

# Example:
tools/replay/replay 'a2a0ccea32023010|2023-07-27--13-01-19'
# or use --demo to replay the default demo route:
tools/replay/replay --demo

# watch the replay with the normal openpilot UI
cd selfdrive/ui && ./ui

# or try out a debug visualizer:
python replay/ui.py

usage

$ tools/replay/replay -h
Usage: tools/replay/replay [options] route
Mock openpilot components by publishing logged messages.

Options:
  -h, --help             Displays this help.
  -a, --allow <allow>    whitelist of services to send
  -b, --block <block>    blacklist of services to send
  -s, --start <seconds>  start from <seconds>
  --demo                 use a demo route instead of providing your own
  --dcam                 load driver camera
  --ecam                 load wide road camera

Arguments:
  route                  the drive to replay. find your drives at
                         connect.comma.ai

watch3

watch all three cameras simultaneously from your comma three routes with watch3

simply replay a route using the --dcam and --ecam flags:

# start a replay
cd tools/replay && ./replay --demo --dcam --ecam

# then start watch3
cd selfdrive/ui && ./watch3

Stream CAN messages to your device

Replay CAN messages as they were recorded using a panda jungle. The jungle has 6x OBD-C ports for connecting all your comma devices. Check out the jungle repo for more info.

In order to run your device as if it was in a car:

  • connect a panda jungle to your PC
  • connect a comma device or panda to the jungle via OBD-C
  • run can_replay.py
batman:replay$ ./can_replay.py -h
usage: can_replay.py [-h] [route_or_segment_name]

Replay CAN messages from a route to all connected pandas and jungles
in a loop.

positional arguments:
  route_or_segment_name
                        The route or segment name to replay. If not
                        specified, a default public route will be
                        used. (default: None)

optional arguments:
  -h, --help            show this help message and exit