Skip to main content
summaryrefslogtreecommitdiffstats
blob: 74c920998cdec9134da5377877e6d5d5142508d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * This model defines a mapping between a logical ROOM model and a physical model (nodes and threads).
 * 
 * <p>Hint: Press F3 to open declaration of selected element or import</p>
 */
MappingModel TemplateMapping {
	
	import room.generic.physical.* from "../../../org.eclipse.etrice.modellib.java/model/GenericPhysical.etphys"
	import PingPongModel.* from "PingPong.room"

	Mapping LogSys -> GenericPhysicalSystem {
		SubSystemMapping subSystemRef -> node {
			ThreadMapping defaultThread -> DefaultPhysicalThread
		}
	}

}

Back to the top