Commit 1b3e9743 authored by LorenzoMonti's avatar LorenzoMonti
Browse files

minor fix

parent 99535d41
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
{
    "start_freq": 1000000000,
    "stop_freq": 4000000000,
    "stop_freq": 2000000000,
    "sweep_trace_points": 5001,
    "resolution_bandwith": 1000000,
    "video_bandwith": 100,
    "resolution_bandwith": 10000000,
    "video_bandwith": 10,
    "amplitude_log_scale": 1,
    "reference_level": -62,
    "reference_level": -54,
    "zoom_spot_marker": [
        1,
        "SPOT"
+1 −1
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@
    "": "",
    "gpib": "GPIB::18::INSTR",
    "remote_eth": "TCPIP0::localhost::49153::SOCKET",
    "local_eth": "TCPIP0::<ip>::INSTR"
    "local_eth": "TCPIP0::192.168.60.41::49153::SOCKET"
}
 No newline at end of file
+29 −3
Original line number Diff line number Diff line
@@ -39,14 +39,40 @@
        <child>
          <object class="GtkEntry">
            <property name="width-request">589</property>
            <property name="height-request">150</property>
            <property name="height-request">250</property>
            <property name="visible">True</property>
            <property name="can-focus">True</property>
            <property name="margin-bottom">64</property>
            <property name="text" translatable="yes">Interface chosen: GPIB</property>
          </object>
          <packing>
            <property name="x">16</property>
            <property name="y">595</property>
            <property name="x">600</property>
            <property name="y">100</property>
          </packing>
        </child>
        <child>
          <object class="GtkAccelLabel">
            <property name="width-request">100</property>
            <property name="height-request">80</property>
            <property name="visible">True</property>
            <property name="can-focus">False</property>
            <property name="label" translatable="yes">Interface selected</property>
          </object>
          <packing>
            <property name="x">131</property>
            <property name="y">200</property>
          </packing>
        </child>
        <child>
          <object class="GtkEntry">
            <property name="width-request">220</property>
            <property name="visible">True</property>
            <property name="can-focus">True</property>
            <property name="max-width-chars">101</property>
          </object>
          <packing>
            <property name="x">256</property>
            <property name="y">220</property>
          </packing>
        </child>
      </object>
+29 −3
Original line number Diff line number Diff line
@@ -39,14 +39,40 @@
        <child>
          <object class="GtkEntry">
            <property name="width-request">589</property>
            <property name="height-request">150</property>
            <property name="height-request">250</property>
            <property name="visible">True</property>
            <property name="can-focus">True</property>
            <property name="margin-bottom">64</property>
            <property name="text" translatable="yes">Interface chosen: GPIB</property>
          </object>
          <packing>
            <property name="x">16</property>
            <property name="y">595</property>
            <property name="x">600</property>
            <property name="y">100</property>
          </packing>
        </child>
        <child>
          <object class="GtkAccelLabel">
            <property name="width-request">100</property>
            <property name="height-request">80</property>
            <property name="visible">True</property>
            <property name="can-focus">False</property>
            <property name="label" translatable="yes">Interface selected</property>
          </object>
          <packing>
            <property name="x">131</property>
            <property name="y">200</property>
          </packing>
        </child>
        <child>
          <object class="GtkEntry">
            <property name="width-request">220</property>
            <property name="visible">True</property>
            <property name="can-focus">True</property>
            <property name="max-width-chars">101</property>
          </object>
          <packing>
            <property name="x">256</property>
            <property name="y">220</property>
          </packing>
        </child>
      </object>
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ class Anritsu_MS2830A():
        Initializes 
        Input:
            name (string)    : name of the instrument
            address (string) : GPIB address
            address (string) : GPIB or ETH address
        """
        
        logging.info(__name__ + ' : Initializing instrument')
Loading