summaryrefslogtreecommitdiff
path: root/CommonAPI-Examples/E05Manager/fidl/E05Manager.fdepl
blob: 628f18adee491de8d10c5aba17d3716d3fddcacc (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* Copyright (C) 2015 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
 * 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/. */

import "platform:/plugin/org.genivi.commonapi.someip/deployment/CommonAPI-SOMEIP_deployment_spec.fdepl"
import "E05Manager.fidl"

define org.genivi.commonapi.someip.deployment for interface commonapi.examples.E05Manager {
	SomeIpServiceID = 4660

	attribute myDevices {
		SomeIpGetterID = 3000
		SomeIpSetterID = 3001
		SomeIpNotifierID = 33000
		SomeIpEventGroups = { 17749 }
	}
}

define org.genivi.commonapi.someip.deployment for provider Service {
	instance commonapi.examples.E05Manager {
		InstanceId = "commonapi.examples.Manager"
		
		SomeIpInstanceID = 1000
	
		SomeIpUnicastAddress = "127.0.0.1"
		SomeIpReliableUnicastPort = 30499
	}
}

define org.genivi.commonapi.someip.deployment for interface commonapi.examples.E05Device {
	SomeIpServiceID = 4661

	method doSomething {
		SomeIpMethodID = 33001
	}
}


define org.genivi.commonapi.someip.deployment for provider Service {
	instance commonapi.examples.E05Device {
		InstanceId = "commonapi.examples.Manager.device01"
		
		SomeIpInstanceID = 2000
	
		SomeIpUnicastAddress = "127.0.0.1"
		SomeIpUnreliableUnicastPort = 30500
	}
}

define org.genivi.commonapi.someip.deployment for provider Service {
	instance commonapi.examples.E05Device {
		InstanceId = "commonapi.examples.Manager.device02"
		
		SomeIpInstanceID = 2001
	
		SomeIpUnicastAddress = "127.0.0.1"
		SomeIpUnreliableUnicastPort = 30501
	}
}

define org.genivi.commonapi.someip.deployment for interface commonapi.examples.E05SpecialDevice {
	SomeIpServiceID = 4662

	method doSomethingSpecial {
		SomeIpMethodID = 33002
	}
}

define org.genivi.commonapi.someip.deployment for provider Service {
	instance commonapi.examples.E05SpecialDevice {
		InstanceId = "commonapi.examples.Manager.specialDevice00"
		
		SomeIpInstanceID = 3000
	
		SomeIpUnicastAddress = "127.0.0.1"
		SomeIpUnreliableUnicastPort = 30600
	}
}