summaryrefslogtreecommitdiff
path: root/enhanced-position-service/api/franca/Configuration.fidl
blob: 022d0c83d9e476a4f72e5ea92d8a0b5716a80ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*  SPDX-License-Identifier: MPL-2.0
    Component Name: EnhancedPositionService
    Compliance Level: Abstract Component
    Copyright (C) 2012, BMW Car IT GmbH, Continental Automotive GmbH, PCA Peugeot Citroën, XS Embedded GmbH
    License:
    This Source Code Form is subject to the terms of the
    Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
    this file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

package org.genivi.EnhancedPositionService

import org.genivi.EnhancedPositionService.EnhancedPositionServiceTypes.* from "EnhancedPositionServiceTypes.fidl"

<**
	@description : Configuration = This interface allows a client application to set and retrieve configuration options
**>
interface Configuration {
	version {
		major 0
		minor 0
	}
	
    <**
	    @description : SatelliteSystem = satellite system (GPS, Glonass, ...)
    **>
	attribute UInt16 SatelliteSystem 
	
    <**
	    @description : UpdateInterval = update interval
    **>
	attribute Int32 UpdateInterval

	<**
		@description : GetVersion = This method returns the API version implemented by the server application.
	**>
	method GetVersion {
		out {
			Version ^version
		}
	}
	
}