Update code to work on fabricated PCB

This commit is contained in:
Riyyi
2025-08-30 17:22:33 +02:00
parent 830a4e2137
commit 8f4823586f
18 changed files with 175 additions and 243 deletions
+18 -16
View File
@@ -2,32 +2,34 @@
server:
@-cd server ; \
platformio run --target upload ; \
cd ..
platformio run --environment server --target compiledb ; \
platformio run --environment server ; \
cd ..
server-log:
@-cd server ; \
platformio device monitor ; \
cd ..
platformio device monitor --environment server ; \
cd ..
server-run:
server-run: server
@-cd server ; \
platformio run --target upload && \
platformio device monitor ; \
cd ..
platformio run --environment server --target upload ; \
platformio device monitor --environment server ; \
cd ..
client:
@-cd client ; \
platformio run --target upload ; \
cd ..
platformio run --environment client --target compiledb ; \
platformio run --environment client ;
cd ..
client-log:
@-cd client ; \
platformio device monitor ; \
cd ..
platformio device monitor --environment client
cd ..
client-run:
client-run: client
@-cd client ; \
platformio run --target upload && \
platformio device monitor ; \
cd ..
platformio run --environment client --target upload ; \
platformio device monitor --environment client
cd ..