PageRenderTime 47ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/geda-gaf-1.6.2/docs/wiki/geda-na_howto.html

#
HTML | 237 lines | 191 code | 40 blank | 6 comment | 0 complexity | 11d30353c4f3eee45422d4fc8e19fcf1 MD5 | raw file
Possible License(s): GPL-2.0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html>
  4. <head>
  5. <title></title>
  6. <link rel="stylesheet" media="screen" type="text/css" href="./style.css" />
  7. <link rel="stylesheet" media="screen" type="text/css" href="./design.css" />
  8. <link rel="stylesheet" media="print" type="text/css" href="./print.css" />
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. </head>
  11. <body>
  12. <div class="toc">
  13. <div class="tocheader toctoggle" id="toc__header">Table of Contents</div>
  14. <div id="toc__inside">
  15. <ul class="toc">
  16. <li class="level1"><div class="li"><span class="li"><a href="#net_attribute_mini-howto" class="toc">net= attribute mini-HOWTO</a></span></div>
  17. <ul class="toc">
  18. <li class="level2"><div class="li"><span class="li"><a href="#what_is_the_net_attribute_used_for" class="toc">What is the net= attribute used for?</a></span></div></li>
  19. <li class="level2"><div class="li"><span class="li"><a href="#what_is_the_format_of_the_net_attribute" class="toc">What is the format of the net= attribute?</a></span></div></li>
  20. <li class="level2"><div class="li"><span class="li"><a href="#how_do_you_actually_use_the_net_attribute" class="toc">How do you actually use the net= attribute?</a></span></div></li>
  21. <li class="level2"><div class="li"><span class="li"><a href="#caveats_bugs" class="toc">Caveats / Bugs</a></span></div></li>
  22. <li class="level2"><div class="li"><span class="li"><a href="#example" class="toc">Example</a></span></div></li>
  23. <li class="level2"><div class="li"><span class="li"><a href="#final_notes" class="toc">Final notes</a></span></div></li></ul>
  24. </li></ul>
  25. </div>
  26. </div>
  27. <h1><a name="net_attribute_mini-howto" id="net_attribute_mini-howto">net= attribute mini-HOWTO</a></h1>
  28. <div class="level1">
  29. <p>
  30. by: Ales Hvezda
  31. </p>
  32. <p>
  33. This document is released under <a href="http://www.gnu.org/copyleft/fdl.html" class="urlextern" title="http://www.gnu.org/copyleft/fdl.html" rel="nofollow">GFDL</a>
  34. </p>
  35. <p>
  36. October 2nd, 2003
  37. </p>
  38. <p>
  39. The information in this document is current as of 19991011.
  40. </p>
  41. </div>
  42. <!-- SECTION "net= attribute mini-HOWTO" [1-216] -->
  43. <h2><a name="what_is_the_net_attribute_used_for" id="what_is_the_net_attribute_used_for">What is the net= attribute used for?</a></h2>
  44. <div class="level2">
  45. <p>
  46. The <strong><code>net=</code></strong> attribute is used to specify power, ground, and/or arbitrary nets in the gEDA system.<br/>
  47. The <strong><code>net=</code></strong> attribute is used instead some of the other systems of specifying power/ground (such as having power/ground pins on symbols or power boxes). Some devices have lots of power/ground pins and having all of these pins on the symbol would increase its size and make it unmanageable. The <strong><code>net=</code></strong> attribute is the power/ground specification of choice in the gEDA system because of its simplicity and versatility. Now having said all this, you can have power/ground pins on a symbol, but gnetlist will probably not recognize these nets connected to these pins as separate power/ground nets. Please keep this in mind as you draw symbols.
  48. </p>
  49. </div>
  50. <!-- SECTION "What is the net= attribute used for?" [217-1022] -->
  51. <h2><a name="what_is_the_format_of_the_net_attribute" id="what_is_the_format_of_the_net_attribute">What is the format of the net= attribute?</a></h2>
  52. <div class="level2">
  53. <p>
  54. Attributes in gEDA are simple text items which are in the form <code>name=value</code>. All proper attributes follow this form. Attribute names are always lower case, but the value can be upper or lower case. gnetlist and friends are case sensitive. Typically net/signal names by default are upper case.<br/>
  55. Attribute can be attached to an object or in certain cases (like the <strong><code>net=</code></strong> attribute) can be free oating (not attached to anything). The free floating attributes are also called toplevel attributes.<br/>
  56. The <strong><code>net=</code></strong> attribute is a text item which takes on the following form:
  57. </p>
  58. <pre class="code">net=signalname:pinname,pinname,pinname,...</pre>
  59. <p>
  60. where:
  61. </p>
  62. <table class="inline">
  63. <tr>
  64. <td> <strong><code>net=</code></strong> </td><td> The attribute name (always the same, lowercase) </td>
  65. </tr>
  66. <tr>
  67. <td> signalname </td><td> The signal or net being defines (like +5V, GND, etc&hellip;) </td>
  68. </tr>
  69. <tr>
  70. <td> pinname </td><td> The pin name (or number) which is assigned to this signal/net (or pin names/numbers) </td>
  71. </tr>
  72. </table>
  73. <p>
  74. The signalname cannot contain the &quot;:&quot; character (since it is a delimiter). The pinname is the pin name (A1, P2, D1, etc&hellip;) or pin number (1, 2, 5, 13, etc&hellip;). The pinname cannot contain the &quot;,&quot; character (since it is also a delimiter). pinnames are typically the same sort of numbers/names like the <code>pin#=#</code> attribute (if you are familiar with that attribute).<br/>
  75. You can only have ONE signalname per <strong><code>net=</code></strong> attribute, but you can have as many pinnames/numbers as you want.
  76. </p>
  77. </div>
  78. <!-- SECTION "What is the format of the net= attribute?" [1023-2446] -->
  79. <h2><a name="how_do_you_actually_use_the_net_attribute" id="how_do_you_actually_use_the_net_attribute">How do you actually use the net= attribute?</a></h2>
  80. <div class="level2">
  81. <p>
  82. You can place the <strong><code>net=</code></strong> attribute in several places. Here’s the list so far:
  83. </p>
  84. <ul>
  85. <li class="level1"><div class="li"> Inside a symbol either as an attached attribute or an unattached attribute (toplevel attribute). Example which creates power/gnd nets: <strong><code>net=GND:7</code></strong> or <strong><code>net=+5V:14</code></strong></div>
  86. </li>
  87. <li class="level1"><div class="li"> Outside a symbol (which is instantiated on a schematic) attached as an attribute to override an existing <strong><code>net=</code></strong> created net/signal. Suppose a symbol has a <strong><code>net=GND:7</code></strong> inside it already; attaching this to the symbol: <strong><code>net=AGND:7</code></strong> overrides the GND net (on pin 7) calling it AGND and connects/associates it to pin 7.</div>
  88. </li>
  89. <li class="level1"><div class="li"> Outside or inside a symbol to connect a net to a visible pin automatically. This is still untested and still might have some undesirable (negative) side effects. Use with caution.</div>
  90. </li>
  91. <li class="level1"><div class="li"> Attached to one of those special power/gnd symbol (like vcc/gnd/vdd) and you can change what that symbol represents. You could change the ground symbol to create a net called DIGITAL GND without editing the symbol (<strong><code>net=DIGITAL_GND:1</code></strong>).<br/>
  92. In the current symbol (19991011) library there are symbols named <strong>vdd-1.sym</strong>, <strong>vcc-1.sym</strong>, <strong>vee-1.sym</strong>, etc&hellip; which do not have a <strong><code>net=</code></strong> attribute inside, so you must attach the <strong><code>net=</code></strong> attribute yourself (in the schematic).<br/>
  93. There also symbols named 5V-minus-1.sym, 12V-plus-1.sym, 9V-plus-1.sym, etc&hellip; which have the appropriate <strong><code>net=</code></strong> attribute in them already (can be overridden though). You can use these symbol as examples of how to use the <strong><code>net=</code></strong> attribute.<br/>
  94. </div>
  95. </li>
  96. </ul>
  97. <p>
  98. You can have as many <strong><code>net=</code></strong> attributes as you want. Just remember that <strong><code>net=</code></strong> attributes attached to the outside of a symbol override any equivalent internal (inside the symbol) <strong><code>net=</code></strong> attributes. If you run into a case where this doesn’t work, please let <strong>ahvezdaATgeda.seul.org</strong>. In fact, send any bug reports to that individual.
  99. </p>
  100. </div>
  101. <!-- SECTION "How do you actually use the net= attribute?" [2447-4387] -->
  102. <h2><a name="caveats_bugs" id="caveats_bugs">Caveats / Bugs</a></h2>
  103. <div class="level2">
  104. <p>
  105. The <strong><code>net=</code></strong> attribute/mechanism is fairly new, so there are bound to be bugs (many bugs). Here are some of the identified issues:
  106. </p>
  107. <ul>
  108. <li class="level1"><div class="li"> As of 19991011 almost all of the symbols in the standard library do not have the <strong><code>net=</code></strong> attribute or any other power/ground specifiers. Hopefully this will be updated sometime (any volunteers?).</div>
  109. </li>
  110. <li class="level1"><div class="li"> Attach a special power symbol (vcc/gnd) to a already named net will alias (rename) that net to the signalname specified in the <strong><code>net=</code></strong> attribute (in/attached to the vcc/gnd symbol). You can override this (so the reverse is true) by playing with the “net-naming-priority”. Be careful with this. There might be other “aliasing” issues which have not been identified yet.</div>
  111. </li>
  112. <li class="level1"><div class="li"> Creating a <strong><code>net=</code></strong> attribute which associates a signal name with a pin which is already visible on the symbol, is probably a bad idea. This does work, but all the ramifications have not been explored yet.</div>
  113. </li>
  114. <li class="level1"><div class="li"> It is probably a bad idea to have the same <strong><code>net=</code></strong> attribute attached several times. Ales has not formalized what happens in this case. Just remember that the <strong><code>net=</code></strong> attribute on the outside of a symbol should override the internal one.</div>
  115. </li>
  116. </ul>
  117. </div>
  118. <!-- SECTION "Caveats / Bugs" [4388-5599] -->
  119. <h2><a name="example" id="example">Example</a></h2>
  120. <div class="level2">
  121. <p>
  122. Here’s a schematic which uses standard symbols (note: the 7400 does not have the <strong><code>net=</code></strong> attribute inside yet). This schematic consists of a 7400 with the <strong><code>net=</code></strong> attributes attached for power and ground, One of the input pins grounded using a gnd symbol and the other at a logic one using the vcc symbol (with an attached <strong><code>net=</code></strong> attribute). One of the input net is named, but as you will see, the netname is replaced by the <strong><code>net=</code></strong> signal name (see above for more info on this). The output is pulled up with a pull up resistor which has power specified using the +5V symbol.<br/>
  123. </p>
  124. <table class="inline">
  125. <tr>
  126. <td> <a href="media/geda/net.jpg" class="media" target="_blank" title="geda:net.jpg"><img src="media/geda/net.jpg" class="media" alt="" /></a> </td>
  127. </tr>
  128. </table>
  129. <pre class="code">v 19991011
  130. C 38700 58100 1 0 0 7400-1.sym
  131. {
  132. T 39000 59000 5 10 1 1 0
  133. uref=U100
  134. T 38900 59500 5 10 1 1 0
  135. net=GND:7
  136. T 38900 59300 5 10 1 1 0
  137. net=+5V:14
  138. }
  139. N 38700 58800 37400 58800 4
  140. {
  141. T 37600 58900 5 10 1 1 0
  142. netname=NETLABEL
  143. }
  144. N 37400 58800 37400 59200 4
  145. N 38700 58400 37400 58400 4
  146. N 37400 58000 37400 58400 4
  147. C 37300 57700 1 0 0 gnd-1.sym
  148. C 37200 59200 1 0 0 vcc-1.sym
  149. {
  150. T 36800 59200 5 10 1 1 0
  151. net=+5V:1
  152. }
  153. N 40000 58600 41600 58600 4
  154. {
  155. T 41200 58700 5 10 1 1 0
  156. netname=OUTPUT
  157. }
  158. C 40700 58800 1 90 0 resistor-1.sym
  159. {
  160. T 40800 59200 5 10 1 1 0
  161. uref=R1
  162. }
  163. N 40600 58800 40600 58600 4
  164. N 40600 59900 40600 59700 4
  165. C 40400 59900 1 0 0 5V-plus-1.sym</pre>
  166. <p>
  167. <strong>gnetlist</strong> (using the geda netlist format) run using this sample schematic outputs this:
  168. </p>
  169. <pre class="code">START header
  170. gEDA&#039;s netlist format
  171. Created specifically for testing of gnetlist
  172. END header
  173. START components
  174. R1 device=RESISTOR
  175. U100 device=7400
  176. END components
  177. START renamed-nets
  178. NETLABEL -&gt; +5V
  179. END renamed-nets
  180. START nets
  181. +5V : R1 2, U100 14, U100 1
  182. GND : U100 7, U100 2
  183. OUTPUT : R1 1, U100 3
  184. END nets</pre>
  185. <p>
  186. Notice how NETLABEL was renamed (aliased to the +5V net).
  187. </p>
  188. </div>
  189. <!-- SECTION "Example" [5600-7377] -->
  190. <h2><a name="final_notes" id="final_notes">Final notes</a></h2>
  191. <div class="level2">
  192. <p>
  193. Send all bugs to <strong>ahvezdaATgeda.seul.org</strong> or <strong>geda-devATgeda.seul.org</strong> (mailing list, please subscribe first). [I’m sure there’s more to say here]
  194. </p>
  195. </div>
  196. <!-- SECTION "Final notes" [7378-] --></body>
  197. </html>