Changes between Version 1 and Version 2 of Software/eAM/mInstr


Ignore:
Timestamp:
Mar 10, 2012, 10:34:43 PM (12 years ago)
Author:
seskar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Software/eAM/mInstr

    v1 v2  
    11== Instrumentation Aggregate Manager ==
     2
     3This service controls the RF test system that is the core of [[wiki:Hardware/gDomains/dSB4 Sanbox 4]. It is used to control attenuation values between pairs of ports (ie. the eight (8) nodes and wimax BS) can be controlled individually through the standard OMF URL based services.
     4
     5=== set ===
     6
     7Set the attenuation value on given port pairs:
    28
    39{{{     
     
    1723  </service>
    1824}}}
     25
     26Example: set the attenuation value between node1-1 and node1-2 to 20 dB
     27
     28{{{
     29$ wget -O status http://internal2dmz.orbit-lab.org:5052/instr/set?portA=1\&portB=2\&att=20
     30}}}
     31
     32=== get ===
     33
     34Get the attenuation between a given pair of ports
     35
    1936{{{
    2037  <service name="get">
     
    3148}}}
    3249
     50Example: get the attenuation between node1-1 and node1-8
    3351
     52{{{
     53$ wget -O status http://internal2dmz.orbit-lab.org:5052/instr/get?portA=1\&portB=8
     54}}}
     55
     56=== default ===
    3457{{{
    3558  <service name="default">
     
    3760  </service>
    3861}}}
     62
     63=== status ===
     64
     65Get attenuation values on all port pairs
     66
     67{{{
     68  <service name="status">
     69     <info>This service outputs attenuation for all pairs.</info>
     70  </service>
     71}}}
     72
     73{{{
     74$ wget -O status http://internal2dmz.orbit-lab.org:5052/instr/status
     75}}}
     76
     77=== load ===
    3978
    4079{{{
     
    4988}}}
    5089
     90=== save ===
     91
    5192{{{
    5293  <service name="save">
     
    60101}}}
    61102
     103=== delete ===
    62104{{{
    63105  <service name="delete">
     
    65107  </service>
    66108}}}
     109
     110=== list ===
    67111
    68112{{{
     
    72116}}}
    73117
     118=== show ===
    74119{{{
    75120  <service name="show">
     
    82127  </service>
    83128}}}
    84 {{{
    85   <service name="status">
    86      <info>This service outputs attenuation for all pairs.</info>
    87   </service>
    88 }}}