diff --git a/tools/odrive/utils.py b/tools/odrive/utils.py index 1d88736e..fe93dafd 100755 --- a/tools/odrive/utils.py +++ b/tools/odrive/utils.py @@ -115,10 +115,9 @@ def start_liveplotter(get_var_callback): fetch_t.daemon = True fetch_t.start() - #plot_t = threading.Thread(target=plot_data) - #plot_t.daemon = True - #plot_t.start() - plot_data() + plot_t = threading.Thread(target=plot_data) + plot_t.daemon = True + plot_t.start() return cancellation_token; #plot_data()