From 805b341245ec5f1d22ac6c12065a2c5641927a7a Mon Sep 17 00:00:00 2001 From: Joao Paulo Martins <joaopaulo.martins@ess.eu> Date: Wed, 19 Jul 2023 10:59:34 +0200 Subject: [PATCH] New WS Backend OPI integrated to main panel --- 10-Top/wsioc/instance.bob | 97 +- 10-Top/wsioc/top.bob | 81 +- 99-Shared/adc3117test/instance.bob | 132 + 99-Shared/adc3117test/top.bob | 146 + 99-Shared/adsis8300ws/scanning/ws_backend.bob | 14 +- 99-Shared/afg3000/fungen.bob | 79 + 99-Shared/afg3000/fungenChannel.bob | 6028 +++++++++++++++++ 99-Shared/afg3000/fungenInternalChannel.bob | 159 + 99-Shared/afg3000/fungenMain.bob | 751 ++ 9 files changed, 7468 insertions(+), 19 deletions(-) create mode 100644 99-Shared/adc3117test/instance.bob create mode 100644 99-Shared/adc3117test/top.bob create mode 100644 99-Shared/afg3000/fungen.bob create mode 100644 99-Shared/afg3000/fungenChannel.bob create mode 100644 99-Shared/afg3000/fungenInternalChannel.bob create mode 100644 99-Shared/afg3000/fungenMain.bob diff --git a/10-Top/wsioc/instance.bob b/10-Top/wsioc/instance.bob index 0140ad5..2d89a6e 100644 --- a/10-Top/wsioc/instance.bob +++ b/10-Top/wsioc/instance.bob @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> -<!--Saved on 2023-07-17 17:53:41 by joaopaulomartins--> +<!--Saved on 2023-07-19 10:05:24 by joaopaulomartins--> <display version="2.0.0"> <width>320</width> - <height>1080</height> + <height>1150</height> <background_color> <color name="Transparent" red="255" green="255" blue="255" alpha="0"> </color> @@ -12,7 +12,7 @@ <widget type="rectangle" version="2.0.0"> <name>BGGrey03-titlebar_3</name> <width>320</width> - <height>1080</height> + <height>1150</height> <line_width>0</line_width> <background_color> <color name="GROUP-BORDER" red="150" green="155" blue="151"> @@ -26,7 +26,7 @@ <x>20</x> <y>470</y> <width>280</width> - <height>220</height> + <height>290</height> <line_width>0</line_width> <background_color> <color name="GROUP-BACKGROUND" red="200" green="205" blue="201"> @@ -327,7 +327,7 @@ <widget type="rectangle" version="2.0.0"> <name>BGGrey03-background_12</name> <x>20</x> - <y>700</y> + <y>770</y> <width>280</width> <height>360</height> <line_width>0</line_width> @@ -349,7 +349,7 @@ </actions> <text>Scanning OPI - OLD</text> <x>40</x> - <y>740</y> + <y>810</y> <width>240</width> <tooltip>$(actions)</tooltip> </widget> @@ -370,7 +370,7 @@ </actions> <text>Scanning OPI - NEW</text> <x>40</x> - <y>780</y> + <y>850</y> <width>240</width> <tooltip>$(actions)</tooltip> </widget> @@ -379,7 +379,7 @@ <class>GROUP-TITLE</class> <text>Scanning</text> <x>20</x> - <y>700</y> + <y>770</y> <width>280</width> <height use_class="true">30</height> <font use_class="true"> @@ -397,7 +397,7 @@ <widget type="group" version="2.0.0"> <name>Overview</name> <x>30</x> - <y>820</y> + <y>890</y> <width>260</width> <height>230</height> <font> @@ -1106,4 +1106,83 @@ <actions> </actions> </widget> + <widget type="group" version="2.0.0"> + <name>Front-end and Back-end Control</name> + <x>30</x> + <y>686</y> + <width>260</width> + <height>74</height> + <foreground_color> + <color name="GROUP-BORDER" red="150" green="155" blue="151"> + </color> + </foreground_color> + <background_color> + <color name="GROUP-BACKGROUND" red="200" green="205" blue="201"> + </color> + </background_color> + <transparent>true</transparent> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_16</name> + <pv_name>$(P_BE_1)BE-Alive</pv_name> + <y>10</y> + <width>85</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="14.0"> + </font> + </font> + <format>6</format> + <precision>0</precision> + <show_units>false</show_units> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <rules> + <rule name="Color" prop_id="background_color" out_exp="false"> + <exp bool_exp="pv0 == 1"> + <value> + <color name="OK" red="61" green="216" blue="61"> + </color> + </value> + </exp> + <exp bool_exp="pv0 == 0"> + <value> + <color name="ERROR" red="252" green="13" blue="27"> + </color> + </value> + </exp> + <pv_name>$(P_BE_1)BE-Alive</pv_name> + </rule> + </rules> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="action_button" version="3.0.0"> + <name>Action Button RFLab_5</name> + <actions> + <action type="open_display"> + <file>../../99-Shared/adsis8300ws/scanning/ws_backend.bob</file> + <macros> + <P>$(P_WS)</P> + <Q>$(Q_WS)</Q> + </macros> + <target>tab</target> + <description>Open Display</description> + </action> + </actions> + <text>Open</text> + <x>97</x> + <y>10</y> + <width>120</width> + <height>20</height> + <font> + <font name="Fine Print" family="Source Sans Pro" style="REGULAR" size="14.0"> + </font> + </font> + <tooltip>$(actions)</tooltip> + </widget> + </widget> </display> diff --git a/10-Top/wsioc/top.bob b/10-Top/wsioc/top.bob index f129d01..f3949da 100644 --- a/10-Top/wsioc/top.bob +++ b/10-Top/wsioc/top.bob @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<!--Saved on 2023-07-17 17:18:29 by joaopaulomartins--> +<!--Saved on 2023-07-19 10:23:55 by joaopaulomartins--> <display version="2.0.0"> <name>WS Top</name> <macros> @@ -7,7 +7,7 @@ <TITLE>FC IOCs</TITLE> </macros> <width>1480</width> - <height>900</height> + <height>1220</height> <actions> </actions> <widget type="embedded" version="2.0.0"> @@ -21,6 +21,7 @@ <CONTROL_GROUP_1>PBI-WS01</CONTROL_GROUP_1> <M_ECMC>Axis1</M_ECMC> <P>$(CONTROL_GROUP):</P> + <P_BE_1>MEBT-010:PBI-WS-001:</P_BE_1> <P_ECMC>PBI-WS01:Ctrl-ECAT-100:</P_ECMC> <P_WS>MEBT-010:PBI-WS-001</P_WS> <Q_WS></Q_WS> @@ -34,7 +35,7 @@ <x>10</x> <y>60</y> <width>320</width> - <height>470</height> + <height>1150</height> <resize>2</resize> <actions> </actions> @@ -95,6 +96,8 @@ <CONTROL_GROUP_1>PBI-WSLAB</CONTROL_GROUP_1> <M_ECMC>Axis1</M_ECMC> <P>$(CONTROL_GROUP):</P> + <P_BE_1>PBI-WSLAB:PBI-WS-001:</P_BE_1> + <P_BE_2>PBI-WSLAB:PBI-WS-002:</P_BE_2> <P_ECMC>PBI-WSLAB:Ctrl-ECAT-100:</P_ECMC> <P_WS>PBI-WSLAB:PBI-WS-001</P_WS> <Q_WS></Q_WS> @@ -107,7 +110,7 @@ <x>1150</x> <y>60</y> <width>320</width> - <height>470</height> + <height>1150</height> <resize>2</resize> <actions> </actions> @@ -127,6 +130,7 @@ <CONTROL_GROUP_1>PBI-WS01</CONTROL_GROUP_1> <M_ECMC>Axis2</M_ECMC> <P>$(CONTROL_GROUP):</P> + <P_BE_1>MEBT-010:PBI-WS-002:</P_BE_1> <P_ECMC>PBI-WS01:Ctrl-ECAT-100:</P_ECMC> <P_WS>MEBT-010:PBI-WS-002</P_WS> <Q_WS></Q_WS> @@ -140,7 +144,7 @@ <x>350</x> <y>60</y> <width>320</width> - <height>470</height> + <height>1150</height> <resize>2</resize> <actions> </actions> @@ -160,6 +164,7 @@ <CONTROL_GROUP_1>PBI-WS01</CONTROL_GROUP_1> <M_ECMC>Axis3</M_ECMC> <P>$(CONTROL_GROUP):</P> + <P_BE_1>MEBT-010:PBI-WS-003:</P_BE_1> <P_ECMC>PBI-WS01:Ctrl-ECAT-100:</P_ECMC> <P_WS>MEBT-010:PBI-WS-003</P_WS> <Q_WS></Q_WS> @@ -173,7 +178,7 @@ <x>690</x> <y>60</y> <width>320</width> - <height>470</height> + <height>1150</height> <resize>2</resize> <actions> </actions> @@ -182,4 +187,68 @@ </color> </border_color> </widget> + <widget type="action_button" version="3.0.0"> + <name>Action Button RFLab_6</name> + <actions> + <action type="open_display"> + <file>../../99-Shared/adsis8300ws/scanning/ws_backend.bob</file> + <macros> + <P>PBI-WSLAB:PBI-WS-002</P> + <Q></Q> + </macros> + <target>tab</target> + <description>Open Display</description> + </action> + </actions> + <text>Open</text> + <x>1298</x> + <y>797</y> + <width>120</width> + <height>20</height> + <font> + <font name="Fine Print" family="Source Sans Pro" style="REGULAR" size="14.0"> + </font> + </font> + <tooltip>$(actions)</tooltip> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_16</name> + <pv_name>PBI-WSLAB:PBI-WS-002:BE-Alive</pv_name> + <x>1201</x> + <y>797</y> + <width>85</width> + <font> + <font family="Source Sans Pro" style="BOLD" size="14.0"> + </font> + </font> + <format>6</format> + <precision>0</precision> + <show_units>false</show_units> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <rules> + <rule name="Color" prop_id="background_color" out_exp="false"> + <exp bool_exp="pv0 == 1"> + <value> + <color name="OK" red="61" green="216" blue="61"> + </color> + </value> + </exp> + <exp bool_exp="pv0 == 0"> + <value> + <color name="ERROR" red="252" green="13" blue="27"> + </color> + </value> + </exp> + <pv_name>PBI-WSLAB:PBI-WS-002:BE-Alive</pv_name> + </rule> + </rules> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> </display> diff --git a/99-Shared/adc3117test/instance.bob b/99-Shared/adc3117test/instance.bob new file mode 100644 index 0000000..dc31eff --- /dev/null +++ b/99-Shared/adc3117test/instance.bob @@ -0,0 +1,132 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!--Saved on 2023-07-19 10:58:46 by joaopaulomartins--> +<display version="2.0.0"> + <width>320</width> + <height>470</height> + <background_color> + <color name="Transparent" red="255" green="255" blue="255" alpha="0"> + </color> + </background_color> + <actions> + </actions> + <widget type="rectangle" version="2.0.0"> + <name>BGGrey03-titlebar_3</name> + <width>320</width> + <height>470</height> + <line_width>0</line_width> + <background_color> + <color name="GROUP-BORDER" red="150" green="155" blue="151"> + </color> + </background_color> + <corner_width>10</corner_width> + <corner_height>10</corner_height> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>BGGrey03-background_9</name> + <x>20</x> + <y>240</y> + <width>280</width> + <height>70</height> + <line_width>0</line_width> + <background_color> + <color name="GROUP-BACKGROUND" red="200" green="205" blue="201"> + </color> + </background_color> + <corner_width>5</corner_width> + <corner_height>5</corner_height> + </widget> + <widget type="label" version="2.0.0"> + <name>BGGrey02-title_18</name> + <text>$(TITLE_1)</text> + <width>320</width> + <height>50</height> + <font> + <font family="Source Sans Pro" style="BOLD_ITALIC" size="26.0"> + </font> + </font> + <foreground_color> + <color name="WHITE" red="255" green="255" blue="255"> + </color> + </foreground_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + </widget> + <widget type="action_button" version="3.0.0"> + <name>Menu Button_3</name> + <actions> + <action type="open_display"> + <file>../adifc14emu/ifc1400.bob</file> + <macros> + <CH1>$(AMC_NAME_1):CH1</CH1> + <CH10>$(AMC_NAME_1):CH10</CH10> + <CH11>$(AMC_NAME_1):CH11</CH11> + <CH12>$(AMC_NAME_1):CH12</CH12> + <CH13>$(AMC_NAME_1):CH13</CH13> + <CH14>$(AMC_NAME_1):CH14</CH14> + <CH15>$(AMC_NAME_1):CH15</CH15> + <CH16>$(AMC_NAME_1):CH16</CH16> + <CH17>$(AMC_NAME_1):CH17</CH17> + <CH18>$(AMC_NAME_1):CH18</CH18> + <CH19>$(AMC_NAME_1):CH19</CH19> + <CH2>$(AMC_NAME_1):CH2</CH2> + <CH20>$(AMC_NAME_1):CH20</CH20> + <CH21>$(AMC_NAME_1):CH21</CH21> + <CH22>$(AMC_NAME_1):CH22</CH22> + <CH23>$(AMC_NAME_1):CH23</CH23> + <CH24>$(AMC_NAME_1):CH24</CH24> + <CH3>$(AMC_NAME_1):CH3</CH3> + <CH4>$(AMC_NAME_1):CH4</CH4> + <CH5>$(AMC_NAME_1):CH5</CH5> + <CH6>$(AMC_NAME_1):CH6</CH6> + <CH7>$(AMC_NAME_1):CH7</CH7> + <CH8>$(AMC_NAME_1):CH8</CH8> + <CH9>$(AMC_NAME_1):CH9</CH9> + <Name>ADIFC14</Name> + <P>$(CONTROL_GROUP_1):</P> + <R>$(AMC_NAME_1):</R> + </macros> + <target>tab</target> + </action> + </actions> + <text>DAQ IOC</text> + <x>40</x> + <y>260</y> + <width>240</width> + <tooltip>$(actions)</tooltip> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>BGGrey03-background_10</name> + <x>20</x> + <y>60</y> + <width>280</width> + <height>70</height> + <line_width>0</line_width> + <background_color> + <color name="GROUP-BACKGROUND" red="200" green="205" blue="201"> + </color> + </background_color> + <corner_width>5</corner_width> + <corner_height>5</corner_height> + </widget> + <widget type="action_button" version="3.0.0"> + <name>Action Button RFLab_1</name> + <actions> + <action type="open_display"> + <file>../mrfioc2_new/evr-mtca-300u.bob</file> + <macros> + <EVR>$(CONTROL_GROUP):$(R_EVR)</EVR> + <P>$(CONTROL_GROUP):</P> + <R>$(R_EVR):</R> + </macros> + <target>tab</target> + <description>Open Display</description> + </action> + </actions> + <text>EVR Engineer OPI</text> + <x>40</x> + <y>80</y> + <width>240</width> + <tooltip>$(actions)</tooltip> + </widget> +</display> diff --git a/99-Shared/adc3117test/top.bob b/99-Shared/adc3117test/top.bob new file mode 100644 index 0000000..a06a300 --- /dev/null +++ b/99-Shared/adc3117test/top.bob @@ -0,0 +1,146 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!--Saved on 2023-07-19 10:58:52 by joaopaulomartins--> +<display version="2.0.0"> + <name>ADC3117 Top</name> + <macros> + <FCscreen>../../99-Shared/adsis8300fc/channel.bob</FCscreen> + <TITLE>FC IOCs</TITLE> + </macros> + <width>1480</width> + <height>900</height> + <actions> + </actions> + <widget type="embedded" version="2.0.0"> + <name>Linking Container</name> + <macros> + <ACQ_EMU>LAB:Ctrl-AMC-110</ACQ_EMU> + <AMC_NAME_1>Ctrl-AMC-110</AMC_NAME_1> + <CONTROL_GROUP>$(CONTROL_GROUP_1)</CONTROL_GROUP> + <CONTROL_GROUP_1>LAB</CONTROL_GROUP_1> + <P>$(CONTROL_GROUP):</P> + <R>$(AMC_NAME):</R> + <R_EVR>Ctrl-EVR-999</R_EVR> + <TITLE_1>ADC3117 - AMC 1</TITLE_1> + </macros> + <file>instance.bob</file> + <x>10</x> + <y>60</y> + <width>320</width> + <height>470</height> + <resize>2</resize> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="group" version="2.0.0"> + <name>Titlebar_1</name> + <width>1480</width> + <height>50</height> + <style>3</style> + <transparent>true</transparent> + <widget type="rectangle" version="2.0.0"> + <name>titleBar_1</name> + <class>TITLE-BAR</class> + <x use_class="true">0</x> + <y use_class="true">0</y> + <width>1480</width> + <height use_class="true">50</height> + <line_width use_class="true">0</line_width> + <background_color use_class="true"> + <color name="PRIMARY-HEADER-BACKGROUND" red="151" green="188" blue="202"> + </color> + </background_color> + </widget> + <widget type="label" version="2.0.0"> + <name>title_1</name> + <class>TITLE</class> + <text>ADC3117 Test</text> + <x use_class="true">20</x> + <y use_class="true">0</y> + <width>770</width> + <height use_class="true">50</height> + <font use_class="true"> + <font name="Header 1" family="Source Sans Pro" style="BOLD_ITALIC" size="36.0"> + </font> + </font> + <foreground_color use_class="true"> + <color name="HEADER-TEXT" red="0" green="0" blue="0"> + </color> + </foreground_color> + <transparent use_class="true">true</transparent> + <horizontal_alignment use_class="true">0</horizontal_alignment> + <vertical_alignment use_class="true">1</vertical_alignment> + <wrap_words use_class="true">false</wrap_words> + </widget> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>BGGrey03-titlebar_3</name> + <x>350</x> + <y>60</y> + <width>320</width> + <height>150</height> + <line_width>0</line_width> + <background_color> + <color name="GROUP-BORDER" red="150" green="155" blue="151"> + </color> + </background_color> + <corner_width>10</corner_width> + <corner_height>10</corner_height> + </widget> + <widget type="label" version="2.0.0"> + <name>BGGrey02-title_18</name> + <text>AFG3000 (Func. Generator)</text> + <x>350</x> + <y>60</y> + <width>320</width> + <height>50</height> + <font> + <font family="Source Sans Pro" style="BOLD_ITALIC" size="26.0"> + </font> + </font> + <foreground_color> + <color name="WHITE" red="255" green="255" blue="255"> + </color> + </foreground_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>BGGrey03-background_10</name> + <x>370</x> + <y>120</y> + <width>280</width> + <height>70</height> + <line_width>0</line_width> + <background_color> + <color name="GROUP-BACKGROUND" red="200" green="205" blue="201"> + </color> + </background_color> + <corner_width>5</corner_width> + <corner_height>5</corner_height> + </widget> + <widget type="action_button" version="3.0.0"> + <name>Action Button</name> + <actions> + <action type="open_display"> + <file>../afg3000/fungenMain.bob</file> + <macros> + <CH1>AO0:</CH1> + <CH2>AO1:</CH2> + <P>LabS-ICS:Ctrl-FGEN-001:</P> + </macros> + <target>tab</target> + <description>Open Display</description> + </action> + </actions> + <text>LabS-ICS-Ctrl-FGEN-001</text> + <x>390</x> + <y>140</y> + <width>240</width> + <tooltip>$(actions)</tooltip> + </widget> +</display> diff --git a/99-Shared/adsis8300ws/scanning/ws_backend.bob b/99-Shared/adsis8300ws/scanning/ws_backend.bob index b56ce3b..fc93619 100644 --- a/99-Shared/adsis8300ws/scanning/ws_backend.bob +++ b/99-Shared/adsis8300ws/scanning/ws_backend.bob @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<!--Saved on 2023-07-18 22:03:35 by joaopaulomartins--> +<!--Saved on 2023-07-19 10:07:47 by joaopaulomartins--> <display version="2.0.0"> <name>WireScanner - Backend</name> <width>1020</width> @@ -226,6 +226,7 @@ <show_high>false</show_high> <show_low>false</show_low> <show_lolo>false</show_lolo> + <border_alarm_sensitive>false</border_alarm_sensitive> <minimum>-100.0</minimum> <maximum>120.0</maximum> </widget> @@ -742,6 +743,7 @@ </font> </font> <labels_from_pv>true</labels_from_pv> + <border_alarm_sensitive>false</border_alarm_sensitive> </widget> <widget type="led" version="2.0.0"> <name>LED</name> @@ -771,6 +773,7 @@ </font> </font> <labels_from_pv>true</labels_from_pv> + <border_alarm_sensitive>false</border_alarm_sensitive> </widget> <widget type="led" version="2.0.0"> <name>LED_1</name> @@ -796,6 +799,7 @@ </font> </font> <labels_from_pv>true</labels_from_pv> + <border_alarm_sensitive>false</border_alarm_sensitive> </widget> <widget type="led" version="2.0.0"> <name>LED_2</name> @@ -821,6 +825,7 @@ </font> </font> <labels_from_pv>true</labels_from_pv> + <border_alarm_sensitive>false</border_alarm_sensitive> </widget> <widget type="led" version="2.0.0"> <name>LED_3</name> @@ -871,6 +876,7 @@ </font> </font> <labels_from_pv>true</labels_from_pv> + <border_alarm_sensitive>false</border_alarm_sensitive> </widget> <widget type="led" version="2.0.0"> <name>LED_4</name> @@ -898,6 +904,7 @@ </font> </font> <labels_from_pv>true</labels_from_pv> + <border_alarm_sensitive>false</border_alarm_sensitive> </widget> <widget type="led" version="2.0.0"> <name>LED_5</name> @@ -923,6 +930,7 @@ </font> </font> <labels_from_pv>true</labels_from_pv> + <border_alarm_sensitive>false</border_alarm_sensitive> </widget> <widget type="led" version="2.0.0"> <name>LED_6</name> @@ -948,6 +956,7 @@ </font> </font> <labels_from_pv>true</labels_from_pv> + <border_alarm_sensitive>false</border_alarm_sensitive> </widget> <widget type="led" version="2.0.0"> <name>LED_7</name> @@ -1226,7 +1235,6 @@ <precision>0</precision> <actions> </actions> - <border_alarm_sensitive>false</border_alarm_sensitive> <border_color> <color red="0" green="128" blue="255"> </color> @@ -1290,7 +1298,6 @@ <precision>0</precision> <actions> </actions> - <border_alarm_sensitive>false</border_alarm_sensitive> <border_color> <color red="0" green="128" blue="255"> </color> @@ -1333,7 +1340,6 @@ <precision>0</precision> <actions> </actions> - <border_alarm_sensitive>false</border_alarm_sensitive> <border_color> <color red="0" green="128" blue="255"> </color> diff --git a/99-Shared/afg3000/fungen.bob b/99-Shared/afg3000/fungen.bob new file mode 100644 index 0000000..0718403 --- /dev/null +++ b/99-Shared/afg3000/fungen.bob @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="UTF-8"?> +<display version="2.0.0"> + <name>AFG3000 Top</name> + <width>1080</width> + <height>1380</height> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <grid_step_x>6</grid_step_x> + <grid_step_y>6</grid_step_y> + <widget type="label" version="2.0.0"> + <name>Title Banner</name> + <text> Arbitrary Function Generator</text> + <width>1024</width> + <height>45</height> + <font> + <font name="Header 1" family="Source Sans Pro" style="BOLD_ITALIC" size="36.0"> + </font> + </font> + <foreground_color> + <color name="IO OutputPV Fg" red="255" green="255" blue="255"> + </color> + </foreground_color> + <background_color> + <color name="IO OutputPV Bg" red="121" green="123" blue="126"> + </color> + </background_color> + <transparent>false</transparent> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="embedded" version="2.0.0"> + <name>Linking Container Template</name> + <file>fungenMain.bob</file> + <y>48</y> + <width>1051</width> + <height>1323</height> + <actions> + </actions> + <rules> + <rule name="clearIOPIRule" prop_id="opi_file" out_exp="false"> + <exp bool_exp="true"> + <value></value> + </exp> + <exp bool_exp="false"> + <value></value> + </exp> + <pv_name>loc://AFGName</pv_name> + </rule> + <rule name="setOPIRule" prop_id="opi_file" out_exp="false"> + <exp bool_exp="true"> + <value>fungenMain.opi</value> + </exp> + <exp bool_exp="false"> + <value>fungenMain.opi</value> + </exp> + <pv_name>loc://AFGName</pv_name> + </rule> + </rules> + <scripts> + <script file="Scripts/Device2Macro.js"> + <pv_name>loc://AFGName</pv_name> + </script> + </scripts> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> +</display> diff --git a/99-Shared/afg3000/fungenChannel.bob b/99-Shared/afg3000/fungenChannel.bob new file mode 100644 index 0000000..b254797 --- /dev/null +++ b/99-Shared/afg3000/fungenChannel.bob @@ -0,0 +1,6028 @@ +<?xml version="1.0" encoding="UTF-8"?> +<display version="2.0.0"> + <width>740</width> + <height>1250</height> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <grid_step_x>6</grid_step_x> + <grid_step_y>6</grid_step_y> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_8</name> + <macros> + <pv_name></pv_name> + </macros> + <x>372</x> + <width>361</width> + <height>288</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="32" blue="92"> + </color> + </line_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_4</name> + <macros> + <pv_name></pv_name> + </macros> + <x>1</x> + <y>927</y> + <width>361</width> + <height>74</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="32" blue="92"> + </color> + </line_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_3</name> + <macros> + <pv_name></pv_name> + </macros> + <y>480</y> + <width>361</width> + <height>191</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="32" blue="92"> + </color> + </line_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_1</name> + <macros> + <pv_name></pv_name> + </macros> + <width>361</width> + <height>115</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="32" blue="92"> + </color> + </line_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template</name> + <macros> + <pv_name></pv_name> + </macros> + <x>372</x> + <y>296</y> + <width>361</width> + <height>949</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="32" blue="92"> + </color> + </line_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input</name> + <pv_name>$(P)$(R)$(CH)IMPD</pv_name> + <x>122</x> + <y>55</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <tooltip>1 Ohm to 10kOhm</tooltip> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update</name> + <pv_name>$(P)$(R)$(CH)rIMPD</pv_name> + <x>241</x> + <y>54</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label</name> + <text>Impedance</text> + <x>10</x> + <y>53</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_1</name> + <pv_name>$(P)$(R)$(CH)rPOL</pv_name> + <x>241</x> + <y>73</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_1</name> + <text>Polarity</text> + <x>10</x> + <y>72</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button</name> + <pv_name>$(P)$(R)$(CH)POL</pv_name> + <x>120</x> + <y>72</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_2</name> + <pv_name>$(P)$(R)$(CH)rSTAT</pv_name> + <x>241</x> + <y>36</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_2</name> + <text>State</text> + <x>10</x> + <y>35</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button_1</name> + <pv_name>$(P)$(R)$(CH)STAT</pv_name> + <x>120</x> + <y>35</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <tooltip>On: Output enabled +Off: Output disabled</tooltip> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_3</name> + <text>Output settings</text> + <x>15</x> + <y>9</y> + <width>330</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_4</name> + <text>Modulation Settings</text> + <x>389</x> + <y>296</y> + <width>324</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_5</name> + <text>Amplitude Modulation</text> + <x>396</x> + <y>324</y> + <width>313</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_3</name> + <pv_name>$(P)$(R)$(CH)rFMDE</pv_name> + <x>614</x> + <y>612</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_6</name> + <text>Deviation</text> + <x>389</x> + <y>611</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_1</name> + <pv_name>$(P)$(R)$(CH)FMDE</pv_name> + <x>492</x> + <y>613</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_4</name> + <pv_name>$(P)$(R)$(CH)rAMFU</pv_name> + <x>614</x> + <y>453</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_7</name> + <text>Function</text> + <x>389</x> + <y>452</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Function</name> + <pv_name>$(P)$(R)$(CH)AMFU</pv_name> + <x>490</x> + <y>452</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_5</name> + <pv_name>$(P)$(R)$(CH)rAMFR</pv_name> + <x>614</x> + <y>434</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_8</name> + <text>Frequency</text> + <x>389</x> + <y>433</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_2</name> + <pv_name>$(P)$(R)$(CH)AMFR</pv_name> + <x>492</x> + <y>435</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_6</name> + <pv_name>$(P)$(R)$(CH)rAMFF</pv_name> + <x>614</x> + <y>472</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_9</name> + <text>Function EFILE</text> + <x>389</x> + <y>471</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_3</name> + <pv_name>$(P)$(R)$(CH)AMFF</pv_name> + <x>492</x> + <y>473</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <tooltip>Path to file on USB storage</tooltip> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_7</name> + <pv_name>$(P)$(R)$(CH)rFMSO</pv_name> + <x>614</x> + <y>593</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_10</name> + <text>Source</text> + <x>389</x> + <y>592</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Source</name> + <pv_name>$(P)$(R)$(CH)FMSO</pv_name> + <x>490</x> + <y>592</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_11</name> + <text>Internal</text> + <x>396</x> + <y>414</y> + <width>313</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_8</name> + <pv_name>$(P)$(R)$(CH)rFMST</pv_name> + <x>614</x> + <y>574</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_12</name> + <text>State</text> + <x>389</x> + <y>573</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State</name> + <pv_name>$(P)$(R)$(CH)FMST</pv_name> + <x>490</x> + <y>573</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_13</name> + <text>Burst</text> + <x>396</x> + <y>28</y> + <width>313</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_9</name> + <pv_name>$(P)$(R)$(CH)rBSTA</pv_name> + <x>621</x> + <y>48</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_14</name> + <text>State</text> + <x>389</x> + <y>47</y> + <width>115</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State_1</name> + <pv_name>$(P)$(R)$(CH)BSTA</pv_name> + <x>503</x> + <y>47</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_10</name> + <pv_name>$(P)$(R)$(CH)rBMOD</pv_name> + <x>621</x> + <y>67</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_15</name> + <text>Mode</text> + <x>389</x> + <y>66</y> + <width>115</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State_2</name> + <pv_name>$(P)$(R)$(CH)BMOD</pv_name> + <x>503</x> + <y>66</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_11</name> + <pv_name>$(P)$(R)$(CH)rBNCY</pv_name> + <x>621</x> + <y>86</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_16</name> + <text>N Cycles</text> + <x>389</x> + <y>85</y> + <width>115</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_4</name> + <pv_name>$(P)$(R)$(CH)BNCY</pv_name> + <x>505</x> + <y>87</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_12</name> + <pv_name>$(P)$(R)$(CH)rBTDE</pv_name> + <x>621</x> + <y>105</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_17</name> + <text>T Delay</text> + <x>389</x> + <y>104</y> + <width>115</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_5</name> + <pv_name>$(P)$(R)$(CH)BTDE</pv_name> + <x>505</x> + <y>106</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_13</name> + <pv_name>$(P)$(R)$(CH)rCOMB</pv_name> + <x>614</x> + <y>527</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_18</name> + <text>Combine Feed</text> + <x>389</x> + <y>526</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_19</name> + <text>Noise</text> + <x>396</x> + <y>507</y> + <width>313</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State_3</name> + <pv_name>$(P)$(R)$(CH)COMB</pv_name> + <x>490</x> + <y>526</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_20</name> + <text>Frequency Modulation</text> + <x>396</x> + <y>550</y> + <width>313</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_21</name> + <text>Internal</text> + <x>396</x> + <y>640</y> + <width>313</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_14</name> + <pv_name>$(P)$(R)$(CH)rFMFU</pv_name> + <x>614</x> + <y>682</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_22</name> + <text>Function</text> + <x>389</x> + <y>681</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Function_1</name> + <pv_name>$(P)$(R)$(CH)FMFU</pv_name> + <x>490</x> + <y>681</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_15</name> + <pv_name>$(P)$(R)$(CH)rFMFR</pv_name> + <x>614</x> + <y>663</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>2</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_23</name> + <text>Frequency</text> + <x>389</x> + <y>662</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_6</name> + <pv_name>$(P)$(R)$(CH)FMFR</pv_name> + <x>492</x> + <y>664</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_16</name> + <pv_name>$(P)$(R)$(CH)rFMFF</pv_name> + <x>614</x> + <y>701</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_24</name> + <text>Function EFILE</text> + <x>389</x> + <y>700</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_7</name> + <pv_name>$(P)$(R)$(CH)FMFF</pv_name> + <x>492</x> + <y>702</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <tooltip>Path to file on USB storage</tooltip> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_17</name> + <pv_name>$(P)$(R)$(CH)rAMDE</pv_name> + <x>614</x> + <y>386</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_25</name> + <text>Depth</text> + <x>389</x> + <y>385</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_8</name> + <pv_name>$(P)$(R)$(CH)AMDE</pv_name> + <x>492</x> + <y>387</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_18</name> + <pv_name>$(P)$(R)$(CH)rAMSO</pv_name> + <x>614</x> + <y>367</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_26</name> + <text>Source</text> + <x>389</x> + <y>366</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Source_1</name> + <pv_name>$(P)$(R)$(CH)AMSO</pv_name> + <x>490</x> + <y>366</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_19</name> + <pv_name>$(P)$(R)$(CH)rAMST</pv_name> + <x>614</x> + <y>348</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_27</name> + <text>State</text> + <x>389</x> + <y>347</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State_4</name> + <pv_name>$(P)$(R)$(CH)AMST</pv_name> + <x>490</x> + <y>347</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_2</name> + <macros> + <pv_name></pv_name> + </macros> + <y>258</y> + <width>361</width> + <height>214</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="32" blue="92"> + </color> + </line_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_28</name> + <text>Frequency settings</text> + <x>19</x> + <y>268</y> + <width>322</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_20</name> + <pv_name>$(P)$(R)$(CH)rFCEN</pv_name> + <x>243</x> + <y>379</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>2</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_29</name> + <text>Center</text> + <x>10</x> + <y>378</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_9</name> + <pv_name>$(P)$(R)$(CH)FCEN</pv_name> + <x>121</x> + <y>380</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_22</name> + <pv_name>$(P)$(R)$(CH)rFFIX</pv_name> + <x>121</x> + <y>307</y> + <width>218</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>2</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_31</name> + <text>Frequency</text> + <x>10</x> + <y>287</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_11</name> + <pv_name>$(P)$(R)$(CH)FFIX</pv_name> + <x>121</x> + <y>289</y> + <width>216</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <tooltip>Resolution 1µHz or 12 digits.</tooltip> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_24</name> + <pv_name>$(P)$(R)$(CH)rFMOD</pv_name> + <x>243</x> + <y>329</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_33</name> + <text>Mode</text> + <x>10</x> + <y>328</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button_3</name> + <pv_name>$(P)$(R)$(CH)FMOD</pv_name> + <x>119</x> + <y>328</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_25</name> + <pv_name>$(P)$(R)$(CH)rFSPA</pv_name> + <x>243</x> + <y>395</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>2</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_34</name> + <text>Span</text> + <x>10</x> + <y>394</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_12</name> + <pv_name>$(P)$(R)$(CH)FSPA</pv_name> + <x>121</x> + <y>396</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_26</name> + <pv_name>$(P)$(R)$(CH)rFSTR</pv_name> + <x>243</x> + <y>414</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>2</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_35</name> + <text>Start</text> + <x>10</x> + <y>413</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_13</name> + <pv_name>$(P)$(R)$(CH)FSTR</pv_name> + <x>121</x> + <y>415</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_27</name> + <pv_name>$(P)$(R)$(CH)rFSTO</pv_name> + <x>243</x> + <y>433</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_36</name> + <text>Stop</text> + <x>10</x> + <y>432</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_14</name> + <pv_name>$(P)$(R)$(CH)FSTO</pv_name> + <x>121</x> + <y>434</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_28</name> + <pv_name>$(P)$(R)$(CH)rPUDE</pv_name> + <x>241</x> + <y>584</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_37</name> + <text>Delay</text> + <x>11</x> + <y>583</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_38</name> + <text>Pulse Settings</text> + <x>8</x> + <y>489</y> + <width>332</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_15</name> + <pv_name>$(P)$(R)$(CH)PUDE</pv_name> + <x>122</x> + <y>585</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="table" version="2.0.0"> + <name>Table Template</name> + <x>54</x> + <y>1028</y> + <width>266</width> + <height>163</height> + <font> + <font name="IO Input 1" family="arial" style="BOLD" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO OutputPV Fg" red="255" green="255" blue="255"> + </color> + </foreground_color> + <background_color> + <color name="IO OutputPV Bg" red="121" green="123" blue="126"> + </color> + </background_color> + <columns> + <column> + <name></name> + <width>100</width> + <editable>false</editable> + </column> + <column> + <name>Sine, Square, Ramp, Arb, Sin(x)/x, Gaussian, Lorentz, Exp rise, Exp decay, Haversine</name> + <width>100</width> + <editable>false</editable> + </column> + <column> + <name>Pulse</name> + <width>100</width> + <editable>true</editable> + </column> + <column> + <name>Noise, DC</name> + <width>100</width> + <editable>true</editable> + </column> + </columns> + <actions> + </actions> + <tooltip>Possible combinations of modulation type and shape of output.</tooltip> + <editable>false</editable> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_29</name> + <pv_name>$(P)$(R)$(CH)rPHAD</pv_name> + <x>242</x> + <y>966</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_39</name> + <text>Adjust</text> + <x>11</x> + <y>965</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_16</name> + <pv_name>$(P)$(R)$(CH)PHAD</pv_name> + <x>123</x> + <y>967</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_40</name> + <text>Phase Settings</text> + <x>9</x> + <y>935</y> + <width>332</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_41</name> + <text>FSK Modulation</text> + <x>396</x> + <y>730</y> + <width>313</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_30</name> + <pv_name>$(P)$(R)$(CH)rFSKFR</pv_name> + <x>614</x> + <y>750</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>2</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_42</name> + <text>Frequency</text> + <x>389</x> + <y>749</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_17</name> + <pv_name>$(P)$(R)$(CH)FSKFR</pv_name> + <x>492</x> + <y>751</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_43</name> + <text>Internal</text> + <x>396</x> + <y>814</y> + <width>313</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_31</name> + <pv_name>$(P)$(R)$(CH)rFSKRA</pv_name> + <x>614</x> + <y>834</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>2</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_44</name> + <text>Rate</text> + <x>389</x> + <y>833</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_18</name> + <pv_name>$(P)$(R)$(CH)FSKRA</pv_name> + <x>492</x> + <y>835</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_32</name> + <pv_name>$(P)$(R)$(CH)rFSKSO</pv_name> + <x>614</x> + <y>788</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_45</name> + <text>Source</text> + <x>389</x> + <y>787</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Source_2</name> + <pv_name>$(P)$(R)$(CH)FSKSO</pv_name> + <x>490</x> + <y>787</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_33</name> + <pv_name>$(P)$(R)$(CH)rFSKST</pv_name> + <x>614</x> + <y>769</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_46</name> + <text>State</text> + <x>389</x> + <y>768</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State_5</name> + <pv_name>$(P)$(R)$(CH)FSKST</pv_name> + <x>490</x> + <y>768</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_7</name> + <macros> + <pv_name></pv_name> + </macros> + <y>125</y> + <width>361</width> + <height>125</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="32" blue="92"> + </color> + </line_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_48</name> + <text>Function Settings</text> + <x>10</x> + <y>137</y> + <width>340</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_35</name> + <pv_name>$(P)$(R)$(CH)rFURS</pv_name> + <x>243</x> + <y>199</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_50</name> + <text>Ramp Symmetry</text> + <x>10</x> + <y>198</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_20</name> + <pv_name>$(P)$(R)$(CH)FURS</pv_name> + <x>124</x> + <y>200</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <tooltip>0.0% to 100.0%</tooltip> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_36</name> + <pv_name>$(P)$(R)$(CH)rFUSHP</pv_name> + <x>243</x> + <y>162</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_34</name> + <pv_name>$(P)$(R)$(CH)rFUEF</pv_name> + <x>243</x> + <y>218</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_49</name> + <text>EFILE</text> + <x>10</x> + <y>217</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_19</name> + <pv_name>$(P)$(R)$(CH)FUEF</pv_name> + <x>124</x> + <y>219</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <tooltip>Path to file on USB storage</tooltip> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_51</name> + <text>Shape (predefined)</text> + <x>10</x> + <y>161</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button_4</name> + <pv_name>$(P)$(R)$(CH)FUSHP</pv_name> + <x>122</x> + <y>161</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_37</name> + <pv_name>$(P)$(R)$(CH)rFUSHA</pv_name> + <x>243</x> + <y>181</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_52</name> + <text>Shape (arbitrary)</text> + <x>10</x> + <y>180</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button_5</name> + <pv_name>$(P)$(R)$(CH)FUSHA</pv_name> + <x>122</x> + <y>180</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_53</name> + <text>Phase Modulation</text> + <x>389</x> + <y>864</y> + <width>313</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_38</name> + <pv_name>$(P)$(R)$(CH)rPMDE</pv_name> + <x>614</x> + <y>921</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>2</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_54</name> + <text>Deviation</text> + <x>389</x> + <y>920</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_21</name> + <pv_name>$(P)$(R)$(CH)PMDE</pv_name> + <x>492</x> + <y>922</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_55</name> + <text>Run modes</text> + <x>396</x> + <y>9</y> + <width>313</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_56</name> + <text>Internal</text> + <x>389</x> + <y>944</y> + <width>313</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_39</name> + <pv_name>$(P)$(R)$(CH)rPMFR</pv_name> + <x>614</x> + <y>964</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>2</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_57</name> + <text>Frequency</text> + <x>389</x> + <y>963</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_22</name> + <pv_name>$(P)$(R)$(CH)PMFR</pv_name> + <x>492</x> + <y>965</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>2</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_40</name> + <pv_name>$(P)$(R)$(CH)rPMFU</pv_name> + <x>614</x> + <y>983</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_58</name> + <text>Function</text> + <x>389</x> + <y>982</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Function_2</name> + <pv_name>$(P)$(R)$(CH)PMFU</pv_name> + <x>490</x> + <y>982</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_41</name> + <pv_name>$(P)$(R)$(CH)rPMFF</pv_name> + <x>614</x> + <y>1002</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_59</name> + <text>Function EFILE</text> + <x>389</x> + <y>1001</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_23</name> + <pv_name>$(P)$(R)$(CH)PMFF</pv_name> + <x>492</x> + <y>1003</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <tooltip>Path to file on USB storage</tooltip> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_42</name> + <pv_name>$(P)$(R)$(CH)rPMSO</pv_name> + <x>614</x> + <y>903</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_60</name> + <text>Source</text> + <x>389</x> + <y>902</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Source_3</name> + <pv_name>$(P)$(R)$(CH)PMSO</pv_name> + <x>490</x> + <y>902</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_43</name> + <pv_name>$(P)$(R)$(CH)rPMST</pv_name> + <x>614</x> + <y>884</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_61</name> + <text>State</text> + <x>389</x> + <y>883</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State_6</name> + <pv_name>$(P)$(R)$(CH)PMST</pv_name> + <x>490</x> + <y>883</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_44</name> + <pv_name>$(P)$(R)$(CH)rPUDC</pv_name> + <x>241</x> + <y>546</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_62</name> + <text>Duty Cycle</text> + <x>11</x> + <y>545</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_24</name> + <pv_name>$(P)$(R)$(CH)PUDC</pv_name> + <x>122</x> + <y>547</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_45</name> + <pv_name>$(P)$(R)$(CH)rPUHO</pv_name> + <x>241</x> + <y>601</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_63</name> + <text>Hold</text> + <x>11</x> + <y>600</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_46</name> + <pv_name>$(P)$(R)$(CH)rPUPE</pv_name> + <x>241</x> + <y>527</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_64</name> + <text>Period</text> + <x>11</x> + <y>526</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_26</name> + <pv_name>$(P)$(R)$(CH)PUPE</pv_name> + <x>122</x> + <y>528</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_47</name> + <pv_name>$(P)$(R)$(CH)rPUTL</pv_name> + <x>240</x> + <y>620</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_65</name> + <text>Transition Leading</text> + <x>10</x> + <y>619</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_27</name> + <pv_name>$(P)$(R)$(CH)PUTL</pv_name> + <x>121</x> + <y>621</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_48</name> + <pv_name>$(P)$(R)$(CH)rPUTT</pv_name> + <x>240</x> + <y>639</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_66</name> + <text>Transition Trailing</text> + <x>10</x> + <y>638</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_28</name> + <pv_name>$(P)$(R)$(CH)PUTT</pv_name> + <x>121</x> + <y>640</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_49</name> + <pv_name>$(P)$(R)$(CH)rPUWI</pv_name> + <x>241</x> + <y>565</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_67</name> + <text>Width</text> + <x>11</x> + <y>564</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_29</name> + <pv_name>$(P)$(R)$(CH)PUWI</pv_name> + <x>122</x> + <y>566</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button_6</name> + <pv_name>$(P)$(R)$(CH)PUHO</pv_name> + <x>120</x> + <y>600</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_68</name> + <text>Pulse Width Modulation</text> + <x>389</x> + <y>1028</y> + <width>313</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_50</name> + <pv_name>$(P)$(R)$(CH)rPWMDC</pv_name> + <x>614</x> + <y>1085</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_69</name> + <text>Duty Cycle</text> + <x>389</x> + <y>1084</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_30</name> + <pv_name>$(P)$(R)$(CH)PWMDC</pv_name> + <x>492</x> + <y>1086</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_70</name> + <text>Internal</text> + <x>389</x> + <y>1108</y> + <width>313</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_51</name> + <pv_name>$(P)$(R)$(CH)rPWMFR</pv_name> + <x>614</x> + <y>1128</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_71</name> + <text>Frequency</text> + <x>389</x> + <y>1127</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_31</name> + <pv_name>$(P)$(R)$(CH)PWMFR</pv_name> + <x>492</x> + <y>1129</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_52</name> + <pv_name>$(P)$(R)$(CH)rPWMFU</pv_name> + <x>614</x> + <y>1147</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_72</name> + <text>Function</text> + <x>389</x> + <y>1146</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Function_3</name> + <pv_name>$(P)$(R)$(CH)PWMFU</pv_name> + <x>490</x> + <y>1146</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_53</name> + <pv_name>$(P)$(R)$(CH)rPWMFF</pv_name> + <x>614</x> + <y>1166</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_73</name> + <text>Function EFILE</text> + <x>389</x> + <y>1165</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_32</name> + <pv_name>$(P)$(R)$(CH)PWMFF</pv_name> + <x>492</x> + <y>1167</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <tooltip>Path to file on USB storage</tooltip> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_54</name> + <pv_name>$(P)$(R)$(CH)rPWMSO</pv_name> + <x>614</x> + <y>1067</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_74</name> + <text>Source</text> + <x>389</x> + <y>1066</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Source_4</name> + <pv_name>$(P)$(R)$(CH)PWMSO</pv_name> + <x>490</x> + <y>1066</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_55</name> + <pv_name>$(P)$(R)$(CH)rPWMST</pv_name> + <x>614</x> + <y>1048</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_75</name> + <text>State</text> + <x>389</x> + <y>1047</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State_7</name> + <pv_name>$(P)$(R)$(CH)PWMST</pv_name> + <x>490</x> + <y>1047</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_76</name> + <text>Sweep</text> + <x>396</x> + <y>145</y> + <width>313</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_56</name> + <pv_name>$(P)$(R)$(CH)rSWHT</pv_name> + <x>621</x> + <y>176</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_77</name> + <text>Hold Time</text> + <x>389</x> + <y>175</y> + <width>115</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_33</name> + <pv_name>$(P)$(R)$(CH)SWHT</pv_name> + <x>505</x> + <y>177</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_57</name> + <pv_name>$(P)$(R)$(CH)rSWMO</pv_name> + <x>621</x> + <y>196</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_78</name> + <text>Mode</text> + <x>389</x> + <y>195</y> + <width>115</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State_8</name> + <pv_name>$(P)$(R)$(CH)SWMO</pv_name> + <x>503</x> + <y>195</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_58</name> + <pv_name>$(P)$(R)$(CH)rSWRT</pv_name> + <x>621</x> + <y>212</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_79</name> + <text>Return Time</text> + <x>389</x> + <y>211</y> + <width>115</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_34</name> + <pv_name>$(P)$(R)$(CH)SWRT</pv_name> + <x>505</x> + <y>213</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_59</name> + <pv_name>$(P)$(R)$(CH)rSWSP</pv_name> + <x>621</x> + <y>231</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_80</name> + <text>Spacing</text> + <x>389</x> + <y>230</y> + <width>115</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>State_9</name> + <pv_name>$(P)$(R)$(CH)SWSP</pv_name> + <x>503</x> + <y>230</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_60</name> + <pv_name>$(P)$(R)$(CH)rSWTI</pv_name> + <x>621</x> + <y>250</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_81</name> + <text>Time</text> + <x>389</x> + <y>249</y> + <width>115</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_35</name> + <pv_name>$(P)$(R)$(CH)SWTI</pv_name> + <x>505</x> + <y>251</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_10</name> + <macros> + <pv_name></pv_name> + </macros> + <x>1</x> + <y>683</y> + <width>361</width> + <height>228</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="32" blue="92"> + </color> + </line_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_82</name> + <text>Voltage Settings</text> + <x>9</x> + <y>697</y> + <width>332</width> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_61</name> + <pv_name>$(P)$(R)$(CH)rVOHI</pv_name> + <x>242</x> + <y>724</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_83</name> + <text>High</text> + <x>11</x> + <y>723</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_36</name> + <pv_name>$(P)$(R)$(CH)VOHI</pv_name> + <x>123</x> + <y>725</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_62</name> + <pv_name>$(P)$(R)$(CH)rVOLO</pv_name> + <x>242</x> + <y>744</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_84</name> + <text>Low</text> + <x>11</x> + <y>743</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_37</name> + <pv_name>$(P)$(R)$(CH)VOLO</pv_name> + <x>123</x> + <y>745</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_63</name> + <pv_name>$(P)$(R)$(CH)rVOOF</pv_name> + <x>242</x> + <y>763</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_85</name> + <text>Offset</text> + <x>11</x> + <y>762</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_38</name> + <pv_name>$(P)$(R)$(CH)VOOF</pv_name> + <x>123</x> + <y>764</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_64</name> + <pv_name>$(P)$(R)$(CH)rVOAM</pv_name> + <x>242</x> + <y>782</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_86</name> + <text>Amplitude</text> + <x>11</x> + <y>781</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_39</name> + <pv_name>$(P)$(R)$(CH)VOAM</pv_name> + <x>123</x> + <y>783</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_65</name> + <pv_name>$(P)$(R)$(CH)rVOLH</pv_name> + <x>242</x> + <y>855</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_87</name> + <text>High</text> + <x>11</x> + <y>854</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_40</name> + <pv_name>$(P)$(R)$(CH)VOLH</pv_name> + <x>123</x> + <y>856</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_66</name> + <pv_name>$(P)$(R)$(CH)rVOLL</pv_name> + <x>242</x> + <y>876</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_88</name> + <text>Low</text> + <x>11</x> + <y>875</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_41</name> + <pv_name>$(P)$(R)$(CH)VOLL</pv_name> + <x>123</x> + <y>877</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_89</name> + <text>Limits</text> + <x>13</x> + <y>829</y> + <width>313</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_67</name> + <pv_name>$(P)$(R)$(CH)rVOUN</pv_name> + <x>242</x> + <y>801</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_90</name> + <text>Unit</text> + <x>11</x> + <y>800</y> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button_7</name> + <pv_name>$(P)$(R)$(CH)VOUN</pv_name> + <x>121</x> + <y>800</y> + <height>20</height> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_92</name> + <text>Frequency Sweep settings</text> + <x>14</x> + <y>347</y> + <width>322</width> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> +</display> diff --git a/99-Shared/afg3000/fungenInternalChannel.bob b/99-Shared/afg3000/fungenInternalChannel.bob new file mode 100644 index 0000000..3e27e95 --- /dev/null +++ b/99-Shared/afg3000/fungenInternalChannel.bob @@ -0,0 +1,159 @@ +<?xml version="1.0" encoding="UTF-8"?> +<display version="2.0.0"> + <width>300</width> + <height>100</height> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <grid_step_x>5</grid_step_x> + <grid_step_y>5</grid_step_y> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template</name> + <width>300</width> + <height>100</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="32" blue="92"> + </color> + </line_color> + <background_color> + <color name="IO Shape Fill" red="188" green="188" blue="188"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_17</name> + <pv_name>$(P)$(R)$(CH)rPOWR</pv_name> + <x>190</x> + <y>56</y> + <width>98</width> + <height>18</height> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_25</name> + <text>Amplitude</text> + <x>15</x> + <y>55</y> + <width>66</width> + <font> + <font name="IO Normal" family="arial" style="REGULAR" size="9.900990099009901"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_8</name> + <pv_name>$(P)$(R)$(CH)POWR</pv_name> + <x>82</x> + <y>57</y> + <width>96</width> + <height>16</height> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="label" version="2.0.0"> + <name>Label Template</name> + <text>Noise Channel $(CHANNEL)</text> + <x>8</x> + <y>7</y> + <width>284</width> + <height>25</height> + <font> + <font name="IO Title" family="arial" style="BOLD" size="13.861386138613861"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Background" red="255" green="255" blue="205"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label Template_1</name> + <text>Power</text> + <x>13</x> + <y>31</y> + <width>274</width> + <height>15</height> + <font> + <font name="IO SubTitle" family="arial" style="BOLD" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Background" red="255" green="255" blue="205"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color name="IO Border" red="215" green="215" blue="215"> + </color> + </border_color> + </widget> +</display> diff --git a/99-Shared/afg3000/fungenMain.bob b/99-Shared/afg3000/fungenMain.bob new file mode 100644 index 0000000..703e663 --- /dev/null +++ b/99-Shared/afg3000/fungenMain.bob @@ -0,0 +1,751 @@ +<?xml version="1.0" encoding="UTF-8"?> +<display version="2.0.0"> + <name>AFG3000 OPI</name> + <width>1060</width> + <height>1340</height> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <actions> + </actions> + <grid_step_x>5</grid_step_x> + <grid_step_y>5</grid_step_y> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_1</name> + <macros> + <pv_name></pv_name> + </macros> + <x>750</x> + <y>73</y> + <width>300</width> + <height>90</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="0" blue="0"> + </color> + </line_color> + <background_color> + <color name="IO Background" red="235" green="235" blue="235"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_4</name> + <pv_name>$(P)AOrTRGM</pv_name> + <x>943</x> + <y>110</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="0" green="0" blue="0"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_3</name> + <text>TriggerMode</text> + <x>762</x> + <y>109</y> + <width>80</width> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_4</name> + <text>Channel group settings</text> + <x>792</x> + <y>79</y> + <width>211</width> + <font> + <font name="IO Title" family="DejaVu Sans Mono" style="REGULAR" size="17.821782178217823"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button_2</name> + <pv_name>$(P)AO-TRGM</pv_name> + <x>835</x> + <y>109</y> + <height>20</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_5</name> + <pv_name>$(P)AOrCLKS</pv_name> + <x>943</x> + <y>130</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="0" green="0" blue="0"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_5</name> + <text>Clock Source</text> + <x>762</x> + <y>129</y> + <width>80</width> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button_1</name> + <pv_name>$(P)AO-CLKS</pv_name> + <x>835</x> + <y>129</y> + <height>20</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="action_button" version="3.0.0"> + <name>Action Button Template</name> + <actions> + <action type="write_pv"> + <pv_name>$(P)RST.PROC</pv_name> + <value>1</value> + </action> + </actions> + <pv_name>$(P)RST</pv_name> + <text>Reset</text> + <x>760</x> + <y>508</y> + <width>73</width> + <height>20</height> + <font> + <font name="IO Input 1" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Button" red="178" green="178" blue="178"> + </color> + </background_color> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template</name> + <macros> + <pv_name></pv_name> + </macros> + <x>762</x> + <y>88</y> + <width>40</width> + <height>1</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="0" blue="0"> + </color> + </line_color> + <background_color> + <color name="IO Background" red="235" green="235" blue="235"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_3</name> + <macros> + <pv_name></pv_name> + </macros> + <x>1000</x> + <y>88</y> + <width>40</width> + <height>1</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="0" blue="0"> + </color> + </line_color> + <background_color> + <color name="IO Background" red="235" green="235" blue="235"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="embedded" version="2.0.0"> + <name>Linking Container Template</name> + <macros> + <CH>CH0:</CH> + <CHANNEL>0</CHANNEL> + <R></R> + </macros> + <file>fungenInternalChannel.bob</file> + <x>749</x> + <y>282</y> + <width>301</width> + <height>101</height> + <resize>1</resize> + <actions> + </actions> + <border_color> + <color name="IO Border" red="0" green="0" blue="0"> + </color> + </border_color> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_4</name> + <macros> + <pv_name></pv_name> + </macros> + <x>750</x> + <y>172</y> + <width>300</width> + <height>100</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="0" blue="0"> + </color> + </line_color> + <background_color> + <color name="IO Background" red="235" green="235" blue="235"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_6</name> + <pv_name>$(P)AOrTRGT</pv_name> + <x>941</x> + <y>220</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <format>5</format> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="0" green="0" blue="0"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_6</name> + <text>Timer</text> + <x>760</x> + <y>219</y> + <width>80</width> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_7</name> + <text>Trigger Source</text> + <x>792</x> + <y>178</y> + <width>211</width> + <font> + <font name="IO Title" family="DejaVu Sans Mono" style="REGULAR" size="17.821782178217823"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_5</name> + <macros> + <pv_name></pv_name> + </macros> + <x>762</x> + <y>187</y> + <width>40</width> + <height>1</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="0" blue="0"> + </color> + </line_color> + <background_color> + <color name="IO Background" red="235" green="235" blue="235"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle Template_6</name> + <macros> + <pv_name></pv_name> + </macros> + <x>1000</x> + <y>187</y> + <width>40</width> + <height>1</height> + <line_width>0</line_width> + <line_color> + <color name="IO Line" red="0" green="0" blue="0"> + </color> + </line_color> + <background_color> + <color name="IO Background" red="235" green="235" blue="235"> + </color> + </background_color> + <actions> + </actions> + <tooltip>$(pv_name) +$(pv_value)</tooltip> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_8</name> + <pv_name>$(P)AOrTRGL</pv_name> + <x>941</x> + <y>201</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="0" green="0" blue="0"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_1</name> + <text>Slope</text> + <x>760</x> + <y>200</y> + <width>80</width> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button</name> + <pv_name>$(P)AO-TRGL</pv_name> + <x>833</x> + <y>200</y> + <height>20</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="166" green="166" blue="166"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="textentry" version="3.0.0"> + <name>Text Input_9</name> + <pv_name>$(P)AO-TRGT</pv_name> + <x>835</x> + <y>221</y> + <width>96</width> + <height>16</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Grid" red="215" green="215" blue="215"> + </color> + </background_color> + <format>5</format> + <actions> + </actions> + <border_alarm_sensitive>false</border_alarm_sensitive> + <border_width>2</border_width> + </widget> + <widget type="textupdate" version="2.0.0"> + <name>Text Update_9</name> + <pv_name>$(P)AOrTRGS</pv_name> + <x>941</x> + <y>239</y> + <width>98</width> + <height>18</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <horizontal_alignment>1</horizontal_alignment> + <vertical_alignment>1</vertical_alignment> + <wrap_words>false</wrap_words> + <actions> + </actions> + <border_width>1</border_width> + <border_color> + <color name="IO Border" red="0" green="0" blue="0"> + </color> + </border_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label_9</name> + <text>Source</text> + <x>760</x> + <y>238</y> + <width>80</width> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color red="255" green="255" blue="255"> + </color> + </background_color> + <vertical_alignment>1</vertical_alignment> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + <widget type="combo" version="2.0.0"> + <name>Menu Button_3</name> + <pv_name>$(P)AO-TRGS</pv_name> + <x>833</x> + <y>238</y> + <height>20</height> + <font> + <font name="IO Normal" family="DejaVu Sans Mono" style="REGULAR" size="11.881188118811881"> + </font> + </font> + <foreground_color> + <color name="IO Foreground" red="0" green="0" blue="0"> + </color> + </foreground_color> + <background_color> + <color name="IO Shape Fill" red="166" green="166" blue="166"> + </color> + </background_color> + <border_alarm_sensitive>false</border_alarm_sensitive> + </widget> + <widget type="tabs" version="2.0.0"> + <name>Tabbed ContainerTemplate</name> + <macros> + <R></R> + </macros> + <tabs> + <tab> + <name>Channel 0</name> + <children> + <widget type="embedded" version="2.0.0"> + <name>Linking Container</name> + <macros> + <CH>$(CH1)</CH> + </macros> + <file>fungenChannel.bob</file> + <width>740</width> + <height>1250</height> + <resize>2</resize> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + </children> + </tab> + <tab> + <name>Channel 1</name> + <children> + <widget type="embedded" version="2.0.0"> + <name>Linking Container_1</name> + <macros> + <CH>$(CH2)</CH> + </macros> + <file>fungenChannel.bob</file> + <width>740</width> + <height>1250</height> + <resize>2</resize> + <actions> + </actions> + <border_color> + <color red="0" green="128" blue="255"> + </color> + </border_color> + </widget> + </children> + </tab> + </tabs> + <y>50</y> + <width>736</width> + <height>1280</height> + <background_color> + <color name="IO Background" red="235" green="235" blue="235"> + </color> + </background_color> + <tab_height>10</tab_height> + <actions> + </actions> + </widget> + <widget type="embedded" version="2.0.0"> + <name>Linking Container Template_1</name> + <macros> + <CH>CH1:</CH> + <CHANNEL>1</CHANNEL> + <R></R> + </macros> + <file>fungenInternalChannel.bob</file> + <x>749</x> + <y>392</y> + <width>301</width> + <height>101</height> + <resize>1</resize> + <actions> + </actions> + <border_color> + <color name="IO Border" red="0" green="0" blue="0"> + </color> + </border_color> + </widget> + <widget type="rectangle" version="2.0.0"> + <name>Rectangle</name> + <class>TITLE-BAR</class> + <x use_class="true">0</x> + <y use_class="true">0</y> + <width>1060</width> + <height use_class="true">50</height> + <line_width use_class="true">0</line_width> + <background_color use_class="true"> + <color name="PRIMARY-HEADER-BACKGROUND" red="151" green="188" blue="202"> + </color> + </background_color> + </widget> + <widget type="label" version="2.0.0"> + <name>Label</name> + <class>TITLE</class> + <text>$(P)</text> + <x use_class="true">20</x> + <y use_class="true">0</y> + <width>380</width> + <height use_class="true">50</height> + <font use_class="true"> + <font name="Header 1" family="Source Sans Pro" style="BOLD_ITALIC" size="36.0"> + </font> + </font> + <foreground_color use_class="true"> + <color name="HEADER-TEXT" red="0" green="0" blue="0"> + </color> + </foreground_color> + <transparent use_class="true">true</transparent> + <horizontal_alignment use_class="true">0</horizontal_alignment> + <vertical_alignment use_class="true">1</vertical_alignment> + <wrap_words use_class="true">false</wrap_words> + </widget> +</display> -- GitLab