Main_Form.Designer.cs 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610
  1. namespace RF_TRIO_PLL_ZIG
  2. {
  3. partial class Main_Form
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main_Form));
  30. this.groupBox9 = new System.Windows.Forms.GroupBox();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.button_terminal = new System.Windows.Forms.Button();
  33. this.Ascii_checkBox = new System.Windows.Forms.CheckBox();
  34. this.cmCom_Port = new System.Windows.Forms.Label();
  35. this.button_PortOpen = new System.Windows.Forms.Button();
  36. this.comboBox_Port = new System.Windows.Forms.ComboBox();
  37. this.cmBaudRate = new System.Windows.Forms.Label();
  38. this.comboBox_baudrate = new System.Windows.Forms.ComboBox();
  39. this.groupBox8 = new System.Windows.Forms.GroupBox();
  40. this.groupBox7 = new System.Windows.Forms.GroupBox();
  41. this.numericUpDown_ATT_3_5G_COM3 = new System.Windows.Forms.NumericUpDown();
  42. this.numericUpDown_ATT_3_5G_COM2 = new System.Windows.Forms.NumericUpDown();
  43. this.numericUpDown_ATT_3_5G_COM1 = new System.Windows.Forms.NumericUpDown();
  44. this.label19 = new System.Windows.Forms.Label();
  45. this.label20 = new System.Windows.Forms.Label();
  46. this.label21 = new System.Windows.Forms.Label();
  47. this.numericUpDown_ATT_3_5G_UL = new System.Windows.Forms.NumericUpDown();
  48. this.numericUpDown_ATT_3_5G_DL = new System.Windows.Forms.NumericUpDown();
  49. this.label26 = new System.Windows.Forms.Label();
  50. this.label28 = new System.Windows.Forms.Label();
  51. this.groupBox5 = new System.Windows.Forms.GroupBox();
  52. this.numericUpDown_ATT_2_1G_UL4 = new System.Windows.Forms.NumericUpDown();
  53. this.numericUpDown_ATT_2_1G_UL2 = new System.Windows.Forms.NumericUpDown();
  54. this.numericUpDown_ATT_2_1G_UL3 = new System.Windows.Forms.NumericUpDown();
  55. this.numericUpDown_ATT_2_1G_UL1 = new System.Windows.Forms.NumericUpDown();
  56. this.label15 = new System.Windows.Forms.Label();
  57. this.label16 = new System.Windows.Forms.Label();
  58. this.label17 = new System.Windows.Forms.Label();
  59. this.label18 = new System.Windows.Forms.Label();
  60. this.groupBox2 = new System.Windows.Forms.GroupBox();
  61. this.numericUpDown_ATT_1_8G_UL4 = new System.Windows.Forms.NumericUpDown();
  62. this.numericUpDown_ATT_1_8G_UL2 = new System.Windows.Forms.NumericUpDown();
  63. this.numericUpDown_ATT_1_8G_UL3 = new System.Windows.Forms.NumericUpDown();
  64. this.numericUpDown_ATT_1_8G_UL1 = new System.Windows.Forms.NumericUpDown();
  65. this.label7 = new System.Windows.Forms.Label();
  66. this.label6 = new System.Windows.Forms.Label();
  67. this.label4 = new System.Windows.Forms.Label();
  68. this.label5 = new System.Windows.Forms.Label();
  69. this.groupBox4 = new System.Windows.Forms.GroupBox();
  70. this.numericUpDown_ATT_2_1G_DL2 = new System.Windows.Forms.NumericUpDown();
  71. this.numericUpDown_ATT_2_1G_DL1 = new System.Windows.Forms.NumericUpDown();
  72. this.label13 = new System.Windows.Forms.Label();
  73. this.label14 = new System.Windows.Forms.Label();
  74. this.groupBox1 = new System.Windows.Forms.GroupBox();
  75. this.numericUpDown_ATT_1_8G_DL2 = new System.Windows.Forms.NumericUpDown();
  76. this.numericUpDown_ATT_1_8G_DL1 = new System.Windows.Forms.NumericUpDown();
  77. this.label3 = new System.Windows.Forms.Label();
  78. this.label2 = new System.Windows.Forms.Label();
  79. this.groupBox17 = new System.Windows.Forms.GroupBox();
  80. this.label74 = new System.Windows.Forms.Label();
  81. this.label73 = new System.Windows.Forms.Label();
  82. this.pictureBox_PATH_3_5G_L_ON = new System.Windows.Forms.PictureBox();
  83. this.pictureBox_PATH_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
  84. this.pictureBox_PATH_3_5G_H_ON = new System.Windows.Forms.PictureBox();
  85. this.pictureBox_PATH_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
  86. this.label78 = new System.Windows.Forms.Label();
  87. this.label77 = new System.Windows.Forms.Label();
  88. this.label76 = new System.Windows.Forms.Label();
  89. this.label75 = new System.Windows.Forms.Label();
  90. this.label72 = new System.Windows.Forms.Label();
  91. this.label71 = new System.Windows.Forms.Label();
  92. this.label70 = new System.Windows.Forms.Label();
  93. this.label69 = new System.Windows.Forms.Label();
  94. this.pictureBox_PLL_ON_OFF_3_5G_L_ON = new System.Windows.Forms.PictureBox();
  95. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
  96. this.pictureBox_PLL_ON_OFF_3_5G_H_ON = new System.Windows.Forms.PictureBox();
  97. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
  98. this.pictureBox_PATH_3_5G_UL_ON = new System.Windows.Forms.PictureBox();
  99. this.pictureBox_PATH_3_5G_UL_OFF = new System.Windows.Forms.PictureBox();
  100. this.pictureBox_PATH_3_5G_DL_ON = new System.Windows.Forms.PictureBox();
  101. this.pictureBox_PATH_3_5G_DL_OFF = new System.Windows.Forms.PictureBox();
  102. this.pictureBox_PATH_2_1G_UL_ON = new System.Windows.Forms.PictureBox();
  103. this.pictureBox_PATH_2_1G_UL_OFF = new System.Windows.Forms.PictureBox();
  104. this.pictureBox_PATH_2_1G_DL_ON = new System.Windows.Forms.PictureBox();
  105. this.pictureBox_PATH_2_1G_DL_OFF = new System.Windows.Forms.PictureBox();
  106. this.pictureBox_PATH_1_8G_UL_ON = new System.Windows.Forms.PictureBox();
  107. this.pictureBox_PATH_1_8G_UL_OFF = new System.Windows.Forms.PictureBox();
  108. this.pictureBox_PATH_1_8G_DL_ON = new System.Windows.Forms.PictureBox();
  109. this.pictureBox_PATH_1_8G_DL_OFF = new System.Windows.Forms.PictureBox();
  110. this.label79 = new System.Windows.Forms.Label();
  111. this.label80 = new System.Windows.Forms.Label();
  112. this.groupBox10 = new System.Windows.Forms.GroupBox();
  113. this.groupBox11 = new System.Windows.Forms.GroupBox();
  114. this.numericUpDown_PLL_3_5G_UL = new System.Windows.Forms.NumericUpDown();
  115. this.numericUpDown_PLL_3_5G_DL = new System.Windows.Forms.NumericUpDown();
  116. this.label32 = new System.Windows.Forms.Label();
  117. this.label33 = new System.Windows.Forms.Label();
  118. this.groupBox15 = new System.Windows.Forms.GroupBox();
  119. this.numericUpDown_PLL_2_1G_UL = new System.Windows.Forms.NumericUpDown();
  120. this.numericUpDown_PLL_2_1G_DL = new System.Windows.Forms.NumericUpDown();
  121. this.label47 = new System.Windows.Forms.Label();
  122. this.label48 = new System.Windows.Forms.Label();
  123. this.groupBox16 = new System.Windows.Forms.GroupBox();
  124. this.numericUpDown_PLL_1_8G_UL = new System.Windows.Forms.NumericUpDown();
  125. this.numericUpDown_PLL_1_8G_DL = new System.Windows.Forms.NumericUpDown();
  126. this.label49 = new System.Windows.Forms.Label();
  127. this.label50 = new System.Windows.Forms.Label();
  128. this.timer = new System.Windows.Forms.Timer(this.components);
  129. this.groupBox12 = new System.Windows.Forms.GroupBox();
  130. this.pictureBox_R_TX = new System.Windows.Forms.PictureBox();
  131. this.pictureBox_G_TX = new System.Windows.Forms.PictureBox();
  132. this.pictureBox_R_RX = new System.Windows.Forms.PictureBox();
  133. this.pictureBox_G_RX = new System.Windows.Forms.PictureBox();
  134. this.pictureBox15 = new System.Windows.Forms.PictureBox();
  135. this.groupBox_TDD = new System.Windows.Forms.GroupBox();
  136. this.label24 = new System.Windows.Forms.Label();
  137. this.label22 = new System.Windows.Forms.Label();
  138. this.pictureBox_TDD_T_SYNC_DL_OFF = new System.Windows.Forms.PictureBox();
  139. this.pictureBox_TDD_T_SYNC_DL_ON = new System.Windows.Forms.PictureBox();
  140. this.pictureBox_TDD_T_SYNC_UL_ON = new System.Windows.Forms.PictureBox();
  141. this.pictureBox_TDD_T_SYNC_UL_OFF = new System.Windows.Forms.PictureBox();
  142. this.groupBox3 = new System.Windows.Forms.GroupBox();
  143. this.label_28V_Det = new System.Windows.Forms.Label();
  144. this.label3_5GHz_UL_OUT = new System.Windows.Forms.Label();
  145. this.label2_1GHz_UL_OUT = new System.Windows.Forms.Label();
  146. this.label1_8GHz_UL_OUT = new System.Windows.Forms.Label();
  147. this.label_RFU_Temp = new System.Windows.Forms.Label();
  148. this.label3_5GHz_UL_IN = new System.Windows.Forms.Label();
  149. this.label2_1GHz_UL_IN = new System.Windows.Forms.Label();
  150. this.label1_8GHz_UL_IN = new System.Windows.Forms.Label();
  151. this.label3_5GHz_DL_OUT = new System.Windows.Forms.Label();
  152. this.label2_1GHz_DL_OUT = new System.Windows.Forms.Label();
  153. this.label1_8GHz_DL_OUT = new System.Windows.Forms.Label();
  154. this.label3_5GHz_DL_IN = new System.Windows.Forms.Label();
  155. this.label2_1GHz_DL_IN = new System.Windows.Forms.Label();
  156. this.label1_8GHz_DL_IN = new System.Windows.Forms.Label();
  157. this.label40 = new System.Windows.Forms.Label();
  158. this.label34 = new System.Windows.Forms.Label();
  159. this.label11 = new System.Windows.Forms.Label();
  160. this.label58 = new System.Windows.Forms.Label();
  161. this.label39 = new System.Windows.Forms.Label();
  162. this.label31 = new System.Windows.Forms.Label();
  163. this.label9 = new System.Windows.Forms.Label();
  164. this.label51 = new System.Windows.Forms.Label();
  165. this.label30 = new System.Windows.Forms.Label();
  166. this.label8 = new System.Windows.Forms.Label();
  167. this.label57 = new System.Windows.Forms.Label();
  168. this.label29 = new System.Windows.Forms.Label();
  169. this.label1 = new System.Windows.Forms.Label();
  170. this.label_DET_1_8G_DL_IN = new System.Windows.Forms.Label();
  171. this.button_Set = new System.Windows.Forms.Button();
  172. this.button1 = new System.Windows.Forms.Button();
  173. this.label35 = new System.Windows.Forms.Label();
  174. this.label27 = new System.Windows.Forms.Label();
  175. this.numericUpDown_DAC_VoltCtrl_A = new System.Windows.Forms.NumericUpDown();
  176. this.numericUpDown_DAC_VoltCtrl_E = new System.Windows.Forms.NumericUpDown();
  177. this.groupBox6 = new System.Windows.Forms.GroupBox();
  178. this.label12 = new System.Windows.Forms.Label();
  179. this.numericUpDown_DAC_VoltCtrl_B = new System.Windows.Forms.NumericUpDown();
  180. this.numericUpDown_DAC_VoltCtrl_F = new System.Windows.Forms.NumericUpDown();
  181. this.label25 = new System.Windows.Forms.Label();
  182. this.label37 = new System.Windows.Forms.Label();
  183. this.numericUpDown_DAC_VoltCtrl_C = new System.Windows.Forms.NumericUpDown();
  184. this.numericUpDown_DAC_VoltCtrl_D = new System.Windows.Forms.NumericUpDown();
  185. this.numericUpDown_DAC_VoltCtrl_G = new System.Windows.Forms.NumericUpDown();
  186. this.numericUpDown_DAC_VoltCtrl_H = new System.Windows.Forms.NumericUpDown();
  187. this.numericUpDown9 = new System.Windows.Forms.NumericUpDown();
  188. this.label23 = new System.Windows.Forms.Label();
  189. this.numericUpDown10 = new System.Windows.Forms.NumericUpDown();
  190. this.label36 = new System.Windows.Forms.Label();
  191. this.numericUpDown11 = new System.Windows.Forms.NumericUpDown();
  192. this.label10 = new System.Windows.Forms.Label();
  193. this.label38 = new System.Windows.Forms.Label();
  194. this.groupBox9.SuspendLayout();
  195. this.groupBox8.SuspendLayout();
  196. this.groupBox7.SuspendLayout();
  197. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM3)).BeginInit();
  198. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).BeginInit();
  199. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).BeginInit();
  200. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_UL)).BeginInit();
  201. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_DL)).BeginInit();
  202. this.groupBox5.SuspendLayout();
  203. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL4)).BeginInit();
  204. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL2)).BeginInit();
  205. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL3)).BeginInit();
  206. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL1)).BeginInit();
  207. this.groupBox2.SuspendLayout();
  208. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL4)).BeginInit();
  209. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL2)).BeginInit();
  210. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL3)).BeginInit();
  211. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL1)).BeginInit();
  212. this.groupBox4.SuspendLayout();
  213. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL2)).BeginInit();
  214. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL1)).BeginInit();
  215. this.groupBox1.SuspendLayout();
  216. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL2)).BeginInit();
  217. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL1)).BeginInit();
  218. this.groupBox17.SuspendLayout();
  219. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).BeginInit();
  220. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).BeginInit();
  221. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).BeginInit();
  222. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).BeginInit();
  223. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).BeginInit();
  224. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).BeginInit();
  225. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).BeginInit();
  226. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).BeginInit();
  227. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).BeginInit();
  228. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).BeginInit();
  229. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).BeginInit();
  230. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).BeginInit();
  231. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_ON)).BeginInit();
  232. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_OFF)).BeginInit();
  233. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_ON)).BeginInit();
  234. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_OFF)).BeginInit();
  235. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_ON)).BeginInit();
  236. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_OFF)).BeginInit();
  237. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_ON)).BeginInit();
  238. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_OFF)).BeginInit();
  239. this.groupBox10.SuspendLayout();
  240. this.groupBox11.SuspendLayout();
  241. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_UL)).BeginInit();
  242. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_DL)).BeginInit();
  243. this.groupBox15.SuspendLayout();
  244. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_UL)).BeginInit();
  245. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_DL)).BeginInit();
  246. this.groupBox16.SuspendLayout();
  247. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_UL)).BeginInit();
  248. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_DL)).BeginInit();
  249. this.groupBox12.SuspendLayout();
  250. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).BeginInit();
  251. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).BeginInit();
  252. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).BeginInit();
  253. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).BeginInit();
  254. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
  255. this.groupBox_TDD.SuspendLayout();
  256. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).BeginInit();
  257. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).BeginInit();
  258. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).BeginInit();
  259. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).BeginInit();
  260. this.groupBox3.SuspendLayout();
  261. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_A)).BeginInit();
  262. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_E)).BeginInit();
  263. this.groupBox6.SuspendLayout();
  264. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_B)).BeginInit();
  265. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_F)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_C)).BeginInit();
  267. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_D)).BeginInit();
  268. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_G)).BeginInit();
  269. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_H)).BeginInit();
  270. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown9)).BeginInit();
  271. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown10)).BeginInit();
  272. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown11)).BeginInit();
  273. this.SuspendLayout();
  274. //
  275. // groupBox9
  276. //
  277. this.groupBox9.Controls.Add(this.button3);
  278. this.groupBox9.Controls.Add(this.button_terminal);
  279. this.groupBox9.Controls.Add(this.Ascii_checkBox);
  280. this.groupBox9.Controls.Add(this.cmCom_Port);
  281. this.groupBox9.Controls.Add(this.button_PortOpen);
  282. this.groupBox9.Controls.Add(this.comboBox_Port);
  283. this.groupBox9.Controls.Add(this.cmBaudRate);
  284. this.groupBox9.Controls.Add(this.comboBox_baudrate);
  285. this.groupBox9.Location = new System.Drawing.Point(12, 77);
  286. this.groupBox9.Name = "groupBox9";
  287. this.groupBox9.Size = new System.Drawing.Size(225, 223);
  288. this.groupBox9.TabIndex = 82;
  289. this.groupBox9.TabStop = false;
  290. this.groupBox9.Text = "Connection";
  291. //
  292. // button3
  293. //
  294. this.button3.Location = new System.Drawing.Point(14, 171);
  295. this.button3.Name = "button3";
  296. this.button3.Size = new System.Drawing.Size(197, 34);
  297. this.button3.TabIndex = 93;
  298. this.button3.Text = "Firmware Update";
  299. this.button3.UseVisualStyleBackColor = true;
  300. this.button3.Click += new System.EventHandler(this.Firmware_Update_Click);
  301. //
  302. // button_terminal
  303. //
  304. this.button_terminal.Location = new System.Drawing.Point(14, 131);
  305. this.button_terminal.Name = "button_terminal";
  306. this.button_terminal.Size = new System.Drawing.Size(197, 34);
  307. this.button_terminal.TabIndex = 94;
  308. this.button_terminal.Text = "Terminal";
  309. this.button_terminal.UseVisualStyleBackColor = true;
  310. this.button_terminal.Click += new System.EventHandler(this.Button_terminal_Click);
  311. //
  312. // Ascii_checkBox
  313. //
  314. this.Ascii_checkBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  315. | System.Windows.Forms.AnchorStyles.Left)
  316. | System.Windows.Forms.AnchorStyles.Right)));
  317. this.Ascii_checkBox.AutoSize = true;
  318. this.Ascii_checkBox.Location = new System.Drawing.Point(14, 69);
  319. this.Ascii_checkBox.Name = "Ascii_checkBox";
  320. this.Ascii_checkBox.Size = new System.Drawing.Size(55, 16);
  321. this.Ascii_checkBox.TabIndex = 92;
  322. this.Ascii_checkBox.Text = "ASCII";
  323. this.Ascii_checkBox.UseVisualStyleBackColor = true;
  324. //
  325. // cmCom_Port
  326. //
  327. this.cmCom_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  328. | System.Windows.Forms.AnchorStyles.Left)
  329. | System.Windows.Forms.AnchorStyles.Right)));
  330. this.cmCom_Port.AutoSize = true;
  331. this.cmCom_Port.Location = new System.Drawing.Point(11, 18);
  332. this.cmCom_Port.Name = "cmCom_Port";
  333. this.cmCom_Port.Size = new System.Drawing.Size(58, 12);
  334. this.cmCom_Port.TabIndex = 89;
  335. this.cmCom_Port.Text = "Com Port";
  336. //
  337. // button_PortOpen
  338. //
  339. this.button_PortOpen.Location = new System.Drawing.Point(13, 91);
  340. this.button_PortOpen.Name = "button_PortOpen";
  341. this.button_PortOpen.Size = new System.Drawing.Size(197, 34);
  342. this.button_PortOpen.TabIndex = 86;
  343. this.button_PortOpen.Text = "Port Open";
  344. this.button_PortOpen.UseVisualStyleBackColor = true;
  345. this.button_PortOpen.Click += new System.EventHandler(this.Button_PortOpen_Click);
  346. //
  347. // comboBox_Port
  348. //
  349. this.comboBox_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  350. | System.Windows.Forms.AnchorStyles.Left)
  351. | System.Windows.Forms.AnchorStyles.Right)));
  352. this.comboBox_Port.Cursor = System.Windows.Forms.Cursors.Default;
  353. this.comboBox_Port.FormattingEnabled = true;
  354. this.comboBox_Port.Location = new System.Drawing.Point(109, 15);
  355. this.comboBox_Port.Name = "comboBox_Port";
  356. this.comboBox_Port.Size = new System.Drawing.Size(101, 20);
  357. this.comboBox_Port.TabIndex = 88;
  358. this.comboBox_Port.SelectedIndexChanged += new System.EventHandler(this.ComboBox_Port_SelectedIndexChanged);
  359. //
  360. // cmBaudRate
  361. //
  362. this.cmBaudRate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  363. | System.Windows.Forms.AnchorStyles.Left)
  364. | System.Windows.Forms.AnchorStyles.Right)));
  365. this.cmBaudRate.AutoSize = true;
  366. this.cmBaudRate.Location = new System.Drawing.Point(11, 47);
  367. this.cmBaudRate.Name = "cmBaudRate";
  368. this.cmBaudRate.Size = new System.Drawing.Size(94, 12);
  369. this.cmBaudRate.TabIndex = 90;
  370. this.cmBaudRate.Text = "Baud Rate(bps)";
  371. //
  372. // comboBox_baudrate
  373. //
  374. this.comboBox_baudrate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  375. | System.Windows.Forms.AnchorStyles.Left)
  376. | System.Windows.Forms.AnchorStyles.Right)));
  377. this.comboBox_baudrate.FormattingEnabled = true;
  378. this.comboBox_baudrate.Items.AddRange(new object[] {
  379. "9600",
  380. "14400",
  381. "19200",
  382. "38400",
  383. "57600",
  384. "115200",
  385. "128000"});
  386. this.comboBox_baudrate.Location = new System.Drawing.Point(110, 45);
  387. this.comboBox_baudrate.Name = "comboBox_baudrate";
  388. this.comboBox_baudrate.Size = new System.Drawing.Size(101, 20);
  389. this.comboBox_baudrate.TabIndex = 91;
  390. this.comboBox_baudrate.Text = "115200";
  391. //
  392. // groupBox8
  393. //
  394. this.groupBox8.Controls.Add(this.groupBox7);
  395. this.groupBox8.Controls.Add(this.groupBox5);
  396. this.groupBox8.Controls.Add(this.groupBox2);
  397. this.groupBox8.Controls.Add(this.groupBox4);
  398. this.groupBox8.Controls.Add(this.groupBox1);
  399. this.groupBox8.Location = new System.Drawing.Point(243, 219);
  400. this.groupBox8.Name = "groupBox8";
  401. this.groupBox8.Size = new System.Drawing.Size(924, 270);
  402. this.groupBox8.TabIndex = 94;
  403. this.groupBox8.TabStop = false;
  404. this.groupBox8.Text = "ATTEN(dB)";
  405. //
  406. // groupBox7
  407. //
  408. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_COM3);
  409. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_COM2);
  410. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_COM1);
  411. this.groupBox7.Controls.Add(this.label19);
  412. this.groupBox7.Controls.Add(this.label20);
  413. this.groupBox7.Controls.Add(this.label21);
  414. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_UL);
  415. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_DL);
  416. this.groupBox7.Controls.Add(this.label26);
  417. this.groupBox7.Controls.Add(this.label28);
  418. this.groupBox7.Location = new System.Drawing.Point(623, 22);
  419. this.groupBox7.Name = "groupBox7";
  420. this.groupBox7.Size = new System.Drawing.Size(215, 231);
  421. this.groupBox7.TabIndex = 94;
  422. this.groupBox7.TabStop = false;
  423. this.groupBox7.Text = "3.5GHz";
  424. //
  425. // numericUpDown_ATT_3_5G_COM3
  426. //
  427. this.numericUpDown_ATT_3_5G_COM3.DecimalPlaces = 2;
  428. this.numericUpDown_ATT_3_5G_COM3.Increment = new decimal(new int[] {
  429. 25,
  430. 0,
  431. 0,
  432. 131072});
  433. this.numericUpDown_ATT_3_5G_COM3.Location = new System.Drawing.Point(141, 175);
  434. this.numericUpDown_ATT_3_5G_COM3.Maximum = new decimal(new int[] {
  435. 30,
  436. 0,
  437. 0,
  438. 0});
  439. this.numericUpDown_ATT_3_5G_COM3.Name = "numericUpDown_ATT_3_5G_COM3";
  440. this.numericUpDown_ATT_3_5G_COM3.Size = new System.Drawing.Size(71, 21);
  441. this.numericUpDown_ATT_3_5G_COM3.TabIndex = 11;
  442. this.numericUpDown_ATT_3_5G_COM3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  443. //
  444. // numericUpDown_ATT_3_5G_COM2
  445. //
  446. this.numericUpDown_ATT_3_5G_COM2.DecimalPlaces = 2;
  447. this.numericUpDown_ATT_3_5G_COM2.Increment = new decimal(new int[] {
  448. 25,
  449. 0,
  450. 0,
  451. 131072});
  452. this.numericUpDown_ATT_3_5G_COM2.Location = new System.Drawing.Point(141, 136);
  453. this.numericUpDown_ATT_3_5G_COM2.Maximum = new decimal(new int[] {
  454. 30,
  455. 0,
  456. 0,
  457. 0});
  458. this.numericUpDown_ATT_3_5G_COM2.Name = "numericUpDown_ATT_3_5G_COM2";
  459. this.numericUpDown_ATT_3_5G_COM2.Size = new System.Drawing.Size(71, 21);
  460. this.numericUpDown_ATT_3_5G_COM2.TabIndex = 12;
  461. this.numericUpDown_ATT_3_5G_COM2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  462. //
  463. // numericUpDown_ATT_3_5G_COM1
  464. //
  465. this.numericUpDown_ATT_3_5G_COM1.DecimalPlaces = 2;
  466. this.numericUpDown_ATT_3_5G_COM1.Increment = new decimal(new int[] {
  467. 25,
  468. 0,
  469. 0,
  470. 131072});
  471. this.numericUpDown_ATT_3_5G_COM1.Location = new System.Drawing.Point(141, 97);
  472. this.numericUpDown_ATT_3_5G_COM1.Maximum = new decimal(new int[] {
  473. 30,
  474. 0,
  475. 0,
  476. 0});
  477. this.numericUpDown_ATT_3_5G_COM1.Name = "numericUpDown_ATT_3_5G_COM1";
  478. this.numericUpDown_ATT_3_5G_COM1.Size = new System.Drawing.Size(71, 21);
  479. this.numericUpDown_ATT_3_5G_COM1.TabIndex = 13;
  480. this.numericUpDown_ATT_3_5G_COM1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  481. //
  482. // label19
  483. //
  484. this.label19.AutoSize = true;
  485. this.label19.Location = new System.Drawing.Point(6, 101);
  486. this.label19.Name = "label19";
  487. this.label19.Size = new System.Drawing.Size(101, 12);
  488. this.label19.TabIndex = 8;
  489. this.label19.Text = "ATT_3.5G_COM1";
  490. //
  491. // label20
  492. //
  493. this.label20.AutoSize = true;
  494. this.label20.Location = new System.Drawing.Point(6, 179);
  495. this.label20.Name = "label20";
  496. this.label20.Size = new System.Drawing.Size(101, 12);
  497. this.label20.TabIndex = 9;
  498. this.label20.Text = "ATT_3.5G_COM3";
  499. //
  500. // label21
  501. //
  502. this.label21.AutoSize = true;
  503. this.label21.Location = new System.Drawing.Point(6, 140);
  504. this.label21.Name = "label21";
  505. this.label21.Size = new System.Drawing.Size(101, 12);
  506. this.label21.TabIndex = 10;
  507. this.label21.Text = "ATT_3.5G_COM2";
  508. //
  509. // numericUpDown_ATT_3_5G_UL
  510. //
  511. this.numericUpDown_ATT_3_5G_UL.DecimalPlaces = 2;
  512. this.numericUpDown_ATT_3_5G_UL.Increment = new decimal(new int[] {
  513. 25,
  514. 0,
  515. 0,
  516. 131072});
  517. this.numericUpDown_ATT_3_5G_UL.Location = new System.Drawing.Point(141, 58);
  518. this.numericUpDown_ATT_3_5G_UL.Maximum = new decimal(new int[] {
  519. 30,
  520. 0,
  521. 0,
  522. 0});
  523. this.numericUpDown_ATT_3_5G_UL.Name = "numericUpDown_ATT_3_5G_UL";
  524. this.numericUpDown_ATT_3_5G_UL.Size = new System.Drawing.Size(71, 21);
  525. this.numericUpDown_ATT_3_5G_UL.TabIndex = 1;
  526. this.numericUpDown_ATT_3_5G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  527. //
  528. // numericUpDown_ATT_3_5G_DL
  529. //
  530. this.numericUpDown_ATT_3_5G_DL.DecimalPlaces = 2;
  531. this.numericUpDown_ATT_3_5G_DL.Increment = new decimal(new int[] {
  532. 25,
  533. 0,
  534. 0,
  535. 131072});
  536. this.numericUpDown_ATT_3_5G_DL.Location = new System.Drawing.Point(141, 19);
  537. this.numericUpDown_ATT_3_5G_DL.Maximum = new decimal(new int[] {
  538. 30,
  539. 0,
  540. 0,
  541. 0});
  542. this.numericUpDown_ATT_3_5G_DL.Name = "numericUpDown_ATT_3_5G_DL";
  543. this.numericUpDown_ATT_3_5G_DL.Size = new System.Drawing.Size(71, 21);
  544. this.numericUpDown_ATT_3_5G_DL.TabIndex = 1;
  545. this.numericUpDown_ATT_3_5G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  546. //
  547. // label26
  548. //
  549. this.label26.AutoSize = true;
  550. this.label26.Location = new System.Drawing.Point(6, 23);
  551. this.label26.Name = "label26";
  552. this.label26.Size = new System.Drawing.Size(81, 12);
  553. this.label26.TabIndex = 0;
  554. this.label26.Text = "ATT_3.5G_DL";
  555. //
  556. // label28
  557. //
  558. this.label28.AutoSize = true;
  559. this.label28.Location = new System.Drawing.Point(6, 62);
  560. this.label28.Name = "label28";
  561. this.label28.Size = new System.Drawing.Size(81, 12);
  562. this.label28.TabIndex = 0;
  563. this.label28.Text = "ATT_3.5G_UL";
  564. //
  565. // groupBox5
  566. //
  567. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL4);
  568. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL2);
  569. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL3);
  570. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL1);
  571. this.groupBox5.Controls.Add(this.label15);
  572. this.groupBox5.Controls.Add(this.label16);
  573. this.groupBox5.Controls.Add(this.label17);
  574. this.groupBox5.Controls.Add(this.label18);
  575. this.groupBox5.Location = new System.Drawing.Point(311, 111);
  576. this.groupBox5.Name = "groupBox5";
  577. this.groupBox5.Size = new System.Drawing.Size(215, 142);
  578. this.groupBox5.TabIndex = 96;
  579. this.groupBox5.TabStop = false;
  580. this.groupBox5.Text = "2.1GHz UL";
  581. //
  582. // numericUpDown_ATT_2_1G_UL4
  583. //
  584. this.numericUpDown_ATT_2_1G_UL4.DecimalPlaces = 1;
  585. this.numericUpDown_ATT_2_1G_UL4.Increment = new decimal(new int[] {
  586. 5,
  587. 0,
  588. 0,
  589. 65536});
  590. this.numericUpDown_ATT_2_1G_UL4.Location = new System.Drawing.Point(132, 104);
  591. this.numericUpDown_ATT_2_1G_UL4.Maximum = new decimal(new int[] {
  592. 30,
  593. 0,
  594. 0,
  595. 0});
  596. this.numericUpDown_ATT_2_1G_UL4.Name = "numericUpDown_ATT_2_1G_UL4";
  597. this.numericUpDown_ATT_2_1G_UL4.Size = new System.Drawing.Size(71, 21);
  598. this.numericUpDown_ATT_2_1G_UL4.TabIndex = 1;
  599. this.numericUpDown_ATT_2_1G_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  600. //
  601. // numericUpDown_ATT_2_1G_UL2
  602. //
  603. this.numericUpDown_ATT_2_1G_UL2.DecimalPlaces = 1;
  604. this.numericUpDown_ATT_2_1G_UL2.Increment = new decimal(new int[] {
  605. 5,
  606. 0,
  607. 0,
  608. 65536});
  609. this.numericUpDown_ATT_2_1G_UL2.Location = new System.Drawing.Point(132, 47);
  610. this.numericUpDown_ATT_2_1G_UL2.Maximum = new decimal(new int[] {
  611. 30,
  612. 0,
  613. 0,
  614. 0});
  615. this.numericUpDown_ATT_2_1G_UL2.Name = "numericUpDown_ATT_2_1G_UL2";
  616. this.numericUpDown_ATT_2_1G_UL2.Size = new System.Drawing.Size(71, 21);
  617. this.numericUpDown_ATT_2_1G_UL2.TabIndex = 1;
  618. this.numericUpDown_ATT_2_1G_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  619. //
  620. // numericUpDown_ATT_2_1G_UL3
  621. //
  622. this.numericUpDown_ATT_2_1G_UL3.DecimalPlaces = 1;
  623. this.numericUpDown_ATT_2_1G_UL3.Increment = new decimal(new int[] {
  624. 5,
  625. 0,
  626. 0,
  627. 65536});
  628. this.numericUpDown_ATT_2_1G_UL3.Location = new System.Drawing.Point(132, 76);
  629. this.numericUpDown_ATT_2_1G_UL3.Maximum = new decimal(new int[] {
  630. 30,
  631. 0,
  632. 0,
  633. 0});
  634. this.numericUpDown_ATT_2_1G_UL3.Name = "numericUpDown_ATT_2_1G_UL3";
  635. this.numericUpDown_ATT_2_1G_UL3.Size = new System.Drawing.Size(71, 21);
  636. this.numericUpDown_ATT_2_1G_UL3.TabIndex = 1;
  637. this.numericUpDown_ATT_2_1G_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  638. //
  639. // numericUpDown_ATT_2_1G_UL1
  640. //
  641. this.numericUpDown_ATT_2_1G_UL1.DecimalPlaces = 1;
  642. this.numericUpDown_ATT_2_1G_UL1.Increment = new decimal(new int[] {
  643. 5,
  644. 0,
  645. 0,
  646. 65536});
  647. this.numericUpDown_ATT_2_1G_UL1.Location = new System.Drawing.Point(132, 19);
  648. this.numericUpDown_ATT_2_1G_UL1.Maximum = new decimal(new int[] {
  649. 30,
  650. 0,
  651. 0,
  652. 0});
  653. this.numericUpDown_ATT_2_1G_UL1.Name = "numericUpDown_ATT_2_1G_UL1";
  654. this.numericUpDown_ATT_2_1G_UL1.Size = new System.Drawing.Size(71, 21);
  655. this.numericUpDown_ATT_2_1G_UL1.TabIndex = 1;
  656. this.numericUpDown_ATT_2_1G_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  657. //
  658. // label15
  659. //
  660. this.label15.AutoSize = true;
  661. this.label15.Location = new System.Drawing.Point(6, 80);
  662. this.label15.Name = "label15";
  663. this.label15.Size = new System.Drawing.Size(87, 12);
  664. this.label15.TabIndex = 0;
  665. this.label15.Text = "ATT_2.1G_UL3";
  666. //
  667. // label16
  668. //
  669. this.label16.AutoSize = true;
  670. this.label16.Location = new System.Drawing.Point(6, 110);
  671. this.label16.Name = "label16";
  672. this.label16.Size = new System.Drawing.Size(87, 12);
  673. this.label16.TabIndex = 0;
  674. this.label16.Text = "ATT_2.1G_UL4";
  675. //
  676. // label17
  677. //
  678. this.label17.AutoSize = true;
  679. this.label17.Location = new System.Drawing.Point(6, 23);
  680. this.label17.Name = "label17";
  681. this.label17.Size = new System.Drawing.Size(87, 12);
  682. this.label17.TabIndex = 0;
  683. this.label17.Text = "ATT_2.1G_UL1";
  684. //
  685. // label18
  686. //
  687. this.label18.AutoSize = true;
  688. this.label18.Location = new System.Drawing.Point(6, 53);
  689. this.label18.Name = "label18";
  690. this.label18.Size = new System.Drawing.Size(87, 12);
  691. this.label18.TabIndex = 0;
  692. this.label18.Text = "ATT_2.1G_UL2";
  693. //
  694. // groupBox2
  695. //
  696. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL4);
  697. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL2);
  698. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL3);
  699. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL1);
  700. this.groupBox2.Controls.Add(this.label7);
  701. this.groupBox2.Controls.Add(this.label6);
  702. this.groupBox2.Controls.Add(this.label4);
  703. this.groupBox2.Controls.Add(this.label5);
  704. this.groupBox2.Location = new System.Drawing.Point(23, 111);
  705. this.groupBox2.Name = "groupBox2";
  706. this.groupBox2.Size = new System.Drawing.Size(215, 142);
  707. this.groupBox2.TabIndex = 97;
  708. this.groupBox2.TabStop = false;
  709. this.groupBox2.Text = "1.8GHz UL";
  710. //
  711. // numericUpDown_ATT_1_8G_UL4
  712. //
  713. this.numericUpDown_ATT_1_8G_UL4.DecimalPlaces = 1;
  714. this.numericUpDown_ATT_1_8G_UL4.Increment = new decimal(new int[] {
  715. 5,
  716. 0,
  717. 0,
  718. 65536});
  719. this.numericUpDown_ATT_1_8G_UL4.Location = new System.Drawing.Point(132, 104);
  720. this.numericUpDown_ATT_1_8G_UL4.Maximum = new decimal(new int[] {
  721. 30,
  722. 0,
  723. 0,
  724. 0});
  725. this.numericUpDown_ATT_1_8G_UL4.Name = "numericUpDown_ATT_1_8G_UL4";
  726. this.numericUpDown_ATT_1_8G_UL4.Size = new System.Drawing.Size(71, 21);
  727. this.numericUpDown_ATT_1_8G_UL4.TabIndex = 1;
  728. this.numericUpDown_ATT_1_8G_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  729. //
  730. // numericUpDown_ATT_1_8G_UL2
  731. //
  732. this.numericUpDown_ATT_1_8G_UL2.DecimalPlaces = 1;
  733. this.numericUpDown_ATT_1_8G_UL2.Increment = new decimal(new int[] {
  734. 5,
  735. 0,
  736. 0,
  737. 65536});
  738. this.numericUpDown_ATT_1_8G_UL2.Location = new System.Drawing.Point(132, 47);
  739. this.numericUpDown_ATT_1_8G_UL2.Maximum = new decimal(new int[] {
  740. 30,
  741. 0,
  742. 0,
  743. 0});
  744. this.numericUpDown_ATT_1_8G_UL2.Name = "numericUpDown_ATT_1_8G_UL2";
  745. this.numericUpDown_ATT_1_8G_UL2.Size = new System.Drawing.Size(71, 21);
  746. this.numericUpDown_ATT_1_8G_UL2.TabIndex = 1;
  747. this.numericUpDown_ATT_1_8G_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  748. //
  749. // numericUpDown_ATT_1_8G_UL3
  750. //
  751. this.numericUpDown_ATT_1_8G_UL3.DecimalPlaces = 1;
  752. this.numericUpDown_ATT_1_8G_UL3.Increment = new decimal(new int[] {
  753. 5,
  754. 0,
  755. 0,
  756. 65536});
  757. this.numericUpDown_ATT_1_8G_UL3.Location = new System.Drawing.Point(132, 76);
  758. this.numericUpDown_ATT_1_8G_UL3.Maximum = new decimal(new int[] {
  759. 30,
  760. 0,
  761. 0,
  762. 0});
  763. this.numericUpDown_ATT_1_8G_UL3.Name = "numericUpDown_ATT_1_8G_UL3";
  764. this.numericUpDown_ATT_1_8G_UL3.Size = new System.Drawing.Size(71, 21);
  765. this.numericUpDown_ATT_1_8G_UL3.TabIndex = 1;
  766. this.numericUpDown_ATT_1_8G_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  767. //
  768. // numericUpDown_ATT_1_8G_UL1
  769. //
  770. this.numericUpDown_ATT_1_8G_UL1.DecimalPlaces = 1;
  771. this.numericUpDown_ATT_1_8G_UL1.Increment = new decimal(new int[] {
  772. 5,
  773. 0,
  774. 0,
  775. 65536});
  776. this.numericUpDown_ATT_1_8G_UL1.Location = new System.Drawing.Point(132, 19);
  777. this.numericUpDown_ATT_1_8G_UL1.Maximum = new decimal(new int[] {
  778. 30,
  779. 0,
  780. 0,
  781. 0});
  782. this.numericUpDown_ATT_1_8G_UL1.Name = "numericUpDown_ATT_1_8G_UL1";
  783. this.numericUpDown_ATT_1_8G_UL1.Size = new System.Drawing.Size(71, 21);
  784. this.numericUpDown_ATT_1_8G_UL1.TabIndex = 1;
  785. this.numericUpDown_ATT_1_8G_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  786. //
  787. // label7
  788. //
  789. this.label7.AutoSize = true;
  790. this.label7.Location = new System.Drawing.Point(6, 80);
  791. this.label7.Name = "label7";
  792. this.label7.Size = new System.Drawing.Size(87, 12);
  793. this.label7.TabIndex = 0;
  794. this.label7.Text = "ATT_1.8G_UL3";
  795. //
  796. // label6
  797. //
  798. this.label6.AutoSize = true;
  799. this.label6.Location = new System.Drawing.Point(6, 110);
  800. this.label6.Name = "label6";
  801. this.label6.Size = new System.Drawing.Size(87, 12);
  802. this.label6.TabIndex = 0;
  803. this.label6.Text = "ATT_1.8G_UL4";
  804. //
  805. // label4
  806. //
  807. this.label4.AutoSize = true;
  808. this.label4.Location = new System.Drawing.Point(6, 23);
  809. this.label4.Name = "label4";
  810. this.label4.Size = new System.Drawing.Size(87, 12);
  811. this.label4.TabIndex = 0;
  812. this.label4.Text = "ATT_1.8G_UL1";
  813. //
  814. // label5
  815. //
  816. this.label5.AutoSize = true;
  817. this.label5.Location = new System.Drawing.Point(6, 53);
  818. this.label5.Name = "label5";
  819. this.label5.Size = new System.Drawing.Size(87, 12);
  820. this.label5.TabIndex = 0;
  821. this.label5.Text = "ATT_1.8G_UL2";
  822. //
  823. // groupBox4
  824. //
  825. this.groupBox4.Controls.Add(this.numericUpDown_ATT_2_1G_DL2);
  826. this.groupBox4.Controls.Add(this.numericUpDown_ATT_2_1G_DL1);
  827. this.groupBox4.Controls.Add(this.label13);
  828. this.groupBox4.Controls.Add(this.label14);
  829. this.groupBox4.Location = new System.Drawing.Point(311, 20);
  830. this.groupBox4.Name = "groupBox4";
  831. this.groupBox4.Size = new System.Drawing.Size(215, 85);
  832. this.groupBox4.TabIndex = 98;
  833. this.groupBox4.TabStop = false;
  834. this.groupBox4.Text = "2.1GHz DL";
  835. //
  836. // numericUpDown_ATT_2_1G_DL2
  837. //
  838. this.numericUpDown_ATT_2_1G_DL2.DecimalPlaces = 1;
  839. this.numericUpDown_ATT_2_1G_DL2.Increment = new decimal(new int[] {
  840. 5,
  841. 0,
  842. 0,
  843. 65536});
  844. this.numericUpDown_ATT_2_1G_DL2.Location = new System.Drawing.Point(132, 47);
  845. this.numericUpDown_ATT_2_1G_DL2.Maximum = new decimal(new int[] {
  846. 30,
  847. 0,
  848. 0,
  849. 0});
  850. this.numericUpDown_ATT_2_1G_DL2.Name = "numericUpDown_ATT_2_1G_DL2";
  851. this.numericUpDown_ATT_2_1G_DL2.Size = new System.Drawing.Size(71, 21);
  852. this.numericUpDown_ATT_2_1G_DL2.TabIndex = 1;
  853. this.numericUpDown_ATT_2_1G_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  854. //
  855. // numericUpDown_ATT_2_1G_DL1
  856. //
  857. this.numericUpDown_ATT_2_1G_DL1.DecimalPlaces = 1;
  858. this.numericUpDown_ATT_2_1G_DL1.Increment = new decimal(new int[] {
  859. 5,
  860. 0,
  861. 0,
  862. 65536});
  863. this.numericUpDown_ATT_2_1G_DL1.Location = new System.Drawing.Point(132, 19);
  864. this.numericUpDown_ATT_2_1G_DL1.Maximum = new decimal(new int[] {
  865. 30,
  866. 0,
  867. 0,
  868. 0});
  869. this.numericUpDown_ATT_2_1G_DL1.Name = "numericUpDown_ATT_2_1G_DL1";
  870. this.numericUpDown_ATT_2_1G_DL1.Size = new System.Drawing.Size(71, 21);
  871. this.numericUpDown_ATT_2_1G_DL1.TabIndex = 1;
  872. this.numericUpDown_ATT_2_1G_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  873. //
  874. // label13
  875. //
  876. this.label13.AutoSize = true;
  877. this.label13.Location = new System.Drawing.Point(6, 23);
  878. this.label13.Name = "label13";
  879. this.label13.Size = new System.Drawing.Size(87, 12);
  880. this.label13.TabIndex = 0;
  881. this.label13.Text = "ATT_2.1G_DL1";
  882. //
  883. // label14
  884. //
  885. this.label14.AutoSize = true;
  886. this.label14.Location = new System.Drawing.Point(6, 53);
  887. this.label14.Name = "label14";
  888. this.label14.Size = new System.Drawing.Size(87, 12);
  889. this.label14.TabIndex = 0;
  890. this.label14.Text = "ATT_2.1G_DL2";
  891. //
  892. // groupBox1
  893. //
  894. this.groupBox1.Controls.Add(this.numericUpDown_ATT_1_8G_DL2);
  895. this.groupBox1.Controls.Add(this.numericUpDown_ATT_1_8G_DL1);
  896. this.groupBox1.Controls.Add(this.label3);
  897. this.groupBox1.Controls.Add(this.label2);
  898. this.groupBox1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  899. this.groupBox1.Location = new System.Drawing.Point(23, 20);
  900. this.groupBox1.Name = "groupBox1";
  901. this.groupBox1.Size = new System.Drawing.Size(215, 85);
  902. this.groupBox1.TabIndex = 99;
  903. this.groupBox1.TabStop = false;
  904. this.groupBox1.Text = "1.8GHz DL";
  905. //
  906. // numericUpDown_ATT_1_8G_DL2
  907. //
  908. this.numericUpDown_ATT_1_8G_DL2.DecimalPlaces = 1;
  909. this.numericUpDown_ATT_1_8G_DL2.Increment = new decimal(new int[] {
  910. 5,
  911. 0,
  912. 0,
  913. 65536});
  914. this.numericUpDown_ATT_1_8G_DL2.Location = new System.Drawing.Point(132, 47);
  915. this.numericUpDown_ATT_1_8G_DL2.Maximum = new decimal(new int[] {
  916. 30,
  917. 0,
  918. 0,
  919. 0});
  920. this.numericUpDown_ATT_1_8G_DL2.Name = "numericUpDown_ATT_1_8G_DL2";
  921. this.numericUpDown_ATT_1_8G_DL2.Size = new System.Drawing.Size(71, 21);
  922. this.numericUpDown_ATT_1_8G_DL2.TabIndex = 1;
  923. this.numericUpDown_ATT_1_8G_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  924. //
  925. // numericUpDown_ATT_1_8G_DL1
  926. //
  927. this.numericUpDown_ATT_1_8G_DL1.DecimalPlaces = 1;
  928. this.numericUpDown_ATT_1_8G_DL1.Increment = new decimal(new int[] {
  929. 5,
  930. 0,
  931. 0,
  932. 65536});
  933. this.numericUpDown_ATT_1_8G_DL1.Location = new System.Drawing.Point(132, 19);
  934. this.numericUpDown_ATT_1_8G_DL1.Maximum = new decimal(new int[] {
  935. 30,
  936. 0,
  937. 0,
  938. 0});
  939. this.numericUpDown_ATT_1_8G_DL1.Name = "numericUpDown_ATT_1_8G_DL1";
  940. this.numericUpDown_ATT_1_8G_DL1.Size = new System.Drawing.Size(71, 21);
  941. this.numericUpDown_ATT_1_8G_DL1.TabIndex = 1;
  942. this.numericUpDown_ATT_1_8G_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  943. //
  944. // label3
  945. //
  946. this.label3.AutoSize = true;
  947. this.label3.Location = new System.Drawing.Point(6, 23);
  948. this.label3.Name = "label3";
  949. this.label3.Size = new System.Drawing.Size(87, 12);
  950. this.label3.TabIndex = 0;
  951. this.label3.Text = "ATT_1.8G_DL1";
  952. //
  953. // label2
  954. //
  955. this.label2.AutoSize = true;
  956. this.label2.Location = new System.Drawing.Point(6, 53);
  957. this.label2.Name = "label2";
  958. this.label2.Size = new System.Drawing.Size(87, 12);
  959. this.label2.TabIndex = 0;
  960. this.label2.Text = "ATT_1.8G_DL2";
  961. //
  962. // groupBox17
  963. //
  964. this.groupBox17.Controls.Add(this.label74);
  965. this.groupBox17.Controls.Add(this.label73);
  966. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_ON);
  967. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_OFF);
  968. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_ON);
  969. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_OFF);
  970. this.groupBox17.Controls.Add(this.label78);
  971. this.groupBox17.Controls.Add(this.label77);
  972. this.groupBox17.Controls.Add(this.label76);
  973. this.groupBox17.Controls.Add(this.label75);
  974. this.groupBox17.Controls.Add(this.label72);
  975. this.groupBox17.Controls.Add(this.label71);
  976. this.groupBox17.Controls.Add(this.label70);
  977. this.groupBox17.Controls.Add(this.label69);
  978. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_ON);
  979. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF);
  980. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_ON);
  981. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF);
  982. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_ON);
  983. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_OFF);
  984. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_ON);
  985. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_OFF);
  986. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_UL_ON);
  987. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_UL_OFF);
  988. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_DL_ON);
  989. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_DL_OFF);
  990. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_UL_ON);
  991. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_UL_OFF);
  992. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_DL_ON);
  993. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_DL_OFF);
  994. this.groupBox17.Location = new System.Drawing.Point(243, 76);
  995. this.groupBox17.Name = "groupBox17";
  996. this.groupBox17.Size = new System.Drawing.Size(924, 136);
  997. this.groupBox17.TabIndex = 95;
  998. this.groupBox17.TabStop = false;
  999. this.groupBox17.Text = "Power";
  1000. //
  1001. // label74
  1002. //
  1003. this.label74.AutoSize = true;
  1004. this.label74.Location = new System.Drawing.Point(614, 15);
  1005. this.label74.Name = "label74";
  1006. this.label74.Size = new System.Drawing.Size(105, 12);
  1007. this.label74.TabIndex = 102;
  1008. this.label74.Text = "PATH_EN_3.5G_H";
  1009. //
  1010. // label73
  1011. //
  1012. this.label73.AutoSize = true;
  1013. this.label73.Location = new System.Drawing.Point(615, 71);
  1014. this.label73.Name = "label73";
  1015. this.label73.Size = new System.Drawing.Size(104, 12);
  1016. this.label73.TabIndex = 103;
  1017. this.label73.Text = "PATH_EN_3.5G_L";
  1018. //
  1019. // pictureBox_PATH_3_5G_L_ON
  1020. //
  1021. this.pictureBox_PATH_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_ON.Image")));
  1022. this.pictureBox_PATH_3_5G_L_ON.Location = new System.Drawing.Point(640, 90);
  1023. this.pictureBox_PATH_3_5G_L_ON.Name = "pictureBox_PATH_3_5G_L_ON";
  1024. this.pictureBox_PATH_3_5G_L_ON.Size = new System.Drawing.Size(38, 36);
  1025. this.pictureBox_PATH_3_5G_L_ON.TabIndex = 98;
  1026. this.pictureBox_PATH_3_5G_L_ON.TabStop = false;
  1027. this.pictureBox_PATH_3_5G_L_ON.Tag = "15";
  1028. this.pictureBox_PATH_3_5G_L_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1029. //
  1030. // pictureBox_PATH_3_5G_L_OFF
  1031. //
  1032. this.pictureBox_PATH_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_OFF.Image")));
  1033. this.pictureBox_PATH_3_5G_L_OFF.Location = new System.Drawing.Point(640, 90);
  1034. this.pictureBox_PATH_3_5G_L_OFF.Name = "pictureBox_PATH_3_5G_L_OFF";
  1035. this.pictureBox_PATH_3_5G_L_OFF.Size = new System.Drawing.Size(38, 36);
  1036. this.pictureBox_PATH_3_5G_L_OFF.TabIndex = 99;
  1037. this.pictureBox_PATH_3_5G_L_OFF.TabStop = false;
  1038. this.pictureBox_PATH_3_5G_L_OFF.Tag = "16";
  1039. this.pictureBox_PATH_3_5G_L_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1040. //
  1041. // pictureBox_PATH_3_5G_H_ON
  1042. //
  1043. this.pictureBox_PATH_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_ON.Image")));
  1044. this.pictureBox_PATH_3_5G_H_ON.Location = new System.Drawing.Point(640, 30);
  1045. this.pictureBox_PATH_3_5G_H_ON.Name = "pictureBox_PATH_3_5G_H_ON";
  1046. this.pictureBox_PATH_3_5G_H_ON.Size = new System.Drawing.Size(38, 36);
  1047. this.pictureBox_PATH_3_5G_H_ON.TabIndex = 100;
  1048. this.pictureBox_PATH_3_5G_H_ON.TabStop = false;
  1049. this.pictureBox_PATH_3_5G_H_ON.Tag = "13";
  1050. this.pictureBox_PATH_3_5G_H_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1051. //
  1052. // pictureBox_PATH_3_5G_H_OFF
  1053. //
  1054. this.pictureBox_PATH_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_OFF.Image")));
  1055. this.pictureBox_PATH_3_5G_H_OFF.Location = new System.Drawing.Point(640, 30);
  1056. this.pictureBox_PATH_3_5G_H_OFF.Name = "pictureBox_PATH_3_5G_H_OFF";
  1057. this.pictureBox_PATH_3_5G_H_OFF.Size = new System.Drawing.Size(38, 36);
  1058. this.pictureBox_PATH_3_5G_H_OFF.TabIndex = 101;
  1059. this.pictureBox_PATH_3_5G_H_OFF.TabStop = false;
  1060. this.pictureBox_PATH_3_5G_H_OFF.Tag = "14";
  1061. this.pictureBox_PATH_3_5G_H_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1062. //
  1063. // label78
  1064. //
  1065. this.label78.AutoSize = true;
  1066. this.label78.Location = new System.Drawing.Point(784, 15);
  1067. this.label78.Name = "label78";
  1068. this.label78.Size = new System.Drawing.Size(125, 12);
  1069. this.label78.TabIndex = 97;
  1070. this.label78.Text = "PLL_ON/OFF_3.5G_H";
  1071. //
  1072. // label77
  1073. //
  1074. this.label77.AutoSize = true;
  1075. this.label77.Location = new System.Drawing.Point(784, 70);
  1076. this.label77.Name = "label77";
  1077. this.label77.Size = new System.Drawing.Size(124, 12);
  1078. this.label77.TabIndex = 97;
  1079. this.label77.Text = "PLL_ON/OFF_3.5G_L";
  1080. //
  1081. // label76
  1082. //
  1083. this.label76.AutoSize = true;
  1084. this.label76.Location = new System.Drawing.Point(423, 70);
  1085. this.label76.Name = "label76";
  1086. this.label76.Size = new System.Drawing.Size(112, 12);
  1087. this.label76.TabIndex = 97;
  1088. this.label76.Text = "PATH_EN_3.5G_UL";
  1089. //
  1090. // label75
  1091. //
  1092. this.label75.AutoSize = true;
  1093. this.label75.Location = new System.Drawing.Point(423, 15);
  1094. this.label75.Name = "label75";
  1095. this.label75.Size = new System.Drawing.Size(112, 12);
  1096. this.label75.TabIndex = 97;
  1097. this.label75.Text = "PATH_EN_3.5G_DL";
  1098. //
  1099. // label72
  1100. //
  1101. this.label72.AutoSize = true;
  1102. this.label72.Location = new System.Drawing.Point(246, 70);
  1103. this.label72.Name = "label72";
  1104. this.label72.Size = new System.Drawing.Size(112, 12);
  1105. this.label72.TabIndex = 97;
  1106. this.label72.Text = "PATH_EN_2.1G_UL";
  1107. //
  1108. // label71
  1109. //
  1110. this.label71.AutoSize = true;
  1111. this.label71.Location = new System.Drawing.Point(246, 15);
  1112. this.label71.Name = "label71";
  1113. this.label71.Size = new System.Drawing.Size(112, 12);
  1114. this.label71.TabIndex = 97;
  1115. this.label71.Text = "PATH_EN_2.1G_DL";
  1116. //
  1117. // label70
  1118. //
  1119. this.label70.AutoSize = true;
  1120. this.label70.Location = new System.Drawing.Point(66, 70);
  1121. this.label70.Name = "label70";
  1122. this.label70.Size = new System.Drawing.Size(112, 12);
  1123. this.label70.TabIndex = 97;
  1124. this.label70.Text = "PATH_EN_1.8G_UL";
  1125. //
  1126. // label69
  1127. //
  1128. this.label69.AutoSize = true;
  1129. this.label69.Location = new System.Drawing.Point(67, 15);
  1130. this.label69.Name = "label69";
  1131. this.label69.Size = new System.Drawing.Size(112, 12);
  1132. this.label69.TabIndex = 97;
  1133. this.label69.Text = "PATH_EN_1.8G_DL";
  1134. //
  1135. // pictureBox_PLL_ON_OFF_3_5G_L_ON
  1136. //
  1137. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_ON.Image")));
  1138. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Location = new System.Drawing.Point(820, 90);
  1139. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_L_ON";
  1140. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Size = new System.Drawing.Size(38, 36);
  1141. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabIndex = 96;
  1142. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabStop = false;
  1143. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Tag = "19";
  1144. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1145. //
  1146. // pictureBox_PLL_ON_OFF_3_5G_L_OFF
  1147. //
  1148. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image")));
  1149. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Location = new System.Drawing.Point(820, 90);
  1150. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_L_OFF";
  1151. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Size = new System.Drawing.Size(38, 36);
  1152. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabIndex = 96;
  1153. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabStop = false;
  1154. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Tag = "20";
  1155. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1156. //
  1157. // pictureBox_PLL_ON_OFF_3_5G_H_ON
  1158. //
  1159. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_ON.Image")));
  1160. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Location = new System.Drawing.Point(820, 30);
  1161. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_H_ON";
  1162. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Size = new System.Drawing.Size(38, 36);
  1163. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabIndex = 96;
  1164. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabStop = false;
  1165. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Tag = "17";
  1166. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1167. //
  1168. // pictureBox_PLL_ON_OFF_3_5G_H_OFF
  1169. //
  1170. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image")));
  1171. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Location = new System.Drawing.Point(820, 30);
  1172. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_H_OFF";
  1173. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Size = new System.Drawing.Size(38, 36);
  1174. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabIndex = 96;
  1175. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabStop = false;
  1176. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Tag = "18";
  1177. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1178. //
  1179. // pictureBox_PATH_3_5G_UL_ON
  1180. //
  1181. this.pictureBox_PATH_3_5G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_ON.Image")));
  1182. this.pictureBox_PATH_3_5G_UL_ON.Location = new System.Drawing.Point(460, 90);
  1183. this.pictureBox_PATH_3_5G_UL_ON.Name = "pictureBox_PATH_3_5G_UL_ON";
  1184. this.pictureBox_PATH_3_5G_UL_ON.Size = new System.Drawing.Size(38, 36);
  1185. this.pictureBox_PATH_3_5G_UL_ON.TabIndex = 96;
  1186. this.pictureBox_PATH_3_5G_UL_ON.TabStop = false;
  1187. this.pictureBox_PATH_3_5G_UL_ON.Tag = "11";
  1188. this.pictureBox_PATH_3_5G_UL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1189. //
  1190. // pictureBox_PATH_3_5G_UL_OFF
  1191. //
  1192. this.pictureBox_PATH_3_5G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_OFF.Image")));
  1193. this.pictureBox_PATH_3_5G_UL_OFF.Location = new System.Drawing.Point(460, 90);
  1194. this.pictureBox_PATH_3_5G_UL_OFF.Name = "pictureBox_PATH_3_5G_UL_OFF";
  1195. this.pictureBox_PATH_3_5G_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1196. this.pictureBox_PATH_3_5G_UL_OFF.TabIndex = 96;
  1197. this.pictureBox_PATH_3_5G_UL_OFF.TabStop = false;
  1198. this.pictureBox_PATH_3_5G_UL_OFF.Tag = "12";
  1199. this.pictureBox_PATH_3_5G_UL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1200. //
  1201. // pictureBox_PATH_3_5G_DL_ON
  1202. //
  1203. this.pictureBox_PATH_3_5G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_ON.Image")));
  1204. this.pictureBox_PATH_3_5G_DL_ON.Location = new System.Drawing.Point(460, 30);
  1205. this.pictureBox_PATH_3_5G_DL_ON.Name = "pictureBox_PATH_3_5G_DL_ON";
  1206. this.pictureBox_PATH_3_5G_DL_ON.Size = new System.Drawing.Size(38, 36);
  1207. this.pictureBox_PATH_3_5G_DL_ON.TabIndex = 96;
  1208. this.pictureBox_PATH_3_5G_DL_ON.TabStop = false;
  1209. this.pictureBox_PATH_3_5G_DL_ON.Tag = "9";
  1210. this.pictureBox_PATH_3_5G_DL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1211. //
  1212. // pictureBox_PATH_3_5G_DL_OFF
  1213. //
  1214. this.pictureBox_PATH_3_5G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_OFF.Image")));
  1215. this.pictureBox_PATH_3_5G_DL_OFF.Location = new System.Drawing.Point(460, 30);
  1216. this.pictureBox_PATH_3_5G_DL_OFF.Name = "pictureBox_PATH_3_5G_DL_OFF";
  1217. this.pictureBox_PATH_3_5G_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1218. this.pictureBox_PATH_3_5G_DL_OFF.TabIndex = 96;
  1219. this.pictureBox_PATH_3_5G_DL_OFF.TabStop = false;
  1220. this.pictureBox_PATH_3_5G_DL_OFF.Tag = "10";
  1221. this.pictureBox_PATH_3_5G_DL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1222. //
  1223. // pictureBox_PATH_2_1G_UL_ON
  1224. //
  1225. this.pictureBox_PATH_2_1G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_UL_ON.Image")));
  1226. this.pictureBox_PATH_2_1G_UL_ON.Location = new System.Drawing.Point(280, 90);
  1227. this.pictureBox_PATH_2_1G_UL_ON.Name = "pictureBox_PATH_2_1G_UL_ON";
  1228. this.pictureBox_PATH_2_1G_UL_ON.Size = new System.Drawing.Size(38, 36);
  1229. this.pictureBox_PATH_2_1G_UL_ON.TabIndex = 96;
  1230. this.pictureBox_PATH_2_1G_UL_ON.TabStop = false;
  1231. this.pictureBox_PATH_2_1G_UL_ON.Tag = "7";
  1232. this.pictureBox_PATH_2_1G_UL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1233. //
  1234. // pictureBox_PATH_2_1G_UL_OFF
  1235. //
  1236. this.pictureBox_PATH_2_1G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_UL_OFF.Image")));
  1237. this.pictureBox_PATH_2_1G_UL_OFF.Location = new System.Drawing.Point(280, 90);
  1238. this.pictureBox_PATH_2_1G_UL_OFF.Name = "pictureBox_PATH_2_1G_UL_OFF";
  1239. this.pictureBox_PATH_2_1G_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1240. this.pictureBox_PATH_2_1G_UL_OFF.TabIndex = 96;
  1241. this.pictureBox_PATH_2_1G_UL_OFF.TabStop = false;
  1242. this.pictureBox_PATH_2_1G_UL_OFF.Tag = "8";
  1243. this.pictureBox_PATH_2_1G_UL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1244. //
  1245. // pictureBox_PATH_2_1G_DL_ON
  1246. //
  1247. this.pictureBox_PATH_2_1G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_DL_ON.Image")));
  1248. this.pictureBox_PATH_2_1G_DL_ON.Location = new System.Drawing.Point(280, 30);
  1249. this.pictureBox_PATH_2_1G_DL_ON.Name = "pictureBox_PATH_2_1G_DL_ON";
  1250. this.pictureBox_PATH_2_1G_DL_ON.Size = new System.Drawing.Size(38, 36);
  1251. this.pictureBox_PATH_2_1G_DL_ON.TabIndex = 96;
  1252. this.pictureBox_PATH_2_1G_DL_ON.TabStop = false;
  1253. this.pictureBox_PATH_2_1G_DL_ON.Tag = "5";
  1254. this.pictureBox_PATH_2_1G_DL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1255. //
  1256. // pictureBox_PATH_2_1G_DL_OFF
  1257. //
  1258. this.pictureBox_PATH_2_1G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_DL_OFF.Image")));
  1259. this.pictureBox_PATH_2_1G_DL_OFF.Location = new System.Drawing.Point(280, 30);
  1260. this.pictureBox_PATH_2_1G_DL_OFF.Name = "pictureBox_PATH_2_1G_DL_OFF";
  1261. this.pictureBox_PATH_2_1G_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1262. this.pictureBox_PATH_2_1G_DL_OFF.TabIndex = 96;
  1263. this.pictureBox_PATH_2_1G_DL_OFF.TabStop = false;
  1264. this.pictureBox_PATH_2_1G_DL_OFF.Tag = "6";
  1265. this.pictureBox_PATH_2_1G_DL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1266. //
  1267. // pictureBox_PATH_1_8G_UL_ON
  1268. //
  1269. this.pictureBox_PATH_1_8G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_UL_ON.Image")));
  1270. this.pictureBox_PATH_1_8G_UL_ON.Location = new System.Drawing.Point(100, 90);
  1271. this.pictureBox_PATH_1_8G_UL_ON.Name = "pictureBox_PATH_1_8G_UL_ON";
  1272. this.pictureBox_PATH_1_8G_UL_ON.Size = new System.Drawing.Size(38, 36);
  1273. this.pictureBox_PATH_1_8G_UL_ON.TabIndex = 96;
  1274. this.pictureBox_PATH_1_8G_UL_ON.TabStop = false;
  1275. this.pictureBox_PATH_1_8G_UL_ON.Tag = "3";
  1276. this.pictureBox_PATH_1_8G_UL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1277. //
  1278. // pictureBox_PATH_1_8G_UL_OFF
  1279. //
  1280. this.pictureBox_PATH_1_8G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_UL_OFF.Image")));
  1281. this.pictureBox_PATH_1_8G_UL_OFF.Location = new System.Drawing.Point(100, 90);
  1282. this.pictureBox_PATH_1_8G_UL_OFF.Name = "pictureBox_PATH_1_8G_UL_OFF";
  1283. this.pictureBox_PATH_1_8G_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1284. this.pictureBox_PATH_1_8G_UL_OFF.TabIndex = 96;
  1285. this.pictureBox_PATH_1_8G_UL_OFF.TabStop = false;
  1286. this.pictureBox_PATH_1_8G_UL_OFF.Tag = "4";
  1287. this.pictureBox_PATH_1_8G_UL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1288. //
  1289. // pictureBox_PATH_1_8G_DL_ON
  1290. //
  1291. this.pictureBox_PATH_1_8G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_DL_ON.Image")));
  1292. this.pictureBox_PATH_1_8G_DL_ON.Location = new System.Drawing.Point(100, 30);
  1293. this.pictureBox_PATH_1_8G_DL_ON.Name = "pictureBox_PATH_1_8G_DL_ON";
  1294. this.pictureBox_PATH_1_8G_DL_ON.Size = new System.Drawing.Size(38, 36);
  1295. this.pictureBox_PATH_1_8G_DL_ON.TabIndex = 96;
  1296. this.pictureBox_PATH_1_8G_DL_ON.TabStop = false;
  1297. this.pictureBox_PATH_1_8G_DL_ON.Tag = "1";
  1298. this.pictureBox_PATH_1_8G_DL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1299. //
  1300. // pictureBox_PATH_1_8G_DL_OFF
  1301. //
  1302. this.pictureBox_PATH_1_8G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_DL_OFF.Image")));
  1303. this.pictureBox_PATH_1_8G_DL_OFF.Location = new System.Drawing.Point(100, 30);
  1304. this.pictureBox_PATH_1_8G_DL_OFF.Name = "pictureBox_PATH_1_8G_DL_OFF";
  1305. this.pictureBox_PATH_1_8G_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1306. this.pictureBox_PATH_1_8G_DL_OFF.TabIndex = 96;
  1307. this.pictureBox_PATH_1_8G_DL_OFF.TabStop = false;
  1308. this.pictureBox_PATH_1_8G_DL_OFF.Tag = "2";
  1309. this.pictureBox_PATH_1_8G_DL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1310. //
  1311. // label79
  1312. //
  1313. this.label79.AutoSize = true;
  1314. this.label79.Font = new System.Drawing.Font("굴림", 36F, System.Drawing.FontStyle.Bold);
  1315. this.label79.Location = new System.Drawing.Point(499, 20);
  1316. this.label79.Name = "label79";
  1317. this.label79.Size = new System.Drawing.Size(501, 48);
  1318. this.label79.TabIndex = 97;
  1319. this.label79.Text = "RF-TRIO-3.5G-RFU";
  1320. //
  1321. // label80
  1322. //
  1323. this.label80.AutoSize = true;
  1324. this.label80.Location = new System.Drawing.Point(989, 66);
  1325. this.label80.Name = "label80";
  1326. this.label80.Size = new System.Drawing.Size(178, 12);
  1327. this.label80.TabIndex = 98;
  1328. this.label80.Text = "Copyright (c) 2019. BLUECELL";
  1329. //
  1330. // groupBox10
  1331. //
  1332. this.groupBox10.Controls.Add(this.groupBox11);
  1333. this.groupBox10.Controls.Add(this.groupBox15);
  1334. this.groupBox10.Controls.Add(this.groupBox16);
  1335. this.groupBox10.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1336. this.groupBox10.Location = new System.Drawing.Point(243, 495);
  1337. this.groupBox10.Name = "groupBox10";
  1338. this.groupBox10.Size = new System.Drawing.Size(924, 157);
  1339. this.groupBox10.TabIndex = 102;
  1340. this.groupBox10.TabStop = false;
  1341. this.groupBox10.Text = "PLL(MHz)";
  1342. //
  1343. // groupBox11
  1344. //
  1345. this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_UL);
  1346. this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_DL);
  1347. this.groupBox11.Controls.Add(this.label32);
  1348. this.groupBox11.Controls.Add(this.label33);
  1349. this.groupBox11.Location = new System.Drawing.Point(687, 40);
  1350. this.groupBox11.Name = "groupBox11";
  1351. this.groupBox11.Size = new System.Drawing.Size(215, 79);
  1352. this.groupBox11.TabIndex = 94;
  1353. this.groupBox11.TabStop = false;
  1354. this.groupBox11.Text = "3.5GHz";
  1355. //
  1356. // numericUpDown_PLL_3_5G_UL
  1357. //
  1358. this.numericUpDown_PLL_3_5G_UL.DecimalPlaces = 1;
  1359. this.numericUpDown_PLL_3_5G_UL.Increment = new decimal(new int[] {
  1360. 1,
  1361. 0,
  1362. 0,
  1363. 65536});
  1364. this.numericUpDown_PLL_3_5G_UL.Location = new System.Drawing.Point(132, 47);
  1365. this.numericUpDown_PLL_3_5G_UL.Maximum = new decimal(new int[] {
  1366. 3000,
  1367. 0,
  1368. 0,
  1369. 0});
  1370. this.numericUpDown_PLL_3_5G_UL.Name = "numericUpDown_PLL_3_5G_UL";
  1371. this.numericUpDown_PLL_3_5G_UL.Size = new System.Drawing.Size(71, 21);
  1372. this.numericUpDown_PLL_3_5G_UL.TabIndex = 1;
  1373. this.numericUpDown_PLL_3_5G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1374. //
  1375. // numericUpDown_PLL_3_5G_DL
  1376. //
  1377. this.numericUpDown_PLL_3_5G_DL.DecimalPlaces = 1;
  1378. this.numericUpDown_PLL_3_5G_DL.Increment = new decimal(new int[] {
  1379. 1,
  1380. 0,
  1381. 0,
  1382. 65536});
  1383. this.numericUpDown_PLL_3_5G_DL.Location = new System.Drawing.Point(132, 19);
  1384. this.numericUpDown_PLL_3_5G_DL.Maximum = new decimal(new int[] {
  1385. 3000,
  1386. 0,
  1387. 0,
  1388. 0});
  1389. this.numericUpDown_PLL_3_5G_DL.Name = "numericUpDown_PLL_3_5G_DL";
  1390. this.numericUpDown_PLL_3_5G_DL.Size = new System.Drawing.Size(71, 21);
  1391. this.numericUpDown_PLL_3_5G_DL.TabIndex = 1;
  1392. this.numericUpDown_PLL_3_5G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1393. //
  1394. // label32
  1395. //
  1396. this.label32.AutoSize = true;
  1397. this.label32.Location = new System.Drawing.Point(6, 23);
  1398. this.label32.Name = "label32";
  1399. this.label32.Size = new System.Drawing.Size(79, 12);
  1400. this.label32.TabIndex = 0;
  1401. this.label32.Text = "PLL_3.5G_DL";
  1402. //
  1403. // label33
  1404. //
  1405. this.label33.AutoSize = true;
  1406. this.label33.Location = new System.Drawing.Point(6, 53);
  1407. this.label33.Name = "label33";
  1408. this.label33.Size = new System.Drawing.Size(79, 12);
  1409. this.label33.TabIndex = 0;
  1410. this.label33.Text = "PLL_3.5G_UL";
  1411. //
  1412. // groupBox15
  1413. //
  1414. this.groupBox15.Controls.Add(this.numericUpDown_PLL_2_1G_UL);
  1415. this.groupBox15.Controls.Add(this.numericUpDown_PLL_2_1G_DL);
  1416. this.groupBox15.Controls.Add(this.label47);
  1417. this.groupBox15.Controls.Add(this.label48);
  1418. this.groupBox15.Location = new System.Drawing.Point(349, 34);
  1419. this.groupBox15.Name = "groupBox15";
  1420. this.groupBox15.Size = new System.Drawing.Size(215, 85);
  1421. this.groupBox15.TabIndex = 98;
  1422. this.groupBox15.TabStop = false;
  1423. this.groupBox15.Text = "2.1GHz";
  1424. //
  1425. // numericUpDown_PLL_2_1G_UL
  1426. //
  1427. this.numericUpDown_PLL_2_1G_UL.DecimalPlaces = 1;
  1428. this.numericUpDown_PLL_2_1G_UL.Increment = new decimal(new int[] {
  1429. 1,
  1430. 0,
  1431. 0,
  1432. 65536});
  1433. this.numericUpDown_PLL_2_1G_UL.Location = new System.Drawing.Point(132, 47);
  1434. this.numericUpDown_PLL_2_1G_UL.Maximum = new decimal(new int[] {
  1435. 3000,
  1436. 0,
  1437. 0,
  1438. 0});
  1439. this.numericUpDown_PLL_2_1G_UL.Name = "numericUpDown_PLL_2_1G_UL";
  1440. this.numericUpDown_PLL_2_1G_UL.Size = new System.Drawing.Size(71, 21);
  1441. this.numericUpDown_PLL_2_1G_UL.TabIndex = 1;
  1442. this.numericUpDown_PLL_2_1G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1443. //
  1444. // numericUpDown_PLL_2_1G_DL
  1445. //
  1446. this.numericUpDown_PLL_2_1G_DL.DecimalPlaces = 1;
  1447. this.numericUpDown_PLL_2_1G_DL.Increment = new decimal(new int[] {
  1448. 1,
  1449. 0,
  1450. 0,
  1451. 65536});
  1452. this.numericUpDown_PLL_2_1G_DL.Location = new System.Drawing.Point(132, 19);
  1453. this.numericUpDown_PLL_2_1G_DL.Maximum = new decimal(new int[] {
  1454. 3000,
  1455. 0,
  1456. 0,
  1457. 0});
  1458. this.numericUpDown_PLL_2_1G_DL.Name = "numericUpDown_PLL_2_1G_DL";
  1459. this.numericUpDown_PLL_2_1G_DL.Size = new System.Drawing.Size(71, 21);
  1460. this.numericUpDown_PLL_2_1G_DL.TabIndex = 1;
  1461. this.numericUpDown_PLL_2_1G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1462. //
  1463. // label47
  1464. //
  1465. this.label47.AutoSize = true;
  1466. this.label47.Location = new System.Drawing.Point(6, 23);
  1467. this.label47.Name = "label47";
  1468. this.label47.Size = new System.Drawing.Size(79, 12);
  1469. this.label47.TabIndex = 0;
  1470. this.label47.Text = "PLL_2.1G_DL";
  1471. //
  1472. // label48
  1473. //
  1474. this.label48.AutoSize = true;
  1475. this.label48.Location = new System.Drawing.Point(6, 53);
  1476. this.label48.Name = "label48";
  1477. this.label48.Size = new System.Drawing.Size(79, 12);
  1478. this.label48.TabIndex = 0;
  1479. this.label48.Text = "PLL_2.1G_UL";
  1480. //
  1481. // groupBox16
  1482. //
  1483. this.groupBox16.Controls.Add(this.numericUpDown_PLL_1_8G_UL);
  1484. this.groupBox16.Controls.Add(this.numericUpDown_PLL_1_8G_DL);
  1485. this.groupBox16.Controls.Add(this.label49);
  1486. this.groupBox16.Controls.Add(this.label50);
  1487. this.groupBox16.Location = new System.Drawing.Point(23, 36);
  1488. this.groupBox16.Name = "groupBox16";
  1489. this.groupBox16.Size = new System.Drawing.Size(215, 85);
  1490. this.groupBox16.TabIndex = 99;
  1491. this.groupBox16.TabStop = false;
  1492. this.groupBox16.Text = "1.8GHz";
  1493. //
  1494. // numericUpDown_PLL_1_8G_UL
  1495. //
  1496. this.numericUpDown_PLL_1_8G_UL.DecimalPlaces = 1;
  1497. this.numericUpDown_PLL_1_8G_UL.Increment = new decimal(new int[] {
  1498. 1,
  1499. 0,
  1500. 0,
  1501. 65536});
  1502. this.numericUpDown_PLL_1_8G_UL.Location = new System.Drawing.Point(132, 47);
  1503. this.numericUpDown_PLL_1_8G_UL.Maximum = new decimal(new int[] {
  1504. 3000,
  1505. 0,
  1506. 0,
  1507. 0});
  1508. this.numericUpDown_PLL_1_8G_UL.Name = "numericUpDown_PLL_1_8G_UL";
  1509. this.numericUpDown_PLL_1_8G_UL.Size = new System.Drawing.Size(71, 21);
  1510. this.numericUpDown_PLL_1_8G_UL.TabIndex = 1;
  1511. this.numericUpDown_PLL_1_8G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1512. //
  1513. // numericUpDown_PLL_1_8G_DL
  1514. //
  1515. this.numericUpDown_PLL_1_8G_DL.DecimalPlaces = 1;
  1516. this.numericUpDown_PLL_1_8G_DL.Increment = new decimal(new int[] {
  1517. 1,
  1518. 0,
  1519. 0,
  1520. 65536});
  1521. this.numericUpDown_PLL_1_8G_DL.Location = new System.Drawing.Point(132, 19);
  1522. this.numericUpDown_PLL_1_8G_DL.Maximum = new decimal(new int[] {
  1523. 3000,
  1524. 0,
  1525. 0,
  1526. 0});
  1527. this.numericUpDown_PLL_1_8G_DL.Name = "numericUpDown_PLL_1_8G_DL";
  1528. this.numericUpDown_PLL_1_8G_DL.Size = new System.Drawing.Size(71, 21);
  1529. this.numericUpDown_PLL_1_8G_DL.TabIndex = 1;
  1530. this.numericUpDown_PLL_1_8G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1531. //
  1532. // label49
  1533. //
  1534. this.label49.AutoSize = true;
  1535. this.label49.Location = new System.Drawing.Point(6, 23);
  1536. this.label49.Name = "label49";
  1537. this.label49.Size = new System.Drawing.Size(79, 12);
  1538. this.label49.TabIndex = 0;
  1539. this.label49.Text = "PLL_1.8G_DL";
  1540. //
  1541. // label50
  1542. //
  1543. this.label50.AutoSize = true;
  1544. this.label50.Location = new System.Drawing.Point(6, 53);
  1545. this.label50.Name = "label50";
  1546. this.label50.Size = new System.Drawing.Size(79, 12);
  1547. this.label50.TabIndex = 0;
  1548. this.label50.Text = "PLL_1.8G_UL";
  1549. //
  1550. // timer
  1551. //
  1552. this.timer.Interval = 3000;
  1553. this.timer.Tick += new System.EventHandler(this.timer_Tick);
  1554. //
  1555. // groupBox12
  1556. //
  1557. this.groupBox12.Controls.Add(this.pictureBox_R_TX);
  1558. this.groupBox12.Controls.Add(this.pictureBox_G_TX);
  1559. this.groupBox12.Controls.Add(this.pictureBox_R_RX);
  1560. this.groupBox12.Controls.Add(this.pictureBox_G_RX);
  1561. this.groupBox12.Location = new System.Drawing.Point(12, 12);
  1562. this.groupBox12.Name = "groupBox12";
  1563. this.groupBox12.Size = new System.Drawing.Size(225, 66);
  1564. this.groupBox12.TabIndex = 103;
  1565. this.groupBox12.TabStop = false;
  1566. this.groupBox12.Text = "DATA Status";
  1567. //
  1568. // pictureBox_R_TX
  1569. //
  1570. this.pictureBox_R_TX.Image = global::Basic_Terminal.Properties.Resources.TX_Red_Image;
  1571. this.pictureBox_R_TX.Location = new System.Drawing.Point(31, 20);
  1572. this.pictureBox_R_TX.Name = "pictureBox_R_TX";
  1573. this.pictureBox_R_TX.Size = new System.Drawing.Size(38, 36);
  1574. this.pictureBox_R_TX.TabIndex = 97;
  1575. this.pictureBox_R_TX.TabStop = false;
  1576. //
  1577. // pictureBox_G_TX
  1578. //
  1579. this.pictureBox_G_TX.Image = global::Basic_Terminal.Properties.Resources.TX_IMAGE;
  1580. this.pictureBox_G_TX.Location = new System.Drawing.Point(31, 20);
  1581. this.pictureBox_G_TX.Name = "pictureBox_G_TX";
  1582. this.pictureBox_G_TX.Size = new System.Drawing.Size(38, 36);
  1583. this.pictureBox_G_TX.TabIndex = 96;
  1584. this.pictureBox_G_TX.TabStop = false;
  1585. //
  1586. // pictureBox_R_RX
  1587. //
  1588. this.pictureBox_R_RX.Image = global::Basic_Terminal.Properties.Resources.RX_IMAGE;
  1589. this.pictureBox_R_RX.Location = new System.Drawing.Point(157, 20);
  1590. this.pictureBox_R_RX.Name = "pictureBox_R_RX";
  1591. this.pictureBox_R_RX.Size = new System.Drawing.Size(38, 36);
  1592. this.pictureBox_R_RX.TabIndex = 96;
  1593. this.pictureBox_R_RX.TabStop = false;
  1594. //
  1595. // pictureBox_G_RX
  1596. //
  1597. this.pictureBox_G_RX.Image = global::Basic_Terminal.Properties.Resources.RX_GREEN_IMAGE;
  1598. this.pictureBox_G_RX.Location = new System.Drawing.Point(157, 20);
  1599. this.pictureBox_G_RX.Name = "pictureBox_G_RX";
  1600. this.pictureBox_G_RX.Size = new System.Drawing.Size(38, 36);
  1601. this.pictureBox_G_RX.TabIndex = 98;
  1602. this.pictureBox_G_RX.TabStop = false;
  1603. //
  1604. // pictureBox15
  1605. //
  1606. this.pictureBox15.BackColor = System.Drawing.Color.Transparent;
  1607. this.pictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  1608. this.pictureBox15.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox15.Image")));
  1609. this.pictureBox15.Location = new System.Drawing.Point(1017, 12);
  1610. this.pictureBox15.Name = "pictureBox15";
  1611. this.pictureBox15.Size = new System.Drawing.Size(150, 42);
  1612. this.pictureBox15.TabIndex = 99;
  1613. this.pictureBox15.TabStop = false;
  1614. //
  1615. // groupBox_TDD
  1616. //
  1617. this.groupBox_TDD.Controls.Add(this.label24);
  1618. this.groupBox_TDD.Controls.Add(this.label22);
  1619. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_OFF);
  1620. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_ON);
  1621. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_ON);
  1622. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_OFF);
  1623. this.groupBox_TDD.Location = new System.Drawing.Point(12, 306);
  1624. this.groupBox_TDD.Name = "groupBox_TDD";
  1625. this.groupBox_TDD.Size = new System.Drawing.Size(225, 166);
  1626. this.groupBox_TDD.TabIndex = 107;
  1627. this.groupBox_TDD.TabStop = false;
  1628. this.groupBox_TDD.Text = "Tdd";
  1629. //
  1630. // label24
  1631. //
  1632. this.label24.AutoSize = true;
  1633. this.label24.Location = new System.Drawing.Point(144, 13);
  1634. this.label24.Name = "label24";
  1635. this.label24.Size = new System.Drawing.Size(74, 12);
  1636. this.label24.TabIndex = 103;
  1637. this.label24.Text = "T-SYNC_UL";
  1638. //
  1639. // label22
  1640. //
  1641. this.label22.AutoSize = true;
  1642. this.label22.Location = new System.Drawing.Point(19, 13);
  1643. this.label22.Name = "label22";
  1644. this.label22.Size = new System.Drawing.Size(74, 12);
  1645. this.label22.TabIndex = 103;
  1646. this.label22.Text = "T-SYNC_DL";
  1647. //
  1648. // pictureBox_TDD_T_SYNC_DL_OFF
  1649. //
  1650. this.pictureBox_TDD_T_SYNC_DL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
  1651. this.pictureBox_TDD_T_SYNC_DL_OFF.Location = new System.Drawing.Point(32, 25);
  1652. this.pictureBox_TDD_T_SYNC_DL_OFF.Name = "pictureBox_TDD_T_SYNC_DL_OFF";
  1653. this.pictureBox_TDD_T_SYNC_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1654. this.pictureBox_TDD_T_SYNC_DL_OFF.TabIndex = 99;
  1655. this.pictureBox_TDD_T_SYNC_DL_OFF.TabStop = false;
  1656. this.pictureBox_TDD_T_SYNC_DL_OFF.Tag = "1";
  1657. this.pictureBox_TDD_T_SYNC_DL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1658. //
  1659. // pictureBox_TDD_T_SYNC_DL_ON
  1660. //
  1661. this.pictureBox_TDD_T_SYNC_DL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
  1662. this.pictureBox_TDD_T_SYNC_DL_ON.Location = new System.Drawing.Point(32, 25);
  1663. this.pictureBox_TDD_T_SYNC_DL_ON.Name = "pictureBox_TDD_T_SYNC_DL_ON";
  1664. this.pictureBox_TDD_T_SYNC_DL_ON.Size = new System.Drawing.Size(38, 36);
  1665. this.pictureBox_TDD_T_SYNC_DL_ON.TabIndex = 96;
  1666. this.pictureBox_TDD_T_SYNC_DL_ON.TabStop = false;
  1667. this.pictureBox_TDD_T_SYNC_DL_ON.Tag = "0";
  1668. this.pictureBox_TDD_T_SYNC_DL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1669. //
  1670. // pictureBox_TDD_T_SYNC_UL_ON
  1671. //
  1672. this.pictureBox_TDD_T_SYNC_UL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
  1673. this.pictureBox_TDD_T_SYNC_UL_ON.Location = new System.Drawing.Point(158, 25);
  1674. this.pictureBox_TDD_T_SYNC_UL_ON.Name = "pictureBox_TDD_T_SYNC_UL_ON";
  1675. this.pictureBox_TDD_T_SYNC_UL_ON.Size = new System.Drawing.Size(38, 36);
  1676. this.pictureBox_TDD_T_SYNC_UL_ON.TabIndex = 96;
  1677. this.pictureBox_TDD_T_SYNC_UL_ON.TabStop = false;
  1678. this.pictureBox_TDD_T_SYNC_UL_ON.Tag = "1";
  1679. this.pictureBox_TDD_T_SYNC_UL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1680. //
  1681. // pictureBox_TDD_T_SYNC_UL_OFF
  1682. //
  1683. this.pictureBox_TDD_T_SYNC_UL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
  1684. this.pictureBox_TDD_T_SYNC_UL_OFF.Location = new System.Drawing.Point(158, 25);
  1685. this.pictureBox_TDD_T_SYNC_UL_OFF.Name = "pictureBox_TDD_T_SYNC_UL_OFF";
  1686. this.pictureBox_TDD_T_SYNC_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1687. this.pictureBox_TDD_T_SYNC_UL_OFF.TabIndex = 100;
  1688. this.pictureBox_TDD_T_SYNC_UL_OFF.TabStop = false;
  1689. this.pictureBox_TDD_T_SYNC_UL_OFF.Tag = "0";
  1690. this.pictureBox_TDD_T_SYNC_UL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1691. //
  1692. // groupBox3
  1693. //
  1694. this.groupBox3.Controls.Add(this.label_28V_Det);
  1695. this.groupBox3.Controls.Add(this.label3_5GHz_UL_OUT);
  1696. this.groupBox3.Controls.Add(this.label2_1GHz_UL_OUT);
  1697. this.groupBox3.Controls.Add(this.label1_8GHz_UL_OUT);
  1698. this.groupBox3.Controls.Add(this.label_RFU_Temp);
  1699. this.groupBox3.Controls.Add(this.label3_5GHz_UL_IN);
  1700. this.groupBox3.Controls.Add(this.label2_1GHz_UL_IN);
  1701. this.groupBox3.Controls.Add(this.label1_8GHz_UL_IN);
  1702. this.groupBox3.Controls.Add(this.label3_5GHz_DL_OUT);
  1703. this.groupBox3.Controls.Add(this.label2_1GHz_DL_OUT);
  1704. this.groupBox3.Controls.Add(this.label1_8GHz_DL_OUT);
  1705. this.groupBox3.Controls.Add(this.label3_5GHz_DL_IN);
  1706. this.groupBox3.Controls.Add(this.label2_1GHz_DL_IN);
  1707. this.groupBox3.Controls.Add(this.label1_8GHz_DL_IN);
  1708. this.groupBox3.Controls.Add(this.label40);
  1709. this.groupBox3.Controls.Add(this.label34);
  1710. this.groupBox3.Controls.Add(this.label11);
  1711. this.groupBox3.Controls.Add(this.label58);
  1712. this.groupBox3.Controls.Add(this.label39);
  1713. this.groupBox3.Controls.Add(this.label31);
  1714. this.groupBox3.Controls.Add(this.label9);
  1715. this.groupBox3.Controls.Add(this.label51);
  1716. this.groupBox3.Controls.Add(this.label30);
  1717. this.groupBox3.Controls.Add(this.label8);
  1718. this.groupBox3.Controls.Add(this.label57);
  1719. this.groupBox3.Controls.Add(this.label29);
  1720. this.groupBox3.Controls.Add(this.label1);
  1721. this.groupBox3.Controls.Add(this.label_DET_1_8G_DL_IN);
  1722. this.groupBox3.Location = new System.Drawing.Point(12, 495);
  1723. this.groupBox3.Name = "groupBox3";
  1724. this.groupBox3.Size = new System.Drawing.Size(225, 320);
  1725. this.groupBox3.TabIndex = 108;
  1726. this.groupBox3.TabStop = false;
  1727. this.groupBox3.Text = "Voltage";
  1728. //
  1729. // label_28V_Det
  1730. //
  1731. this.label_28V_Det.AutoSize = true;
  1732. this.label_28V_Det.Location = new System.Drawing.Point(150, 295);
  1733. this.label_28V_Det.Name = "label_28V_Det";
  1734. this.label_28V_Det.Size = new System.Drawing.Size(29, 12);
  1735. this.label_28V_Det.TabIndex = 98;
  1736. this.label_28V_Det.Text = "0.0V";
  1737. //
  1738. // label3_5GHz_UL_OUT
  1739. //
  1740. this.label3_5GHz_UL_OUT.AutoSize = true;
  1741. this.label3_5GHz_UL_OUT.Location = new System.Drawing.Point(147, 253);
  1742. this.label3_5GHz_UL_OUT.Name = "label3_5GHz_UL_OUT";
  1743. this.label3_5GHz_UL_OUT.Size = new System.Drawing.Size(29, 12);
  1744. this.label3_5GHz_UL_OUT.TabIndex = 98;
  1745. this.label3_5GHz_UL_OUT.Text = "0.0V";
  1746. //
  1747. // label2_1GHz_UL_OUT
  1748. //
  1749. this.label2_1GHz_UL_OUT.AutoSize = true;
  1750. this.label2_1GHz_UL_OUT.Location = new System.Drawing.Point(148, 169);
  1751. this.label2_1GHz_UL_OUT.Name = "label2_1GHz_UL_OUT";
  1752. this.label2_1GHz_UL_OUT.Size = new System.Drawing.Size(29, 12);
  1753. this.label2_1GHz_UL_OUT.TabIndex = 98;
  1754. this.label2_1GHz_UL_OUT.Text = "0.0V";
  1755. //
  1756. // label1_8GHz_UL_OUT
  1757. //
  1758. this.label1_8GHz_UL_OUT.AutoSize = true;
  1759. this.label1_8GHz_UL_OUT.Location = new System.Drawing.Point(148, 85);
  1760. this.label1_8GHz_UL_OUT.Name = "label1_8GHz_UL_OUT";
  1761. this.label1_8GHz_UL_OUT.Size = new System.Drawing.Size(29, 12);
  1762. this.label1_8GHz_UL_OUT.TabIndex = 98;
  1763. this.label1_8GHz_UL_OUT.Text = "0.0V";
  1764. //
  1765. // label_RFU_Temp
  1766. //
  1767. this.label_RFU_Temp.AutoSize = true;
  1768. this.label_RFU_Temp.Location = new System.Drawing.Point(35, 295);
  1769. this.label_RFU_Temp.Name = "label_RFU_Temp";
  1770. this.label_RFU_Temp.Size = new System.Drawing.Size(29, 12);
  1771. this.label_RFU_Temp.TabIndex = 98;
  1772. this.label_RFU_Temp.Text = "0.0V";
  1773. //
  1774. // label3_5GHz_UL_IN
  1775. //
  1776. this.label3_5GHz_UL_IN.AutoSize = true;
  1777. this.label3_5GHz_UL_IN.Location = new System.Drawing.Point(29, 253);
  1778. this.label3_5GHz_UL_IN.Name = "label3_5GHz_UL_IN";
  1779. this.label3_5GHz_UL_IN.Size = new System.Drawing.Size(29, 12);
  1780. this.label3_5GHz_UL_IN.TabIndex = 98;
  1781. this.label3_5GHz_UL_IN.Text = "0.0V";
  1782. //
  1783. // label2_1GHz_UL_IN
  1784. //
  1785. this.label2_1GHz_UL_IN.AutoSize = true;
  1786. this.label2_1GHz_UL_IN.Location = new System.Drawing.Point(30, 169);
  1787. this.label2_1GHz_UL_IN.Name = "label2_1GHz_UL_IN";
  1788. this.label2_1GHz_UL_IN.Size = new System.Drawing.Size(29, 12);
  1789. this.label2_1GHz_UL_IN.TabIndex = 98;
  1790. this.label2_1GHz_UL_IN.Text = "0.0V";
  1791. //
  1792. // label1_8GHz_UL_IN
  1793. //
  1794. this.label1_8GHz_UL_IN.AutoSize = true;
  1795. this.label1_8GHz_UL_IN.Location = new System.Drawing.Point(30, 85);
  1796. this.label1_8GHz_UL_IN.Name = "label1_8GHz_UL_IN";
  1797. this.label1_8GHz_UL_IN.Size = new System.Drawing.Size(29, 12);
  1798. this.label1_8GHz_UL_IN.TabIndex = 98;
  1799. this.label1_8GHz_UL_IN.Text = "0.0V";
  1800. //
  1801. // label3_5GHz_DL_OUT
  1802. //
  1803. this.label3_5GHz_DL_OUT.AutoSize = true;
  1804. this.label3_5GHz_DL_OUT.Location = new System.Drawing.Point(143, 211);
  1805. this.label3_5GHz_DL_OUT.Name = "label3_5GHz_DL_OUT";
  1806. this.label3_5GHz_DL_OUT.Size = new System.Drawing.Size(29, 12);
  1807. this.label3_5GHz_DL_OUT.TabIndex = 98;
  1808. this.label3_5GHz_DL_OUT.Text = "0.0V";
  1809. //
  1810. // label2_1GHz_DL_OUT
  1811. //
  1812. this.label2_1GHz_DL_OUT.AutoSize = true;
  1813. this.label2_1GHz_DL_OUT.Location = new System.Drawing.Point(144, 127);
  1814. this.label2_1GHz_DL_OUT.Name = "label2_1GHz_DL_OUT";
  1815. this.label2_1GHz_DL_OUT.Size = new System.Drawing.Size(29, 12);
  1816. this.label2_1GHz_DL_OUT.TabIndex = 98;
  1817. this.label2_1GHz_DL_OUT.Text = "0.0V";
  1818. //
  1819. // label1_8GHz_DL_OUT
  1820. //
  1821. this.label1_8GHz_DL_OUT.AutoSize = true;
  1822. this.label1_8GHz_DL_OUT.Location = new System.Drawing.Point(144, 43);
  1823. this.label1_8GHz_DL_OUT.Name = "label1_8GHz_DL_OUT";
  1824. this.label1_8GHz_DL_OUT.Size = new System.Drawing.Size(29, 12);
  1825. this.label1_8GHz_DL_OUT.TabIndex = 98;
  1826. this.label1_8GHz_DL_OUT.Text = "0.0V";
  1827. //
  1828. // label3_5GHz_DL_IN
  1829. //
  1830. this.label3_5GHz_DL_IN.AutoSize = true;
  1831. this.label3_5GHz_DL_IN.Location = new System.Drawing.Point(31, 211);
  1832. this.label3_5GHz_DL_IN.Name = "label3_5GHz_DL_IN";
  1833. this.label3_5GHz_DL_IN.Size = new System.Drawing.Size(29, 12);
  1834. this.label3_5GHz_DL_IN.TabIndex = 98;
  1835. this.label3_5GHz_DL_IN.Text = "0.0V";
  1836. //
  1837. // label2_1GHz_DL_IN
  1838. //
  1839. this.label2_1GHz_DL_IN.AutoSize = true;
  1840. this.label2_1GHz_DL_IN.Location = new System.Drawing.Point(32, 127);
  1841. this.label2_1GHz_DL_IN.Name = "label2_1GHz_DL_IN";
  1842. this.label2_1GHz_DL_IN.Size = new System.Drawing.Size(29, 12);
  1843. this.label2_1GHz_DL_IN.TabIndex = 98;
  1844. this.label2_1GHz_DL_IN.Text = "0.0V";
  1845. //
  1846. // label1_8GHz_DL_IN
  1847. //
  1848. this.label1_8GHz_DL_IN.AutoSize = true;
  1849. this.label1_8GHz_DL_IN.Location = new System.Drawing.Point(32, 43);
  1850. this.label1_8GHz_DL_IN.Name = "label1_8GHz_DL_IN";
  1851. this.label1_8GHz_DL_IN.Size = new System.Drawing.Size(29, 12);
  1852. this.label1_8GHz_DL_IN.TabIndex = 98;
  1853. this.label1_8GHz_DL_IN.Text = "0.0V";
  1854. //
  1855. // label40
  1856. //
  1857. this.label40.AutoSize = true;
  1858. this.label40.Location = new System.Drawing.Point(122, 274);
  1859. this.label40.Name = "label40";
  1860. this.label40.Size = new System.Drawing.Size(55, 12);
  1861. this.label40.TabIndex = 97;
  1862. this.label40.Text = "28V_DET";
  1863. //
  1864. // label34
  1865. //
  1866. this.label34.AutoSize = true;
  1867. this.label34.Location = new System.Drawing.Point(119, 232);
  1868. this.label34.Name = "label34";
  1869. this.label34.Size = new System.Drawing.Size(93, 12);
  1870. this.label34.TabIndex = 97;
  1871. this.label34.Text = "3.5GHz UL OUT";
  1872. //
  1873. // label11
  1874. //
  1875. this.label11.AutoSize = true;
  1876. this.label11.Location = new System.Drawing.Point(120, 148);
  1877. this.label11.Name = "label11";
  1878. this.label11.Size = new System.Drawing.Size(93, 12);
  1879. this.label11.TabIndex = 97;
  1880. this.label11.Text = "2.1GHz DL OUT";
  1881. //
  1882. // label58
  1883. //
  1884. this.label58.AutoSize = true;
  1885. this.label58.Location = new System.Drawing.Point(120, 64);
  1886. this.label58.Name = "label58";
  1887. this.label58.Size = new System.Drawing.Size(93, 12);
  1888. this.label58.TabIndex = 97;
  1889. this.label58.Text = "1.8GHz UL OUT";
  1890. //
  1891. // label39
  1892. //
  1893. this.label39.AutoSize = true;
  1894. this.label39.Location = new System.Drawing.Point(19, 274);
  1895. this.label39.Name = "label39";
  1896. this.label39.Size = new System.Drawing.Size(67, 12);
  1897. this.label39.TabIndex = 97;
  1898. this.label39.Text = "RFU_Temp";
  1899. //
  1900. // label31
  1901. //
  1902. this.label31.AutoSize = true;
  1903. this.label31.Location = new System.Drawing.Point(10, 232);
  1904. this.label31.Name = "label31";
  1905. this.label31.Size = new System.Drawing.Size(80, 12);
  1906. this.label31.TabIndex = 97;
  1907. this.label31.Text = "3.5GHz UL IN";
  1908. //
  1909. // label9
  1910. //
  1911. this.label9.AutoSize = true;
  1912. this.label9.Location = new System.Drawing.Point(11, 148);
  1913. this.label9.Name = "label9";
  1914. this.label9.Size = new System.Drawing.Size(80, 12);
  1915. this.label9.TabIndex = 97;
  1916. this.label9.Text = "2.1GHz UL IN";
  1917. //
  1918. // label51
  1919. //
  1920. this.label51.AutoSize = true;
  1921. this.label51.Location = new System.Drawing.Point(11, 64);
  1922. this.label51.Name = "label51";
  1923. this.label51.Size = new System.Drawing.Size(80, 12);
  1924. this.label51.TabIndex = 97;
  1925. this.label51.Text = "1.8GHz UL IN";
  1926. //
  1927. // label30
  1928. //
  1929. this.label30.AutoSize = true;
  1930. this.label30.Location = new System.Drawing.Point(119, 190);
  1931. this.label30.Name = "label30";
  1932. this.label30.Size = new System.Drawing.Size(93, 12);
  1933. this.label30.TabIndex = 97;
  1934. this.label30.Text = "3.5GHz DL OUT";
  1935. //
  1936. // label8
  1937. //
  1938. this.label8.AutoSize = true;
  1939. this.label8.Location = new System.Drawing.Point(120, 106);
  1940. this.label8.Name = "label8";
  1941. this.label8.Size = new System.Drawing.Size(93, 12);
  1942. this.label8.TabIndex = 97;
  1943. this.label8.Text = "2.1GHz DL OUT";
  1944. //
  1945. // label57
  1946. //
  1947. this.label57.AutoSize = true;
  1948. this.label57.Location = new System.Drawing.Point(120, 22);
  1949. this.label57.Name = "label57";
  1950. this.label57.Size = new System.Drawing.Size(93, 12);
  1951. this.label57.TabIndex = 97;
  1952. this.label57.Text = "1.8GHz DL OUT";
  1953. //
  1954. // label29
  1955. //
  1956. this.label29.AutoSize = true;
  1957. this.label29.Location = new System.Drawing.Point(6, 190);
  1958. this.label29.Name = "label29";
  1959. this.label29.Size = new System.Drawing.Size(80, 12);
  1960. this.label29.TabIndex = 97;
  1961. this.label29.Text = "3.5GHz DL IN";
  1962. //
  1963. // label1
  1964. //
  1965. this.label1.AutoSize = true;
  1966. this.label1.Location = new System.Drawing.Point(7, 106);
  1967. this.label1.Name = "label1";
  1968. this.label1.Size = new System.Drawing.Size(80, 12);
  1969. this.label1.TabIndex = 97;
  1970. this.label1.Text = "2.1GHz DL IN";
  1971. //
  1972. // label_DET_1_8G_DL_IN
  1973. //
  1974. this.label_DET_1_8G_DL_IN.AutoSize = true;
  1975. this.label_DET_1_8G_DL_IN.Location = new System.Drawing.Point(7, 22);
  1976. this.label_DET_1_8G_DL_IN.Name = "label_DET_1_8G_DL_IN";
  1977. this.label_DET_1_8G_DL_IN.Size = new System.Drawing.Size(80, 12);
  1978. this.label_DET_1_8G_DL_IN.TabIndex = 97;
  1979. this.label_DET_1_8G_DL_IN.Text = "1.8GHz DL IN";
  1980. //
  1981. // button_Set
  1982. //
  1983. this.button_Set.Font = new System.Drawing.Font("굴림", 15F, System.Drawing.FontStyle.Bold);
  1984. this.button_Set.Location = new System.Drawing.Point(243, 20);
  1985. this.button_Set.Name = "button_Set";
  1986. this.button_Set.Size = new System.Drawing.Size(116, 50);
  1987. this.button_Set.TabIndex = 109;
  1988. this.button_Set.Text = "SET";
  1989. this.button_Set.UseVisualStyleBackColor = true;
  1990. this.button_Set.Click += new System.EventHandler(this.Button_Set_Click);
  1991. //
  1992. // button1
  1993. //
  1994. this.button1.Location = new System.Drawing.Point(383, 31);
  1995. this.button1.Name = "button1";
  1996. this.button1.Size = new System.Drawing.Size(75, 23);
  1997. this.button1.TabIndex = 110;
  1998. this.button1.Text = "Test";
  1999. this.button1.UseVisualStyleBackColor = true;
  2000. this.button1.Click += new System.EventHandler(this.button1_Click);
  2001. //
  2002. // label35
  2003. //
  2004. this.label35.AutoSize = true;
  2005. this.label35.Location = new System.Drawing.Point(31, 88);
  2006. this.label35.Name = "label35";
  2007. this.label35.Size = new System.Drawing.Size(46, 12);
  2008. this.label35.TabIndex = 100;
  2009. this.label35.Text = "V out E";
  2010. //
  2011. // label27
  2012. //
  2013. this.label27.AutoSize = true;
  2014. this.label27.Location = new System.Drawing.Point(31, 59);
  2015. this.label27.Name = "label27";
  2016. this.label27.Size = new System.Drawing.Size(46, 12);
  2017. this.label27.TabIndex = 99;
  2018. this.label27.Text = "V out A";
  2019. //
  2020. // numericUpDown_DAC_VoltCtrl_A
  2021. //
  2022. this.numericUpDown_DAC_VoltCtrl_A.DecimalPlaces = 1;
  2023. this.numericUpDown_DAC_VoltCtrl_A.Increment = new decimal(new int[] {
  2024. 1,
  2025. 0,
  2026. 0,
  2027. 65536});
  2028. this.numericUpDown_DAC_VoltCtrl_A.Location = new System.Drawing.Point(95, 55);
  2029. this.numericUpDown_DAC_VoltCtrl_A.Maximum = new decimal(new int[] {
  2030. 4,
  2031. 0,
  2032. 0,
  2033. 0});
  2034. this.numericUpDown_DAC_VoltCtrl_A.Name = "numericUpDown_DAC_VoltCtrl_A";
  2035. this.numericUpDown_DAC_VoltCtrl_A.Size = new System.Drawing.Size(71, 21);
  2036. this.numericUpDown_DAC_VoltCtrl_A.TabIndex = 102;
  2037. this.numericUpDown_DAC_VoltCtrl_A.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2038. //
  2039. // numericUpDown_DAC_VoltCtrl_E
  2040. //
  2041. this.numericUpDown_DAC_VoltCtrl_E.DecimalPlaces = 1;
  2042. this.numericUpDown_DAC_VoltCtrl_E.Increment = new decimal(new int[] {
  2043. 1,
  2044. 0,
  2045. 0,
  2046. 65536});
  2047. this.numericUpDown_DAC_VoltCtrl_E.Location = new System.Drawing.Point(95, 84);
  2048. this.numericUpDown_DAC_VoltCtrl_E.Maximum = new decimal(new int[] {
  2049. 4,
  2050. 0,
  2051. 0,
  2052. 0});
  2053. this.numericUpDown_DAC_VoltCtrl_E.Name = "numericUpDown_DAC_VoltCtrl_E";
  2054. this.numericUpDown_DAC_VoltCtrl_E.Size = new System.Drawing.Size(71, 21);
  2055. this.numericUpDown_DAC_VoltCtrl_E.TabIndex = 101;
  2056. this.numericUpDown_DAC_VoltCtrl_E.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2057. //
  2058. // groupBox6
  2059. //
  2060. this.groupBox6.Controls.Add(this.label10);
  2061. this.groupBox6.Controls.Add(this.numericUpDown11);
  2062. this.groupBox6.Controls.Add(this.numericUpDown10);
  2063. this.groupBox6.Controls.Add(this.numericUpDown9);
  2064. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_H);
  2065. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_F);
  2066. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_G);
  2067. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_E);
  2068. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_D);
  2069. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_B);
  2070. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_C);
  2071. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_A);
  2072. this.groupBox6.Controls.Add(this.label37);
  2073. this.groupBox6.Controls.Add(this.label12);
  2074. this.groupBox6.Controls.Add(this.label25);
  2075. this.groupBox6.Controls.Add(this.label36);
  2076. this.groupBox6.Controls.Add(this.label38);
  2077. this.groupBox6.Controls.Add(this.label23);
  2078. this.groupBox6.Controls.Add(this.label27);
  2079. this.groupBox6.Controls.Add(this.label35);
  2080. this.groupBox6.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2081. this.groupBox6.Location = new System.Drawing.Point(243, 658);
  2082. this.groupBox6.Name = "groupBox6";
  2083. this.groupBox6.Size = new System.Drawing.Size(924, 157);
  2084. this.groupBox6.TabIndex = 102;
  2085. this.groupBox6.TabStop = false;
  2086. this.groupBox6.Text = "V(Voltage)";
  2087. //
  2088. // label12
  2089. //
  2090. this.label12.AutoSize = true;
  2091. this.label12.Location = new System.Drawing.Point(278, 59);
  2092. this.label12.Name = "label12";
  2093. this.label12.Size = new System.Drawing.Size(46, 12);
  2094. this.label12.TabIndex = 99;
  2095. this.label12.Text = "V out B";
  2096. //
  2097. // numericUpDown_DAC_VoltCtrl_B
  2098. //
  2099. this.numericUpDown_DAC_VoltCtrl_B.DecimalPlaces = 1;
  2100. this.numericUpDown_DAC_VoltCtrl_B.Increment = new decimal(new int[] {
  2101. 1,
  2102. 0,
  2103. 0,
  2104. 65536});
  2105. this.numericUpDown_DAC_VoltCtrl_B.Location = new System.Drawing.Point(342, 55);
  2106. this.numericUpDown_DAC_VoltCtrl_B.Maximum = new decimal(new int[] {
  2107. 4,
  2108. 0,
  2109. 0,
  2110. 0});
  2111. this.numericUpDown_DAC_VoltCtrl_B.Name = "numericUpDown_DAC_VoltCtrl_B";
  2112. this.numericUpDown_DAC_VoltCtrl_B.Size = new System.Drawing.Size(71, 21);
  2113. this.numericUpDown_DAC_VoltCtrl_B.TabIndex = 102;
  2114. this.numericUpDown_DAC_VoltCtrl_B.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2115. //
  2116. // numericUpDown_DAC_VoltCtrl_F
  2117. //
  2118. this.numericUpDown_DAC_VoltCtrl_F.DecimalPlaces = 1;
  2119. this.numericUpDown_DAC_VoltCtrl_F.Increment = new decimal(new int[] {
  2120. 1,
  2121. 0,
  2122. 0,
  2123. 65536});
  2124. this.numericUpDown_DAC_VoltCtrl_F.Location = new System.Drawing.Point(342, 84);
  2125. this.numericUpDown_DAC_VoltCtrl_F.Maximum = new decimal(new int[] {
  2126. 4,
  2127. 0,
  2128. 0,
  2129. 0});
  2130. this.numericUpDown_DAC_VoltCtrl_F.Name = "numericUpDown_DAC_VoltCtrl_F";
  2131. this.numericUpDown_DAC_VoltCtrl_F.Size = new System.Drawing.Size(71, 21);
  2132. this.numericUpDown_DAC_VoltCtrl_F.TabIndex = 101;
  2133. this.numericUpDown_DAC_VoltCtrl_F.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2134. //
  2135. // label25
  2136. //
  2137. this.label25.AutoSize = true;
  2138. this.label25.Location = new System.Drawing.Point(523, 59);
  2139. this.label25.Name = "label25";
  2140. this.label25.Size = new System.Drawing.Size(47, 12);
  2141. this.label25.TabIndex = 99;
  2142. this.label25.Text = "V out C";
  2143. //
  2144. // label37
  2145. //
  2146. this.label37.AutoSize = true;
  2147. this.label37.Location = new System.Drawing.Point(772, 59);
  2148. this.label37.Name = "label37";
  2149. this.label37.Size = new System.Drawing.Size(46, 12);
  2150. this.label37.TabIndex = 99;
  2151. this.label37.Text = "V out D";
  2152. //
  2153. // numericUpDown_DAC_VoltCtrl_C
  2154. //
  2155. this.numericUpDown_DAC_VoltCtrl_C.DecimalPlaces = 1;
  2156. this.numericUpDown_DAC_VoltCtrl_C.Increment = new decimal(new int[] {
  2157. 1,
  2158. 0,
  2159. 0,
  2160. 65536});
  2161. this.numericUpDown_DAC_VoltCtrl_C.Location = new System.Drawing.Point(589, 55);
  2162. this.numericUpDown_DAC_VoltCtrl_C.Maximum = new decimal(new int[] {
  2163. 4,
  2164. 0,
  2165. 0,
  2166. 0});
  2167. this.numericUpDown_DAC_VoltCtrl_C.Name = "numericUpDown_DAC_VoltCtrl_C";
  2168. this.numericUpDown_DAC_VoltCtrl_C.Size = new System.Drawing.Size(71, 21);
  2169. this.numericUpDown_DAC_VoltCtrl_C.TabIndex = 102;
  2170. this.numericUpDown_DAC_VoltCtrl_C.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2171. //
  2172. // numericUpDown_DAC_VoltCtrl_D
  2173. //
  2174. this.numericUpDown_DAC_VoltCtrl_D.DecimalPlaces = 1;
  2175. this.numericUpDown_DAC_VoltCtrl_D.Increment = new decimal(new int[] {
  2176. 1,
  2177. 0,
  2178. 0,
  2179. 65536});
  2180. this.numericUpDown_DAC_VoltCtrl_D.Location = new System.Drawing.Point(836, 55);
  2181. this.numericUpDown_DAC_VoltCtrl_D.Maximum = new decimal(new int[] {
  2182. 4,
  2183. 0,
  2184. 0,
  2185. 0});
  2186. this.numericUpDown_DAC_VoltCtrl_D.Name = "numericUpDown_DAC_VoltCtrl_D";
  2187. this.numericUpDown_DAC_VoltCtrl_D.Size = new System.Drawing.Size(71, 21);
  2188. this.numericUpDown_DAC_VoltCtrl_D.TabIndex = 102;
  2189. this.numericUpDown_DAC_VoltCtrl_D.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2190. //
  2191. // numericUpDown_DAC_VoltCtrl_G
  2192. //
  2193. this.numericUpDown_DAC_VoltCtrl_G.DecimalPlaces = 1;
  2194. this.numericUpDown_DAC_VoltCtrl_G.Increment = new decimal(new int[] {
  2195. 1,
  2196. 0,
  2197. 0,
  2198. 65536});
  2199. this.numericUpDown_DAC_VoltCtrl_G.Location = new System.Drawing.Point(589, 84);
  2200. this.numericUpDown_DAC_VoltCtrl_G.Maximum = new decimal(new int[] {
  2201. 4,
  2202. 0,
  2203. 0,
  2204. 0});
  2205. this.numericUpDown_DAC_VoltCtrl_G.Name = "numericUpDown_DAC_VoltCtrl_G";
  2206. this.numericUpDown_DAC_VoltCtrl_G.Size = new System.Drawing.Size(71, 21);
  2207. this.numericUpDown_DAC_VoltCtrl_G.TabIndex = 101;
  2208. this.numericUpDown_DAC_VoltCtrl_G.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2209. //
  2210. // numericUpDown_DAC_VoltCtrl_H
  2211. //
  2212. this.numericUpDown_DAC_VoltCtrl_H.DecimalPlaces = 1;
  2213. this.numericUpDown_DAC_VoltCtrl_H.Increment = new decimal(new int[] {
  2214. 1,
  2215. 0,
  2216. 0,
  2217. 65536});
  2218. this.numericUpDown_DAC_VoltCtrl_H.Location = new System.Drawing.Point(836, 84);
  2219. this.numericUpDown_DAC_VoltCtrl_H.Maximum = new decimal(new int[] {
  2220. 4,
  2221. 0,
  2222. 0,
  2223. 0});
  2224. this.numericUpDown_DAC_VoltCtrl_H.Name = "numericUpDown_DAC_VoltCtrl_H";
  2225. this.numericUpDown_DAC_VoltCtrl_H.Size = new System.Drawing.Size(71, 21);
  2226. this.numericUpDown_DAC_VoltCtrl_H.TabIndex = 101;
  2227. this.numericUpDown_DAC_VoltCtrl_H.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2228. //
  2229. // numericUpDown9
  2230. //
  2231. this.numericUpDown9.DecimalPlaces = 1;
  2232. this.numericUpDown9.Increment = new decimal(new int[] {
  2233. 1,
  2234. 0,
  2235. 0,
  2236. 65536});
  2237. this.numericUpDown9.Location = new System.Drawing.Point(1088, 69);
  2238. this.numericUpDown9.Maximum = new decimal(new int[] {
  2239. 3000,
  2240. 0,
  2241. 0,
  2242. 0});
  2243. this.numericUpDown9.Name = "numericUpDown9";
  2244. this.numericUpDown9.Size = new System.Drawing.Size(71, 21);
  2245. this.numericUpDown9.TabIndex = 101;
  2246. //
  2247. // label23
  2248. //
  2249. this.label23.AutoSize = true;
  2250. this.label23.Location = new System.Drawing.Point(523, 88);
  2251. this.label23.Name = "label23";
  2252. this.label23.Size = new System.Drawing.Size(47, 12);
  2253. this.label23.TabIndex = 100;
  2254. this.label23.Text = "V out G";
  2255. //
  2256. // numericUpDown10
  2257. //
  2258. this.numericUpDown10.DecimalPlaces = 1;
  2259. this.numericUpDown10.Increment = new decimal(new int[] {
  2260. 1,
  2261. 0,
  2262. 0,
  2263. 65536});
  2264. this.numericUpDown10.Location = new System.Drawing.Point(1331, 69);
  2265. this.numericUpDown10.Maximum = new decimal(new int[] {
  2266. 3000,
  2267. 0,
  2268. 0,
  2269. 0});
  2270. this.numericUpDown10.Name = "numericUpDown10";
  2271. this.numericUpDown10.Size = new System.Drawing.Size(71, 21);
  2272. this.numericUpDown10.TabIndex = 101;
  2273. //
  2274. // label36
  2275. //
  2276. this.label36.AutoSize = true;
  2277. this.label36.Location = new System.Drawing.Point(1190, 82);
  2278. this.label36.Name = "label36";
  2279. this.label36.Size = new System.Drawing.Size(46, 12);
  2280. this.label36.TabIndex = 100;
  2281. this.label36.Text = "A out E";
  2282. //
  2283. // numericUpDown11
  2284. //
  2285. this.numericUpDown11.DecimalPlaces = 1;
  2286. this.numericUpDown11.Increment = new decimal(new int[] {
  2287. 1,
  2288. 0,
  2289. 0,
  2290. 65536});
  2291. this.numericUpDown11.Location = new System.Drawing.Point(1577, 69);
  2292. this.numericUpDown11.Maximum = new decimal(new int[] {
  2293. 3000,
  2294. 0,
  2295. 0,
  2296. 0});
  2297. this.numericUpDown11.Name = "numericUpDown11";
  2298. this.numericUpDown11.Size = new System.Drawing.Size(71, 21);
  2299. this.numericUpDown11.TabIndex = 101;
  2300. //
  2301. // label10
  2302. //
  2303. this.label10.AutoSize = true;
  2304. this.label10.Location = new System.Drawing.Point(278, 88);
  2305. this.label10.Name = "label10";
  2306. this.label10.Size = new System.Drawing.Size(45, 12);
  2307. this.label10.TabIndex = 103;
  2308. this.label10.Text = "V out F";
  2309. //
  2310. // label38
  2311. //
  2312. this.label38.AutoSize = true;
  2313. this.label38.Location = new System.Drawing.Point(773, 88);
  2314. this.label38.Name = "label38";
  2315. this.label38.Size = new System.Drawing.Size(46, 12);
  2316. this.label38.TabIndex = 100;
  2317. this.label38.Text = "V out H";
  2318. //
  2319. // Main_Form
  2320. //
  2321. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  2322. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2323. this.ClientSize = new System.Drawing.Size(1185, 840);
  2324. this.Controls.Add(this.button1);
  2325. this.Controls.Add(this.button_Set);
  2326. this.Controls.Add(this.groupBox3);
  2327. this.Controls.Add(this.groupBox_TDD);
  2328. this.Controls.Add(this.groupBox12);
  2329. this.Controls.Add(this.groupBox6);
  2330. this.Controls.Add(this.groupBox10);
  2331. this.Controls.Add(this.pictureBox15);
  2332. this.Controls.Add(this.label80);
  2333. this.Controls.Add(this.label79);
  2334. this.Controls.Add(this.groupBox17);
  2335. this.Controls.Add(this.groupBox8);
  2336. this.Controls.Add(this.groupBox9);
  2337. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  2338. this.Name = "Main_Form";
  2339. this.Text = "PATH_EN_1.8G_DL";
  2340. this.Load += new System.EventHandler(this.Main_Form_Load);
  2341. this.groupBox9.ResumeLayout(false);
  2342. this.groupBox9.PerformLayout();
  2343. this.groupBox8.ResumeLayout(false);
  2344. this.groupBox7.ResumeLayout(false);
  2345. this.groupBox7.PerformLayout();
  2346. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM3)).EndInit();
  2347. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).EndInit();
  2348. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).EndInit();
  2349. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_UL)).EndInit();
  2350. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_DL)).EndInit();
  2351. this.groupBox5.ResumeLayout(false);
  2352. this.groupBox5.PerformLayout();
  2353. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL4)).EndInit();
  2354. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL2)).EndInit();
  2355. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL3)).EndInit();
  2356. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL1)).EndInit();
  2357. this.groupBox2.ResumeLayout(false);
  2358. this.groupBox2.PerformLayout();
  2359. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL4)).EndInit();
  2360. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL2)).EndInit();
  2361. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL3)).EndInit();
  2362. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL1)).EndInit();
  2363. this.groupBox4.ResumeLayout(false);
  2364. this.groupBox4.PerformLayout();
  2365. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL2)).EndInit();
  2366. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL1)).EndInit();
  2367. this.groupBox1.ResumeLayout(false);
  2368. this.groupBox1.PerformLayout();
  2369. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL2)).EndInit();
  2370. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL1)).EndInit();
  2371. this.groupBox17.ResumeLayout(false);
  2372. this.groupBox17.PerformLayout();
  2373. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).EndInit();
  2374. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).EndInit();
  2375. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).EndInit();
  2376. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).EndInit();
  2377. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).EndInit();
  2378. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).EndInit();
  2379. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).EndInit();
  2380. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).EndInit();
  2381. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).EndInit();
  2382. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).EndInit();
  2383. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).EndInit();
  2384. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).EndInit();
  2385. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_ON)).EndInit();
  2386. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_OFF)).EndInit();
  2387. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_ON)).EndInit();
  2388. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_OFF)).EndInit();
  2389. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_ON)).EndInit();
  2390. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_OFF)).EndInit();
  2391. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_ON)).EndInit();
  2392. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_OFF)).EndInit();
  2393. this.groupBox10.ResumeLayout(false);
  2394. this.groupBox11.ResumeLayout(false);
  2395. this.groupBox11.PerformLayout();
  2396. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_UL)).EndInit();
  2397. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_DL)).EndInit();
  2398. this.groupBox15.ResumeLayout(false);
  2399. this.groupBox15.PerformLayout();
  2400. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_UL)).EndInit();
  2401. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_DL)).EndInit();
  2402. this.groupBox16.ResumeLayout(false);
  2403. this.groupBox16.PerformLayout();
  2404. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_UL)).EndInit();
  2405. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_DL)).EndInit();
  2406. this.groupBox12.ResumeLayout(false);
  2407. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).EndInit();
  2408. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).EndInit();
  2409. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).EndInit();
  2410. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).EndInit();
  2411. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
  2412. this.groupBox_TDD.ResumeLayout(false);
  2413. this.groupBox_TDD.PerformLayout();
  2414. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).EndInit();
  2415. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).EndInit();
  2416. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).EndInit();
  2417. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).EndInit();
  2418. this.groupBox3.ResumeLayout(false);
  2419. this.groupBox3.PerformLayout();
  2420. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_A)).EndInit();
  2421. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_E)).EndInit();
  2422. this.groupBox6.ResumeLayout(false);
  2423. this.groupBox6.PerformLayout();
  2424. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_B)).EndInit();
  2425. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_F)).EndInit();
  2426. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_C)).EndInit();
  2427. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_D)).EndInit();
  2428. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_G)).EndInit();
  2429. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_H)).EndInit();
  2430. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown9)).EndInit();
  2431. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown10)).EndInit();
  2432. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown11)).EndInit();
  2433. this.ResumeLayout(false);
  2434. this.PerformLayout();
  2435. }
  2436. #endregion
  2437. private System.Windows.Forms.GroupBox groupBox9;
  2438. private System.Windows.Forms.Button button3;
  2439. private System.Windows.Forms.Button button_terminal;
  2440. private System.Windows.Forms.CheckBox Ascii_checkBox;
  2441. private System.Windows.Forms.Label cmCom_Port;
  2442. private System.Windows.Forms.Button button_PortOpen;
  2443. private System.Windows.Forms.Label cmBaudRate;
  2444. private System.Windows.Forms.ComboBox comboBox_baudrate;
  2445. public System.Windows.Forms.ComboBox comboBox_Port;
  2446. private System.Windows.Forms.GroupBox groupBox8;
  2447. private System.Windows.Forms.GroupBox groupBox7;
  2448. private System.Windows.Forms.Label label26;
  2449. private System.Windows.Forms.Label label28;
  2450. private System.Windows.Forms.GroupBox groupBox5;
  2451. private System.Windows.Forms.Label label15;
  2452. private System.Windows.Forms.Label label16;
  2453. private System.Windows.Forms.Label label17;
  2454. private System.Windows.Forms.Label label18;
  2455. private System.Windows.Forms.GroupBox groupBox2;
  2456. private System.Windows.Forms.Label label7;
  2457. private System.Windows.Forms.Label label6;
  2458. private System.Windows.Forms.Label label4;
  2459. private System.Windows.Forms.Label label5;
  2460. private System.Windows.Forms.GroupBox groupBox4;
  2461. private System.Windows.Forms.Label label13;
  2462. private System.Windows.Forms.Label label14;
  2463. private System.Windows.Forms.GroupBox groupBox1;
  2464. private System.Windows.Forms.Label label3;
  2465. private System.Windows.Forms.Label label2;
  2466. private System.Windows.Forms.GroupBox groupBox17;
  2467. private System.Windows.Forms.Label label78;
  2468. private System.Windows.Forms.Label label77;
  2469. private System.Windows.Forms.Label label76;
  2470. private System.Windows.Forms.Label label75;
  2471. private System.Windows.Forms.Label label72;
  2472. private System.Windows.Forms.Label label71;
  2473. private System.Windows.Forms.Label label70;
  2474. private System.Windows.Forms.Label label69;
  2475. private System.Windows.Forms.Label label79;
  2476. private System.Windows.Forms.PictureBox pictureBox15;
  2477. private System.Windows.Forms.Label label80;
  2478. private System.Windows.Forms.GroupBox groupBox10;
  2479. private System.Windows.Forms.GroupBox groupBox11;
  2480. private System.Windows.Forms.Label label32;
  2481. private System.Windows.Forms.Label label33;
  2482. private System.Windows.Forms.GroupBox groupBox15;
  2483. private System.Windows.Forms.Label label47;
  2484. private System.Windows.Forms.Label label48;
  2485. private System.Windows.Forms.GroupBox groupBox16;
  2486. private System.Windows.Forms.Label label49;
  2487. private System.Windows.Forms.Label label50;
  2488. private System.Windows.Forms.Timer timer;
  2489. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_DL1;
  2490. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_UL;
  2491. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_DL;
  2492. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL4;
  2493. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL2;
  2494. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL3;
  2495. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL1;
  2496. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL4;
  2497. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL2;
  2498. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL3;
  2499. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL1;
  2500. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_DL2;
  2501. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_DL1;
  2502. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_DL2;
  2503. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_UL;
  2504. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_DL;
  2505. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_2_1G_UL;
  2506. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_2_1G_DL;
  2507. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_1_8G_UL;
  2508. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_1_8G_DL;
  2509. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_OFF;
  2510. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_OFF;
  2511. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_OFF;
  2512. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_OFF;
  2513. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_UL_OFF;
  2514. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_DL_OFF;
  2515. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_UL_OFF;
  2516. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_DL_OFF;
  2517. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_ON;
  2518. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_ON;
  2519. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_ON;
  2520. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_ON;
  2521. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_UL_ON;
  2522. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_DL_ON;
  2523. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_UL_ON;
  2524. private System.Windows.Forms.GroupBox groupBox12;
  2525. public System.Windows.Forms.PictureBox pictureBox_G_TX;
  2526. public System.Windows.Forms.PictureBox pictureBox_R_RX;
  2527. public System.Windows.Forms.PictureBox pictureBox_R_TX;
  2528. public System.Windows.Forms.PictureBox pictureBox_G_RX;
  2529. private System.Windows.Forms.Label label74;
  2530. private System.Windows.Forms.Label label73;
  2531. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_ON;
  2532. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_OFF;
  2533. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_ON;
  2534. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_OFF;
  2535. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_DL_ON;
  2536. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM3;
  2537. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM2;
  2538. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM1;
  2539. private System.Windows.Forms.Label label19;
  2540. private System.Windows.Forms.Label label20;
  2541. private System.Windows.Forms.Label label21;
  2542. private System.Windows.Forms.GroupBox groupBox_TDD;
  2543. private System.Windows.Forms.Label label24;
  2544. private System.Windows.Forms.Label label22;
  2545. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_OFF;
  2546. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_ON;
  2547. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_ON;
  2548. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_OFF;
  2549. private System.Windows.Forms.GroupBox groupBox3;
  2550. private System.Windows.Forms.Label label34;
  2551. private System.Windows.Forms.Label label11;
  2552. private System.Windows.Forms.Label label31;
  2553. private System.Windows.Forms.Label label9;
  2554. private System.Windows.Forms.Label label30;
  2555. private System.Windows.Forms.Label label8;
  2556. private System.Windows.Forms.Label label29;
  2557. private System.Windows.Forms.Label label1;
  2558. private System.Windows.Forms.Button button_Set;
  2559. private System.Windows.Forms.Label label58;
  2560. private System.Windows.Forms.Label label51;
  2561. private System.Windows.Forms.Label label57;
  2562. private System.Windows.Forms.Label label_DET_1_8G_DL_IN;
  2563. private System.Windows.Forms.Label label40;
  2564. private System.Windows.Forms.Label label39;
  2565. public System.Windows.Forms.Label label3_5GHz_UL_OUT;
  2566. public System.Windows.Forms.Label label2_1GHz_UL_OUT;
  2567. public System.Windows.Forms.Label label3_5GHz_UL_IN;
  2568. public System.Windows.Forms.Label label2_1GHz_UL_IN;
  2569. public System.Windows.Forms.Label label3_5GHz_DL_OUT;
  2570. public System.Windows.Forms.Label label2_1GHz_DL_OUT;
  2571. public System.Windows.Forms.Label label3_5GHz_DL_IN;
  2572. public System.Windows.Forms.Label label2_1GHz_DL_IN;
  2573. public System.Windows.Forms.Label label1_8GHz_UL_OUT;
  2574. public System.Windows.Forms.Label label1_8GHz_UL_IN;
  2575. public System.Windows.Forms.Label label1_8GHz_DL_OUT;
  2576. public System.Windows.Forms.Label label1_8GHz_DL_IN;
  2577. public System.Windows.Forms.Label label_28V_Det;
  2578. public System.Windows.Forms.Label label_RFU_Temp;
  2579. private System.Windows.Forms.Button button1;
  2580. private System.Windows.Forms.Label label35;
  2581. private System.Windows.Forms.Label label27;
  2582. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_A;
  2583. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_E;
  2584. private System.Windows.Forms.GroupBox groupBox6;
  2585. private System.Windows.Forms.Label label10;
  2586. public System.Windows.Forms.NumericUpDown numericUpDown11;
  2587. public System.Windows.Forms.NumericUpDown numericUpDown10;
  2588. public System.Windows.Forms.NumericUpDown numericUpDown9;
  2589. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_H;
  2590. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_F;
  2591. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_G;
  2592. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_D;
  2593. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_B;
  2594. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_C;
  2595. private System.Windows.Forms.Label label37;
  2596. private System.Windows.Forms.Label label12;
  2597. private System.Windows.Forms.Label label25;
  2598. private System.Windows.Forms.Label label36;
  2599. private System.Windows.Forms.Label label38;
  2600. private System.Windows.Forms.Label label23;
  2601. }
  2602. }