From 3f2905c0bd65c4f8ebd040dcc9df64bfdabaca51 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicol=C3=B2=20Caruso?= <niccolo.caruso@skywarder.eu>
Date: Fri, 6 Dec 2024 16:07:01 +0100
Subject: [PATCH] [logdecoder] Fixed Makefile after the directory restructure

Fixed the makefiles of the logdecoders after the change of directory structure of the OBSW. In particolar the move of the scripts and the deletion of the boards directory.
---
 scripts/logdecoder/AutomatedAntennas/Makefile | 4 ++--
 scripts/logdecoder/General/Makefile           | 4 ++--
 scripts/logdecoder/Main/Makefile              | 4 ++--
 scripts/logdecoder/Motor/Makefile             | 4 ++--
 scripts/logdecoder/Payload/Makefile           | 4 ++--
 scripts/logdecoder/RIGv2/Makefile             | 4 ++--
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/scripts/logdecoder/AutomatedAntennas/Makefile b/scripts/logdecoder/AutomatedAntennas/Makefile
index 6bbaf34fc..48a6b6945 100644
--- a/scripts/logdecoder/AutomatedAntennas/Makefile
+++ b/scripts/logdecoder/AutomatedAntennas/Makefile
@@ -1,5 +1,5 @@
-BOARDCORE := ../../../../skyward-boardcore/
-OBSW := ../../../../src/boards/
+BOARDCORE := ../../../skyward-boardcore/
+OBSW := ../../../src/
 
 all:
 	g++ -std=c++17 -O2 -o logdecoder logdecoder.cpp \
diff --git a/scripts/logdecoder/General/Makefile b/scripts/logdecoder/General/Makefile
index 6bbaf34fc..48a6b6945 100644
--- a/scripts/logdecoder/General/Makefile
+++ b/scripts/logdecoder/General/Makefile
@@ -1,5 +1,5 @@
-BOARDCORE := ../../../../skyward-boardcore/
-OBSW := ../../../../src/boards/
+BOARDCORE := ../../../skyward-boardcore/
+OBSW := ../../../src/
 
 all:
 	g++ -std=c++17 -O2 -o logdecoder logdecoder.cpp \
diff --git a/scripts/logdecoder/Main/Makefile b/scripts/logdecoder/Main/Makefile
index 6bbaf34fc..48a6b6945 100644
--- a/scripts/logdecoder/Main/Makefile
+++ b/scripts/logdecoder/Main/Makefile
@@ -1,5 +1,5 @@
-BOARDCORE := ../../../../skyward-boardcore/
-OBSW := ../../../../src/boards/
+BOARDCORE := ../../../skyward-boardcore/
+OBSW := ../../../src/
 
 all:
 	g++ -std=c++17 -O2 -o logdecoder logdecoder.cpp \
diff --git a/scripts/logdecoder/Motor/Makefile b/scripts/logdecoder/Motor/Makefile
index 1f4362c63..838ac110b 100644
--- a/scripts/logdecoder/Motor/Makefile
+++ b/scripts/logdecoder/Motor/Makefile
@@ -1,5 +1,5 @@
-BOARDCORE := ../../../../skyward-boardcore/
-OBSW := ../../../../src/boards/
+BOARDCORE := ../../../skyward-boardcore/
+OBSW := ../../../src/
 
 all:
 	g++ -std=c++17 -O2 -o logdecoder logdecoder.cpp \
diff --git a/scripts/logdecoder/Payload/Makefile b/scripts/logdecoder/Payload/Makefile
index e7a69da6d..2be440a00 100644
--- a/scripts/logdecoder/Payload/Makefile
+++ b/scripts/logdecoder/Payload/Makefile
@@ -1,5 +1,5 @@
-BOARDCORE := ../../../../skyward-boardcore/
-OBSW := ../../../../src/boards/
+BOARDCORE := ../../../skyward-boardcore/
+OBSW := ../../../src/
 
 all:
 	g++ -std=c++20 -O2 -o logdecoder logdecoder.cpp \
diff --git a/scripts/logdecoder/RIGv2/Makefile b/scripts/logdecoder/RIGv2/Makefile
index 6bbaf34fc..48a6b6945 100644
--- a/scripts/logdecoder/RIGv2/Makefile
+++ b/scripts/logdecoder/RIGv2/Makefile
@@ -1,5 +1,5 @@
-BOARDCORE := ../../../../skyward-boardcore/
-OBSW := ../../../../src/boards/
+BOARDCORE := ../../../skyward-boardcore/
+OBSW := ../../../src/
 
 all:
 	g++ -std=c++17 -O2 -o logdecoder logdecoder.cpp \
-- 
GitLab