From b5f7eaf4079947b87fdd0638d34b9e05f17b97e0 Mon Sep 17 00:00:00 2001 From: Simone Morettini Date: Tue, 19 Jul 2022 15:07:53 +0200 Subject: [PATCH] Added missing headers and removed where not needed --- config/ActiveLoggerImplCfg.hpp | 2 -- config/UdpReceiverComponentImplCfg.hpp | 2 ++ config/UdpSenderComponentImplCfg.hpp | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/config/ActiveLoggerImplCfg.hpp b/config/ActiveLoggerImplCfg.hpp index 9639304977..e24f973b51 100644 --- a/config/ActiveLoggerImplCfg.hpp +++ b/config/ActiveLoggerImplCfg.hpp @@ -8,8 +8,6 @@ #ifndef ACTIVELOGGER_ACTIVELOGGERIMPLCFG_HPP_ #define ACTIVELOGGER_ACTIVELOGGERIMPLCFG_HPP_ -#include - // set default filters enum { diff --git a/config/UdpReceiverComponentImplCfg.hpp b/config/UdpReceiverComponentImplCfg.hpp index efe900898a..c32d8e8e78 100644 --- a/config/UdpReceiverComponentImplCfg.hpp +++ b/config/UdpReceiverComponentImplCfg.hpp @@ -8,6 +8,8 @@ #ifndef SVC_UDPRECEIVER_UDPRECEIVERCOMPONENTIMPLCFG_HPP_ #define SVC_UDPRECEIVER_UDPRECEIVERCOMPONENTIMPLCFG_HPP_ +#include "Fw/Types/BasicTypes.hpp" + namespace Svc { const static NATIVE_UINT_TYPE UDP_RECEIVER_MSG_SIZE = 256; } diff --git a/config/UdpSenderComponentImplCfg.hpp b/config/UdpSenderComponentImplCfg.hpp index 5641580934..a39be283dc 100644 --- a/config/UdpSenderComponentImplCfg.hpp +++ b/config/UdpSenderComponentImplCfg.hpp @@ -8,6 +8,8 @@ #ifndef SVC_UDPSENDER_UDPSENDERCOMPONENTIMPLCFG_HPP_ #define SVC_UDPSENDER_UDPSENDERCOMPONENTIMPLCFG_HPP_ +#include "Fw/Types/BasicTypes.hpp" + namespace Svc { static const NATIVE_UINT_TYPE UDP_SENDER_MSG_SIZE = 256; }