From 48ad0a8ea20462a5a5b9cf6f002adb831ea22e38 Mon Sep 17 00:00:00 2001 From: jbinz Date: Sun, 31 Mar 2024 12:46:18 +0200 Subject: [PATCH] Forward Declaring Class. --- ground_station/src/utils.cpp | 1 + ground_station/src/utils.hpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ground_station/src/utils.cpp b/ground_station/src/utils.cpp index a1102401..49ee4ae6 100644 --- a/ground_station/src/utils.cpp +++ b/ground_station/src/utils.cpp @@ -14,6 +14,7 @@ #include "SPI.h" #include "console.hpp" #include "systemParser.hpp" +#include "telemetry/telemetry.hpp" #include "diskio.h" #include "ff.h" diff --git a/ground_station/src/utils.hpp b/ground_station/src/utils.hpp index e9edbda9..6533ce2c 100644 --- a/ground_station/src/utils.hpp +++ b/ground_station/src/utils.hpp @@ -8,11 +8,11 @@ #pragma once -#include "telemetry/telemetry.hpp" - #include #include +class Telemetry; + constexpr float PI_F = static_cast(PI); // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)