You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
562 B
26 lines
562 B
<?xml version="1.0" ?>
|
|
<component-list
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="test1.xsd">
|
|
|
|
<!-- In this example, a component has two pins with the same id.
|
|
This is NOT valid ! -->
|
|
|
|
<component id="c1">
|
|
<pin id="vcc" />
|
|
<pin id="gnd" />
|
|
|
|
<pin id="in-1" />
|
|
<pin id="in-2" />
|
|
<pin id="out-1" />
|
|
</component>
|
|
|
|
<component id="c2">
|
|
<pin id="vcc" />
|
|
<pin id="gnd" />
|
|
|
|
<!-- Duplicated id -->
|
|
<pin id="pin-a" />
|
|
<pin id="pin-a" />
|
|
</component>
|
|
</component-list>
|
|
|