diff --git a/debugging_tool/.editorconfig b/python/.editorconfig similarity index 100% rename from debugging_tool/.editorconfig rename to python/.editorconfig diff --git a/debugging_tool/.gitignore b/python/.gitignore similarity index 100% rename from debugging_tool/.gitignore rename to python/.gitignore diff --git a/debugging_tool/server.py b/python/debugserver.py similarity index 99% rename from debugging_tool/server.py rename to python/debugserver.py index d41f075..0428e2a 100644 --- a/debugging_tool/server.py +++ b/python/debugserver.py @@ -128,7 +128,7 @@ def serial_reader(shared_data): @app.route('/') def index(): - return send_file('static/index.html') + return send_file('static/debugger.html') @app.route('//api.json') def api(last_received): diff --git a/debugging_tool/requirements.txt b/python/requirements.txt similarity index 100% rename from debugging_tool/requirements.txt rename to python/requirements.txt diff --git a/debugging_tool/sketch_can_debugger/sketch_can_debugger.ino b/python/sketch_can_debugger/sketch_can_debugger.ino similarity index 100% rename from debugging_tool/sketch_can_debugger/sketch_can_debugger.ino rename to python/sketch_can_debugger/sketch_can_debugger.ino diff --git a/debugging_tool/static/index.html b/python/static/debugger.html similarity index 97% rename from debugging_tool/static/index.html rename to python/static/debugger.html index e63b53d..15eb8a9 100644 --- a/debugging_tool/static/index.html +++ b/python/static/debugger.html @@ -112,6 +112,6 @@ Raw ID - + diff --git a/debugging_tool/static/script.js b/python/static/debugscript.js similarity index 100% rename from debugging_tool/static/script.js rename to python/static/debugscript.js