From aa58a874622a14037970ee020694e7ab5a9b0043 Mon Sep 17 00:00:00 2001 From: Marco Residori Date: Fri, 21 Aug 2015 12:27:38 +0200 Subject: Minor improvements to fdepl files and to release notes --- ReleaseNotes | 9 ++-- .../franca/api/someip/Configuration.fdepl | 54 +++++++++++----------- .../franca/api/someip/EnhancedPosition.fdepl | 46 +++++++++--------- .../franca/api/someip/PositionFeedback.fdepl | 24 +++++----- 4 files changed, 67 insertions(+), 66 deletions(-) diff --git a/ReleaseNotes b/ReleaseNotes index 511ffbb..eaeea3a 100644 --- a/ReleaseNotes +++ b/ReleaseNotes @@ -7,17 +7,18 @@ The master branch is a development branch. The head revision is not guaranteed to be stable. Stable versions are marked using git tags. -The positoning repository contains the standardized APIs and the proof of concept of three GENIVI components: -GNSSService, SensorsService and EnhancedPositionService. +The positioning repository contains the standardized APIs and the proof of concept of three GENIVI components: +the GNSSService, the SensorsService and the EnhancedPositionService. -Prefixes have been used to identify the tags of these trhee components: +Prefixes have been used to distinguish tags referring to different components: GNSS -> GNSSService SNS -> SensorsService ENPOS -> EnhancedPositionService The versions used in the tags must always match the versions of the GENIVI components specifications contained in the folder 'doc'. Example: -The tag ENPOS-3.0.0 identifies a stable version that contains GENIVI_EnhancedPositionService_ComponentSpecification.pdf v3.0.0 +The tag ENPOS-3.0.0 identifies a stable version of the EnhancedPositionService that contains the document +GENIVI_EnhancedPositionService_ComponentSpecification.pdf version 3.0.0. Versions ------------ diff --git a/enhanced-position-service/franca/api/someip/Configuration.fdepl b/enhanced-position-service/franca/api/someip/Configuration.fdepl index f2ad101..09232dc 100644 --- a/enhanced-position-service/franca/api/someip/Configuration.fdepl +++ b/enhanced-position-service/franca/api/someip/Configuration.fdepl @@ -3,43 +3,43 @@ import "../Configuration.fidl" import "../EnhancedPositionServiceTypes.fidl" define org.genivi.commonapi.someip.deployment for interface org.genivi.EnhancedPositionService.Configuration { - SomeIpServiceID = 1001 + SomeIpServiceID = 1001 - attribute SatSystem { - SomeIpGetterID = 3000 - SomeIpSetterID = 3001 - SomeIpNotifierID = 3002 - SomeIpGetterReliable = true - SomeIpSetterReliable = true - SomeIpNotifierReliable = true - SomeIpEventGroups = { 3002 } + attribute SatSystem { + SomeIpGetterID = 3000 + SomeIpSetterID = 3001 + SomeIpNotifierID = 3002 + SomeIpGetterReliable = true + SomeIpSetterReliable = true + SomeIpNotifierReliable = true + SomeIpEventGroups = { 3002 } } attribute UpdateInterval { - SomeIpGetterID = 4000 - SomeIpSetterID = 4001 - SomeIpNotifierID = 4002 - SomeIpGetterReliable = true - SomeIpSetterReliable = true - SomeIpNotifierReliable = true - SomeIpEventGroups = { 4002 } + SomeIpGetterID = 4000 + SomeIpSetterID = 4001 + SomeIpNotifierID = 4002 + SomeIpGetterReliable = true + SomeIpSetterReliable = true + SomeIpNotifierReliable = true + SomeIpEventGroups = { 4002 } } - method GetVersion { - SomeIpMethodID = 5000 - SomeIpReliable = true - } + method GetVersion { + SomeIpMethodID = 5000 + SomeIpReliable = true + } method GetSupportedSatelliteSystems { - SomeIpMethodID = 6000 - SomeIpReliable = true + SomeIpMethodID = 6000 + SomeIpReliable = true } } define org.genivi.commonapi.someip.deployment for provider EnhancedPositionService { - instance org.genivi.EnhancedPositionService.Configuration { - InstanceId = "EnhancedPositionService" - SomeIpInstanceID = 2000 - SomeIpUnicastAddress = "127.0.0.1" - } + instance org.genivi.EnhancedPositionService.Configuration { + InstanceId = "EnhancedPositionService" + SomeIpInstanceID = 2000 + SomeIpUnicastAddress = "127.0.0.1" + } } diff --git a/enhanced-position-service/franca/api/someip/EnhancedPosition.fdepl b/enhanced-position-service/franca/api/someip/EnhancedPosition.fdepl index 62f5a5f..cf2e652 100644 --- a/enhanced-position-service/franca/api/someip/EnhancedPosition.fdepl +++ b/enhanced-position-service/franca/api/someip/EnhancedPosition.fdepl @@ -3,39 +3,39 @@ import "../EnhancedPosition.fidl" import "../EnhancedPositionServiceTypes.fidl" define org.genivi.commonapi.someip.deployment for interface org.genivi.EnhancedPositionService.EnhancedPosition { - SomeIpServiceID = 1002 + SomeIpServiceID = 1002 - method GetVersion { + method GetVersion { SomeIpMethodID = 5000 - SomeIpReliable = true - } + SomeIpReliable = true + } - method GetPositionInfo { + method GetPositionInfo { SomeIpMethodID = 6000 - SomeIpReliable = true - } + SomeIpReliable = true + } - method GetSatelliteInfo { + method GetSatelliteInfo { SomeIpMethodID = 7000 - SomeIpReliable = true - } + SomeIpReliable = true + } - method GetTime { + method GetTime { SomeIpMethodID = 8000 - SomeIpReliable = true - } + SomeIpReliable = true + } - broadcast PositionUpdate { - SomeIpEventID = 9000 - SomeIpReliable = true - SomeIpEventGroups = { 9000 } - } + broadcast PositionUpdate { + SomeIpEventID = 9000 + SomeIpReliable = true + SomeIpEventGroups = { 9000 } + } } define org.genivi.commonapi.someip.deployment for provider EnhancedPositionService { - instance org.genivi.EnhancedPositionService.EnhancedPosition { - InstanceId = "EnhancedPositionService" - SomeIpInstanceID = 2000 - SomeIpUnicastAddress = "127.0.0.1" - } + instance org.genivi.EnhancedPositionService.EnhancedPosition { + InstanceId = "EnhancedPositionService" + SomeIpInstanceID = 2000 + SomeIpUnicastAddress = "127.0.0.1" + } } diff --git a/enhanced-position-service/franca/api/someip/PositionFeedback.fdepl b/enhanced-position-service/franca/api/someip/PositionFeedback.fdepl index 300eff8..31469b3 100644 --- a/enhanced-position-service/franca/api/someip/PositionFeedback.fdepl +++ b/enhanced-position-service/franca/api/someip/PositionFeedback.fdepl @@ -3,23 +3,23 @@ import "../PositionFeedback.fidl" import "../EnhancedPositionServiceTypes.fidl" define org.genivi.commonapi.someip.deployment for interface org.genivi.EnhancedPositionService.PositionFeedback { - SomeIpServiceID = 1003 + SomeIpServiceID = 1003 - method GetVersion { + method GetVersion { SomeIpMethodID = 5000 - SomeIpReliable = true - } + SomeIpReliable = true + } - method SetPositionFeedback { + method SetPositionFeedback { SomeIpMethodID = 6000 - SomeIpReliable = true - } + SomeIpReliable = true + } } define org.genivi.commonapi.someip.deployment for provider EnhancedPositionService { - instance org.genivi.EnhancedPositionService.PositionFeedback { - InstanceId = "EnhancedPositionService" - SomeIpInstanceID = 2000 - SomeIpUnicastAddress = "127.0.0.1" - } + instance org.genivi.EnhancedPositionService.PositionFeedback { + InstanceId = "EnhancedPositionService" + SomeIpInstanceID = 2000 + SomeIpUnicastAddress = "127.0.0.1" + } } -- cgit v1.2.1