Difference between revisions of "PCI Modem Sorting"

From FreekiWiki
Jump to navigation Jump to search
Line 1: Line 1:
NOTE: Hardware modems are: blah blah blah.
+
<graphvizl>
<graphviz>
 
 
   digraph D {
 
   digraph D {
  
Line 30: Line 29:
 
    
 
    
 
   }
 
   }
</graphviz>
+
</graphvizl>
 +
NOTE: Hardware modems always have an EPROM chip on them. Have someone show you what they look like so you can recognize them.
  
 
[[Category: Triage]]
 
[[Category: Triage]]
 
[[Category: Prebuild]]
 
[[Category: Prebuild]]

Revision as of 18:13, 8 March 2006

<graphvizl>

 digraph D {
  start         [label="START HERE", fontsize="11", shape="box", style="bold"]
  pcimodem      [label="Is it a PCI Modem?", fontsize="11"]
  build         [label="Send it to\nBUILD", fontsize="11", shape="box", style="bold"]
  sorting       [label="Send it back to\nCARD SORTING", fontsize="11", shape="box", style="bold"]
  store         [label="Label it and send to\nthe STORE", fontsize="11", shape="box", style="bold"]
  hardware      [label="Is it a\nHARDWARE modem?", fontsize="11"]
  pctel         [label="Is it a\nPCTEL modem?", fontsize="11"]
  agere         [label="Is it a\nAGERE modem?", fontsize="11"]
  lucent        [label="Is it a\nLUCENT modem?", fontsize="11"]


  start        -> pcimodem
  pcimodem     -> sorting [label="YES"]
  pcimodem     -> pctel [label="NO"]
  pctel        -> agere [label="NO"]
  pctel        -> build [label="YES"]
  agere        -> lucent [label="NO"]
  agere        -> build [label="YES"]
  lucent       -> hardware [label="NO"]
  lucent       -> build [label="YES"]
  hardware     -> store [label="NO"]
  hardware     -> build [label="YES"]


 }

</graphvizl> NOTE: Hardware modems always have an EPROM chip on them. Have someone show you what they look like so you can recognize them.