summaryrefslogtreecommitdiff
path: root/org.genivi.commonapi.core.verification/fidl/ti_stability_mp.fidl
blob: 0b89dcb5231f4bc15ea231c0374a286e13d60f1e (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
/* 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 commonapi.stability.mp

interface TestInterface {
    version { major 1 minor 0 }

	attribute tArray testAttribute
	   
    method testMethod {
        in {
            tArray x
        }
        out {
            tArray y
        }
    }
	    	
    broadcast testBroadcast {
        out {
            tArray y
        }
    }
       
    array tArray of UInt8
}

interface ControlInterface {
	version { major 1 minor 0 }
    method controlMethod {
    	in {
    		UInt8 id
    		UInt32 data
    	}
    	out {
    		UInt8 command
    		UInt32 data1
    		UInt32 data2
    	}
    }


}