aboutsummaryrefslogtreecommitdiffstats
path: root/doc/report/deps.dot
blob: 1f55dc464d9903f4f74c762a292539b8821b2f3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
digraph deps {
	main -> {system, types, eeprom, dac, can, signal, serial, table}
	can -> {system, types, spi}
	dac -> {system, types, spi}
	eeprom -> {system, types, spi}
	serial -> {types, eeprom, can, signal}
	signal -> {types, can}
	spi -> {system, types}
	table -> {types, can, eeprom, signal, serial}

	subgraph cluster_hal {
		label="HAL"
		style=dashed
		rank=same
		can; eeprom; dac;
	}
}