mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 06:33:57 +08:00
* add --stream to juggle.py * better * rm old code * for loopify * clean up * easier to pick out * start by default * don't exit * Update tools/plotjuggler/juggle.py Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> * Revert "start by default" This reverts commit 6cb481a6fdc2b401693a46be8d17553c1c00cc0f. * Revert "don't exit" This reverts commit 861b423eb8e259c8353586f3314ea8bad871f15a. * rm * move out of juggle_route * Update PJ README.md * Update tools/plotjuggler/README.md * this is in the readme * Updates Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
11 lines
259 B
Bash
Executable File
11 lines
259 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir -p bin
|
|
cd bin
|
|
|
|
for lib_name in libDataLoadRlog.so libDataStreamCereal.so plotjuggler; do
|
|
wget https://github.com/commaai/PlotJuggler/releases/download/latest/${lib_name}.tar.gz
|
|
tar -xf ${lib_name}.tar.gz
|
|
rm ${lib_name}.tar.gz
|
|
done
|