From 6d40c4eada409e4a63d5678729825c952b9cee19 Mon Sep 17 00:00:00 2001 From: kpetridis <petridkon@gmail.com> Date: Wed, 6 Apr 2022 21:59:23 +0300 Subject: [PATCH] Renamed definition --- inc/Helpers/ForwardControlConfiguration.hpp | 8 ++++---- inc/Services/RealTimeForwardingControlService.hpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/Helpers/ForwardControlConfiguration.hpp b/inc/Helpers/ForwardControlConfiguration.hpp index ec94f0d1..df29ff34 100644 --- a/inc/Helpers/ForwardControlConfiguration.hpp +++ b/inc/Helpers/ForwardControlConfiguration.hpp @@ -36,7 +36,7 @@ public: * it has not been filled yet (so we proceed to add new report types) or it is empty because we block every * report type for the service. */ - etl::map<uint8_t, reportsNotEmpty, ECSSMaxControlledApplications> notEmpty; + etl::map<uint8_t, reportsNotEmpty, ECSSMaxControlledApplicationProcesses> notEmpty; /** * Vector containing the Report Type definitions. Each definition has its unique name of type uint8. For @@ -55,7 +55,7 @@ public: * Map containing the Application Process definitions. Each application has its own ID. The ID is used as a * key to provide access to the list of Service Type definitions, included by the application. */ - etl::map<uint8_t, serviceTypeDefinitions, ECSSMaxControlledApplications> definitions; + etl::map<uint8_t, serviceTypeDefinitions, ECSSMaxControlledApplicationProcesses> definitions; ApplicationProcess() = default; }; @@ -80,7 +80,7 @@ public: * Map containing the Housekeeping definitions (application processes). Each application has its own ID. The ID is * used as a key to provide access to the list of the Housekeeping structure IDs. */ - typedef etl::map<uint8_t, housekeepingStructureIds, ECSSMaxControlledApplications> definitions; + typedef etl::map<uint8_t, housekeepingStructureIds, ECSSMaxControlledApplicationProcesses> definitions; HousekeepingParameterReport() = default; }; @@ -105,7 +105,7 @@ public: * Map containing the Event Report Blocking definitions (applications). Each application has its own ID. The ID is * used as a key to provide access to the list of the Event Definitions. */ - typedef etl::map<uint8_t, eventDefinitionIds, ECSSMaxControlledApplications> definitions; + typedef etl::map<uint8_t, eventDefinitionIds, ECSSMaxControlledApplicationProcesses> definitions; EventReportBlocking() = default; }; diff --git a/inc/Services/RealTimeForwardingControlService.hpp b/inc/Services/RealTimeForwardingControlService.hpp index 2e231b7f..d78e9581 100644 --- a/inc/Services/RealTimeForwardingControlService.hpp +++ b/inc/Services/RealTimeForwardingControlService.hpp @@ -41,7 +41,7 @@ public: /** * Contains the Application IDs, controlled by the Service. */ - etl::vector<uint8_t, ECSSMaxControlledApplications> controlledApplications; + etl::vector<uint8_t, ECSSMaxControlledApplicationProcesses> controlledApplications; /** * The Application Process configuration, containing all the application process, service type and message type -- GitLab