Changes between Version 1 and Version 2 of Software/eAM/mInstr
- Timestamp:
- Mar 10, 2012, 10:34:43 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Software/eAM/mInstr
v1 v2 1 1 == Instrumentation Aggregate Manager == 2 3 This 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 7 Set the attenuation value on given port pairs: 2 8 3 9 {{{ … … 17 23 </service> 18 24 }}} 25 26 Example: 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 34 Get the attenuation between a given pair of ports 35 19 36 {{{ 20 37 <service name="get"> … … 31 48 }}} 32 49 50 Example: get the attenuation between node1-1 and node1-8 33 51 52 {{{ 53 $ wget -O status http://internal2dmz.orbit-lab.org:5052/instr/get?portA=1\&portB=8 54 }}} 55 56 === default === 34 57 {{{ 35 58 <service name="default"> … … 37 60 </service> 38 61 }}} 62 63 === status === 64 65 Get 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 === 39 78 40 79 {{{ … … 49 88 }}} 50 89 90 === save === 91 51 92 {{{ 52 93 <service name="save"> … … 60 101 }}} 61 102 103 === delete === 62 104 {{{ 63 105 <service name="delete"> … … 65 107 </service> 66 108 }}} 109 110 === list === 67 111 68 112 {{{ … … 72 116 }}} 73 117 118 === show === 74 119 {{{ 75 120 <service name="show"> … … 82 127 </service> 83 128 }}} 84 {{{85 <service name="status">86 <info>This service outputs attenuation for all pairs.</info>87 </service>88 }}}