Difference between revisions of "PCI Modem Sorting"

From FreekiWiki
Jump to navigation Jump to search
 
({{cleanup}} or perhaps we should just delete it.)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<graphviz>
+
{{cleanup}}
 +
 
 +
<graphvizl>
 
   digraph D {
 
   digraph D {
  
Line 7: Line 9:
 
   build        [label="Send it to\nBUILD", fontsize="11", shape="box", style="bold"]
 
   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"]
 
   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"]
+
   tardis        [label="Send to\nthe TARDIS", fontsize="11", shape="box", style="bold"]
 +
  advanced      [label="Send to\nADVANCED RECEIVING", fontsize="11", shape="box", style="bold"]
  
 
   hardware      [label="Is it a\nHARDWARE modem?", fontsize="11"]
 
   hardware      [label="Is it a\nHARDWARE modem?", fontsize="11"]
Line 16: Line 19:
  
 
   start        -> pcimodem
 
   start        -> pcimodem
   pcimodem    -> sorting [label="YES"]
+
   pcimodem    -> sorting [label="NO"]
   pcimodem    -> pctel [label="NO"]
+
   pcimodem    -> pctel [label="YES"]
 
   pctel        -> agere [label="NO"]
 
   pctel        -> agere [label="NO"]
 
   pctel        -> build [label="YES"]
 
   pctel        -> build [label="YES"]
Line 24: Line 27:
 
   lucent      -> hardware [label="NO"]
 
   lucent      -> hardware [label="NO"]
 
   lucent      -> build [label="YES"]
 
   lucent      -> build [label="YES"]
   hardware    -> store [label="NO"]
+
   hardware    -> tardis [label="YES"]
   hardware    -> build [label="YES"]
+
   hardware    -> advanced [label="NO"]
  
 
    
 
    
 
   }
 
   }
</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: Old Prebuild]]
[[Category: Prebuild]]
 

Latest revision as of 12:49, 27 May 2009

This page or section appears to be out of date or otherwise inaccurate.
Please edit as seems necessary, removing the {{cleanup}} tag when you are through.


<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"]
  tardis        [label="Send to\nthe TARDIS", fontsize="11", shape="box", style="bold"]
  advanced      [label="Send to\nADVANCED RECEIVING", 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="NO"]
  pcimodem     -> pctel [label="YES"]
  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     -> tardis [label="YES"]
  hardware     -> advanced [label="NO"]


 }

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