Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ad56b99a3df214b202783b8b21899eaeb25e9363 (plain) (blame)
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
PhysicalModel cGenRef {
	
	PhysicalSystem Sys {
		NodeRef node1: PC
//		NodeRef node2: PC
	}
	
	NodeClass PC {
		runtime = PC
		priomin = 1
		priomax = 5
		
		DefaultThread PhysicalThread1 {
			execmode = mixed
			interval = 100 ms
			prio = 5
			stacksize = 1024
			msgblocksize = 32
			msgpoolsize = 5
		}
		
//		Thread PhysicalThread2 {
//			execmode = blocked
//			prio = 5
//			stacksize = 1024
//			msgblocksize = 64
//			msgpoolsize = 3
//		}
	}
	
	RuntimeClass PC {
		model = multiThreaded
	}
}

Back to the top