123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133 |
- namespace RF_TRIO_PLL_ZIG
- {
- partial class Main_Form
- {
- /// <summary>
- /// 필수 디자이너 변수입니다.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 사용 중인 모든 리소스를 정리합니다.
- /// </summary>
- /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form 디자이너에서 생성한 코드
- /// <summary>
- /// 디자이너 지원에 필요한 메서드입니다.
- /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main_Form));
- this.groupBox9 = new System.Windows.Forms.GroupBox();
- this.button3 = new System.Windows.Forms.Button();
- this.button_terminal = new System.Windows.Forms.Button();
- this.Ascii_checkBox = new System.Windows.Forms.CheckBox();
- this.cmCom_Port = new System.Windows.Forms.Label();
- this.button_PortOpen = new System.Windows.Forms.Button();
- this.comboBox_Port = new System.Windows.Forms.ComboBox();
- this.cmBaudRate = new System.Windows.Forms.Label();
- this.comboBox_baudrate = new System.Windows.Forms.ComboBox();
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.label68 = new System.Windows.Forms.Label();
- this.label56 = new System.Windows.Forms.Label();
- this.label67 = new System.Windows.Forms.Label();
- this.label12 = new System.Windows.Forms.Label();
- this.label66 = new System.Windows.Forms.Label();
- this.label55 = new System.Windows.Forms.Label();
- this.label65 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label64 = new System.Windows.Forms.Label();
- this.label54 = new System.Windows.Forms.Label();
- this.label63 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.label62 = new System.Windows.Forms.Label();
- this.label53 = new System.Windows.Forms.Label();
- this.label61 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.label60 = new System.Windows.Forms.Label();
- this.label52 = new System.Windows.Forms.Label();
- this.label59 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.label58 = new System.Windows.Forms.Label();
- this.label51 = new System.Windows.Forms.Label();
- this.label57 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.groupBox8 = new System.Windows.Forms.GroupBox();
- this.groupBox6 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_ATT_3_5G_COM3 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_3_5G_COM2 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_3_5G_COM1 = new System.Windows.Forms.NumericUpDown();
- this.label19 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.label21 = new System.Windows.Forms.Label();
- this.groupBox7 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_ATT_3_5G_UL = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_3_5G_DL = new System.Windows.Forms.NumericUpDown();
- this.label26 = new System.Windows.Forms.Label();
- this.label28 = new System.Windows.Forms.Label();
- this.groupBox5 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_ATT_2_1G_UL4 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_2_1G_UL2 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_2_1G_UL3 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_2_1G_UL1 = new System.Windows.Forms.NumericUpDown();
- this.label15 = new System.Windows.Forms.Label();
- this.label16 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.label18 = new System.Windows.Forms.Label();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_ATT_1_8G_UL4 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_1_8G_UL2 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_1_8G_UL3 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_1_8G_UL1 = new System.Windows.Forms.NumericUpDown();
- this.label7 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.groupBox4 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_ATT_2_1G_DL2 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_2_1G_DL1 = new System.Windows.Forms.NumericUpDown();
- this.label13 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_ATT_1_8G_DL2 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_1_8G_DL1 = new System.Windows.Forms.NumericUpDown();
- this.label3 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.groupBox17 = new System.Windows.Forms.GroupBox();
- this.label78 = new System.Windows.Forms.Label();
- this.label77 = new System.Windows.Forms.Label();
- this.label76 = new System.Windows.Forms.Label();
- this.label75 = new System.Windows.Forms.Label();
- this.label74 = new System.Windows.Forms.Label();
- this.label73 = new System.Windows.Forms.Label();
- this.label72 = new System.Windows.Forms.Label();
- this.label71 = new System.Windows.Forms.Label();
- this.label70 = new System.Windows.Forms.Label();
- this.label69 = new System.Windows.Forms.Label();
- this.pictureBox_PATH_3_5G_L_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_3_5G_H_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_PLL_ON_OFF_3_5G_L_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PLL_ON_OFF_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_PLL_ON_OFF_3_5G_H_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PLL_ON_OFF_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_3_5G_UL_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_3_5G_UL_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_3_5G_DL_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_3_5G_DL_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_2_1G_UL_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_2_1G_UL_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_2_1G_DL_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_2_1G_DL_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_1_8G_UL_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_1_8G_UL_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_1_8G_DL_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_PATH_1_8G_DL_OFF = new System.Windows.Forms.PictureBox();
- this.label79 = new System.Windows.Forms.Label();
- this.label80 = new System.Windows.Forms.Label();
- this.button_Set = new System.Windows.Forms.Button();
- this.groupBox10 = new System.Windows.Forms.GroupBox();
- this.groupBox11 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_PLL_3_5G_UL = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_PLL_3_5G_DL = new System.Windows.Forms.NumericUpDown();
- this.label32 = new System.Windows.Forms.Label();
- this.label33 = new System.Windows.Forms.Label();
- this.groupBox15 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_PLL_2_1G_UL = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_PLL_2_1G_DL = new System.Windows.Forms.NumericUpDown();
- this.label47 = new System.Windows.Forms.Label();
- this.label48 = new System.Windows.Forms.Label();
- this.groupBox16 = new System.Windows.Forms.GroupBox();
- this.numericUpDown_PLL_1_8G_UL = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_PLL_1_8G_DL = new System.Windows.Forms.NumericUpDown();
- this.label49 = new System.Windows.Forms.Label();
- this.label50 = new System.Windows.Forms.Label();
- this.timer = new System.Windows.Forms.Timer(this.components);
- this.groupBox12 = new System.Windows.Forms.GroupBox();
- this.pictureBox_R_TX = new System.Windows.Forms.PictureBox();
- this.pictureBox_G_TX = new System.Windows.Forms.PictureBox();
- this.pictureBox_R_RX = new System.Windows.Forms.PictureBox();
- this.pictureBox_G_RX = new System.Windows.Forms.PictureBox();
- this.pictureBox15 = new System.Windows.Forms.PictureBox();
- this.groupBox_TDD = new System.Windows.Forms.GroupBox();
- this.label24 = new System.Windows.Forms.Label();
- this.label22 = new System.Windows.Forms.Label();
- this.pictureBox_TDD_T_SYNC_DL_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_TDD_T_SYNC_UL_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_TDD_T_SYNC_DL_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_TDD_T_SYNC_UL_ON = new System.Windows.Forms.PictureBox();
- this.groupBox9.SuspendLayout();
- this.groupBox3.SuspendLayout();
- this.groupBox8.SuspendLayout();
- this.groupBox6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).BeginInit();
- this.groupBox7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_UL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_DL)).BeginInit();
- this.groupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL1)).BeginInit();
- this.groupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL1)).BeginInit();
- this.groupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL1)).BeginInit();
- this.groupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL1)).BeginInit();
- this.groupBox17.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_OFF)).BeginInit();
- this.groupBox10.SuspendLayout();
- this.groupBox11.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_UL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_DL)).BeginInit();
- this.groupBox15.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_UL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_DL)).BeginInit();
- this.groupBox16.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_UL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_DL)).BeginInit();
- this.groupBox12.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
- this.groupBox_TDD.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).BeginInit();
- this.SuspendLayout();
- //
- // groupBox9
- //
- this.groupBox9.Controls.Add(this.button3);
- this.groupBox9.Controls.Add(this.button_terminal);
- this.groupBox9.Controls.Add(this.Ascii_checkBox);
- this.groupBox9.Controls.Add(this.cmCom_Port);
- this.groupBox9.Controls.Add(this.button_PortOpen);
- this.groupBox9.Controls.Add(this.comboBox_Port);
- this.groupBox9.Controls.Add(this.cmBaudRate);
- this.groupBox9.Controls.Add(this.comboBox_baudrate);
- this.groupBox9.Location = new System.Drawing.Point(12, 77);
- this.groupBox9.Name = "groupBox9";
- this.groupBox9.Size = new System.Drawing.Size(225, 223);
- this.groupBox9.TabIndex = 82;
- this.groupBox9.TabStop = false;
- this.groupBox9.Text = "Connection";
- //
- // button3
- //
- this.button3.Location = new System.Drawing.Point(14, 171);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(197, 34);
- this.button3.TabIndex = 93;
- this.button3.Text = "Firmware Update";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.Firmware_Update_Click);
- //
- // button_terminal
- //
- this.button_terminal.Location = new System.Drawing.Point(14, 131);
- this.button_terminal.Name = "button_terminal";
- this.button_terminal.Size = new System.Drawing.Size(197, 34);
- this.button_terminal.TabIndex = 94;
- this.button_terminal.Text = "Terminal";
- this.button_terminal.UseVisualStyleBackColor = true;
- this.button_terminal.Click += new System.EventHandler(this.Button_terminal_Click);
- //
- // Ascii_checkBox
- //
- this.Ascii_checkBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.Ascii_checkBox.AutoSize = true;
- this.Ascii_checkBox.Location = new System.Drawing.Point(14, 69);
- this.Ascii_checkBox.Name = "Ascii_checkBox";
- this.Ascii_checkBox.Size = new System.Drawing.Size(55, 16);
- this.Ascii_checkBox.TabIndex = 92;
- this.Ascii_checkBox.Text = "ASCII";
- this.Ascii_checkBox.UseVisualStyleBackColor = true;
- //
- // cmCom_Port
- //
- this.cmCom_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.cmCom_Port.AutoSize = true;
- this.cmCom_Port.Location = new System.Drawing.Point(11, 18);
- this.cmCom_Port.Name = "cmCom_Port";
- this.cmCom_Port.Size = new System.Drawing.Size(58, 12);
- this.cmCom_Port.TabIndex = 89;
- this.cmCom_Port.Text = "Com Port";
- //
- // button_PortOpen
- //
- this.button_PortOpen.Location = new System.Drawing.Point(13, 91);
- this.button_PortOpen.Name = "button_PortOpen";
- this.button_PortOpen.Size = new System.Drawing.Size(197, 34);
- this.button_PortOpen.TabIndex = 86;
- this.button_PortOpen.Text = "Port Open";
- this.button_PortOpen.UseVisualStyleBackColor = true;
- this.button_PortOpen.Click += new System.EventHandler(this.Button_PortOpen_Click);
- //
- // comboBox_Port
- //
- this.comboBox_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.comboBox_Port.Cursor = System.Windows.Forms.Cursors.Default;
- this.comboBox_Port.FormattingEnabled = true;
- this.comboBox_Port.Location = new System.Drawing.Point(109, 15);
- this.comboBox_Port.Name = "comboBox_Port";
- this.comboBox_Port.Size = new System.Drawing.Size(101, 20);
- this.comboBox_Port.TabIndex = 88;
- this.comboBox_Port.SelectedIndexChanged += new System.EventHandler(this.ComboBox_Port_SelectedIndexChanged);
- //
- // cmBaudRate
- //
- this.cmBaudRate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.cmBaudRate.AutoSize = true;
- this.cmBaudRate.Location = new System.Drawing.Point(11, 47);
- this.cmBaudRate.Name = "cmBaudRate";
- this.cmBaudRate.Size = new System.Drawing.Size(94, 12);
- this.cmBaudRate.TabIndex = 90;
- this.cmBaudRate.Text = "Baud Rate(bps)";
- //
- // comboBox_baudrate
- //
- this.comboBox_baudrate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.comboBox_baudrate.FormattingEnabled = true;
- this.comboBox_baudrate.Items.AddRange(new object[] {
- "9600",
- "14400",
- "19200",
- "38400",
- "57600",
- "115200",
- "128000"});
- this.comboBox_baudrate.Location = new System.Drawing.Point(110, 45);
- this.comboBox_baudrate.Name = "comboBox_baudrate";
- this.comboBox_baudrate.Size = new System.Drawing.Size(101, 20);
- this.comboBox_baudrate.TabIndex = 91;
- this.comboBox_baudrate.Text = "115200";
- //
- // groupBox3
- //
- this.groupBox3.Controls.Add(this.label68);
- this.groupBox3.Controls.Add(this.label56);
- this.groupBox3.Controls.Add(this.label67);
- this.groupBox3.Controls.Add(this.label12);
- this.groupBox3.Controls.Add(this.label66);
- this.groupBox3.Controls.Add(this.label55);
- this.groupBox3.Controls.Add(this.label65);
- this.groupBox3.Controls.Add(this.label11);
- this.groupBox3.Controls.Add(this.label64);
- this.groupBox3.Controls.Add(this.label54);
- this.groupBox3.Controls.Add(this.label63);
- this.groupBox3.Controls.Add(this.label10);
- this.groupBox3.Controls.Add(this.label62);
- this.groupBox3.Controls.Add(this.label53);
- this.groupBox3.Controls.Add(this.label61);
- this.groupBox3.Controls.Add(this.label1);
- this.groupBox3.Controls.Add(this.label60);
- this.groupBox3.Controls.Add(this.label52);
- this.groupBox3.Controls.Add(this.label59);
- this.groupBox3.Controls.Add(this.label8);
- this.groupBox3.Controls.Add(this.label58);
- this.groupBox3.Controls.Add(this.label51);
- this.groupBox3.Controls.Add(this.label57);
- this.groupBox3.Controls.Add(this.label9);
- this.groupBox3.Location = new System.Drawing.Point(12, 308);
- this.groupBox3.Name = "groupBox3";
- this.groupBox3.Size = new System.Drawing.Size(225, 244);
- this.groupBox3.TabIndex = 92;
- this.groupBox3.TabStop = false;
- this.groupBox3.Text = "Voltage";
- //
- // label68
- //
- this.label68.AutoSize = true;
- this.label68.Location = new System.Drawing.Point(190, 227);
- this.label68.Name = "label68";
- this.label68.Size = new System.Drawing.Size(29, 12);
- this.label68.TabIndex = 98;
- this.label68.Text = "0.0V";
- //
- // label56
- //
- this.label56.AutoSize = true;
- this.label56.Location = new System.Drawing.Point(76, 227);
- this.label56.Name = "label56";
- this.label56.Size = new System.Drawing.Size(29, 12);
- this.label56.TabIndex = 98;
- this.label56.Text = "0.0V";
- //
- // label67
- //
- this.label67.AutoSize = true;
- this.label67.Location = new System.Drawing.Point(189, 104);
- this.label67.Name = "label67";
- this.label67.Size = new System.Drawing.Size(29, 12);
- this.label67.TabIndex = 98;
- this.label67.Text = "0.0V";
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(76, 104);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(29, 12);
- this.label12.TabIndex = 98;
- this.label12.Text = "0.0V";
- //
- // label66
- //
- this.label66.AutoSize = true;
- this.label66.Location = new System.Drawing.Point(189, 186);
- this.label66.Name = "label66";
- this.label66.Size = new System.Drawing.Size(29, 12);
- this.label66.TabIndex = 98;
- this.label66.Text = "0.0V";
- //
- // label55
- //
- this.label55.AutoSize = true;
- this.label55.Location = new System.Drawing.Point(76, 186);
- this.label55.Name = "label55";
- this.label55.Size = new System.Drawing.Size(29, 12);
- this.label55.TabIndex = 98;
- this.label55.Text = "0.0V";
- //
- // label65
- //
- this.label65.AutoSize = true;
- this.label65.Location = new System.Drawing.Point(189, 63);
- this.label65.Name = "label65";
- this.label65.Size = new System.Drawing.Size(29, 12);
- this.label65.TabIndex = 98;
- this.label65.Text = "0.0V";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(76, 63);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(29, 12);
- this.label11.TabIndex = 98;
- this.label11.Text = "0.0V";
- //
- // label64
- //
- this.label64.AutoSize = true;
- this.label64.Location = new System.Drawing.Point(189, 145);
- this.label64.Name = "label64";
- this.label64.Size = new System.Drawing.Size(29, 12);
- this.label64.TabIndex = 98;
- this.label64.Text = "0.0V";
- //
- // label54
- //
- this.label54.AutoSize = true;
- this.label54.Location = new System.Drawing.Point(76, 145);
- this.label54.Name = "label54";
- this.label54.Size = new System.Drawing.Size(29, 12);
- this.label54.TabIndex = 98;
- this.label54.Text = "0.0V";
- //
- // label63
- //
- this.label63.AutoSize = true;
- this.label63.Location = new System.Drawing.Point(189, 22);
- this.label63.Name = "label63";
- this.label63.Size = new System.Drawing.Size(29, 12);
- this.label63.TabIndex = 98;
- this.label63.Text = "0.0V";
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(76, 22);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(29, 12);
- this.label10.TabIndex = 98;
- this.label10.Text = "0.0V";
- //
- // label62
- //
- this.label62.AutoSize = true;
- this.label62.Location = new System.Drawing.Point(120, 227);
- this.label62.Name = "label62";
- this.label62.Size = new System.Drawing.Size(53, 12);
- this.label62.TabIndex = 95;
- this.label62.Text = "3.5GHz :";
- //
- // label53
- //
- this.label53.AutoSize = true;
- this.label53.Location = new System.Drawing.Point(7, 227);
- this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(53, 12);
- this.label53.TabIndex = 95;
- this.label53.Text = "3.5GHz :";
- //
- // label61
- //
- this.label61.AutoSize = true;
- this.label61.Location = new System.Drawing.Point(120, 104);
- this.label61.Name = "label61";
- this.label61.Size = new System.Drawing.Size(53, 12);
- this.label61.TabIndex = 95;
- this.label61.Text = "3.5GHz :";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(7, 104);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(53, 12);
- this.label1.TabIndex = 95;
- this.label1.Text = "3.5GHz :";
- //
- // label60
- //
- this.label60.AutoSize = true;
- this.label60.Location = new System.Drawing.Point(120, 186);
- this.label60.Name = "label60";
- this.label60.Size = new System.Drawing.Size(53, 12);
- this.label60.TabIndex = 96;
- this.label60.Text = "2.1GHz :";
- //
- // label52
- //
- this.label52.AutoSize = true;
- this.label52.Location = new System.Drawing.Point(7, 186);
- this.label52.Name = "label52";
- this.label52.Size = new System.Drawing.Size(53, 12);
- this.label52.TabIndex = 96;
- this.label52.Text = "2.1GHz :";
- //
- // label59
- //
- this.label59.AutoSize = true;
- this.label59.Location = new System.Drawing.Point(120, 63);
- this.label59.Name = "label59";
- this.label59.Size = new System.Drawing.Size(53, 12);
- this.label59.TabIndex = 96;
- this.label59.Text = "2.1GHz :";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(7, 63);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(53, 12);
- this.label8.TabIndex = 96;
- this.label8.Text = "2.1GHz :";
- //
- // label58
- //
- this.label58.AutoSize = true;
- this.label58.Location = new System.Drawing.Point(120, 145);
- this.label58.Name = "label58";
- this.label58.Size = new System.Drawing.Size(53, 12);
- this.label58.TabIndex = 97;
- this.label58.Text = "1.8GHz :";
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Location = new System.Drawing.Point(7, 145);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(53, 12);
- this.label51.TabIndex = 97;
- this.label51.Text = "1.8GHz :";
- //
- // label57
- //
- this.label57.AutoSize = true;
- this.label57.Location = new System.Drawing.Point(120, 22);
- this.label57.Name = "label57";
- this.label57.Size = new System.Drawing.Size(53, 12);
- this.label57.TabIndex = 97;
- this.label57.Text = "1.8GHz :";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(7, 22);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(53, 12);
- this.label9.TabIndex = 97;
- this.label9.Text = "1.8GHz :";
- //
- // groupBox8
- //
- this.groupBox8.Controls.Add(this.groupBox6);
- this.groupBox8.Controls.Add(this.groupBox7);
- this.groupBox8.Controls.Add(this.groupBox5);
- this.groupBox8.Controls.Add(this.groupBox2);
- this.groupBox8.Controls.Add(this.groupBox4);
- this.groupBox8.Controls.Add(this.groupBox1);
- this.groupBox8.Location = new System.Drawing.Point(243, 219);
- this.groupBox8.Name = "groupBox8";
- this.groupBox8.Size = new System.Drawing.Size(924, 270);
- this.groupBox8.TabIndex = 94;
- this.groupBox8.TabStop = false;
- this.groupBox8.Text = "ATTEN(dB)";
- //
- // groupBox6
- //
- this.groupBox6.Controls.Add(this.numericUpDown_ATT_3_5G_COM3);
- this.groupBox6.Controls.Add(this.numericUpDown_ATT_3_5G_COM2);
- this.groupBox6.Controls.Add(this.numericUpDown_ATT_3_5G_COM1);
- this.groupBox6.Controls.Add(this.label19);
- this.groupBox6.Controls.Add(this.label20);
- this.groupBox6.Controls.Add(this.label21);
- this.groupBox6.Location = new System.Drawing.Point(687, 120);
- this.groupBox6.Name = "groupBox6";
- this.groupBox6.Size = new System.Drawing.Size(215, 133);
- this.groupBox6.TabIndex = 100;
- this.groupBox6.TabStop = false;
- this.groupBox6.Text = "3.5GHz UL";
- //
- // numericUpDown_ATT_3_5G_COM3
- //
- this.numericUpDown_ATT_3_5G_COM3.DecimalPlaces = 2;
- this.numericUpDown_ATT_3_5G_COM3.Increment = new decimal(new int[] {
- 25,
- 0,
- 0,
- 131072});
- this.numericUpDown_ATT_3_5G_COM3.Location = new System.Drawing.Point(135, 98);
- this.numericUpDown_ATT_3_5G_COM3.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_3_5G_COM3.Name = "numericUpDown_ATT_3_5G_COM3";
- this.numericUpDown_ATT_3_5G_COM3.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_3_5G_COM3.TabIndex = 5;
- this.numericUpDown_ATT_3_5G_COM3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_3_5G_COM2
- //
- this.numericUpDown_ATT_3_5G_COM2.DecimalPlaces = 2;
- this.numericUpDown_ATT_3_5G_COM2.Increment = new decimal(new int[] {
- 25,
- 0,
- 0,
- 131072});
- this.numericUpDown_ATT_3_5G_COM2.Location = new System.Drawing.Point(135, 60);
- this.numericUpDown_ATT_3_5G_COM2.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_3_5G_COM2.Name = "numericUpDown_ATT_3_5G_COM2";
- this.numericUpDown_ATT_3_5G_COM2.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_3_5G_COM2.TabIndex = 6;
- this.numericUpDown_ATT_3_5G_COM2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_3_5G_COM1
- //
- this.numericUpDown_ATT_3_5G_COM1.DecimalPlaces = 2;
- this.numericUpDown_ATT_3_5G_COM1.Increment = new decimal(new int[] {
- 25,
- 0,
- 0,
- 131072});
- this.numericUpDown_ATT_3_5G_COM1.Location = new System.Drawing.Point(135, 18);
- this.numericUpDown_ATT_3_5G_COM1.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_3_5G_COM1.Name = "numericUpDown_ATT_3_5G_COM1";
- this.numericUpDown_ATT_3_5G_COM1.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_3_5G_COM1.TabIndex = 7;
- this.numericUpDown_ATT_3_5G_COM1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(9, 22);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(101, 12);
- this.label19.TabIndex = 2;
- this.label19.Text = "ATT_3.5G_COM1";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(9, 104);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(101, 12);
- this.label20.TabIndex = 3;
- this.label20.Text = "ATT_3.5G_COM3";
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Location = new System.Drawing.Point(9, 64);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(101, 12);
- this.label21.TabIndex = 4;
- this.label21.Text = "ATT_3.5G_COM2";
- //
- // groupBox7
- //
- this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_UL);
- this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_DL);
- this.groupBox7.Controls.Add(this.label26);
- this.groupBox7.Controls.Add(this.label28);
- this.groupBox7.Location = new System.Drawing.Point(687, 22);
- this.groupBox7.Name = "groupBox7";
- this.groupBox7.Size = new System.Drawing.Size(215, 83);
- this.groupBox7.TabIndex = 94;
- this.groupBox7.TabStop = false;
- this.groupBox7.Text = "3.5GHz UL";
- //
- // numericUpDown_ATT_3_5G_UL
- //
- this.numericUpDown_ATT_3_5G_UL.DecimalPlaces = 2;
- this.numericUpDown_ATT_3_5G_UL.Increment = new decimal(new int[] {
- 25,
- 0,
- 0,
- 131072});
- this.numericUpDown_ATT_3_5G_UL.Location = new System.Drawing.Point(132, 47);
- this.numericUpDown_ATT_3_5G_UL.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_3_5G_UL.Name = "numericUpDown_ATT_3_5G_UL";
- this.numericUpDown_ATT_3_5G_UL.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_3_5G_UL.TabIndex = 1;
- this.numericUpDown_ATT_3_5G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_3_5G_DL
- //
- this.numericUpDown_ATT_3_5G_DL.DecimalPlaces = 2;
- this.numericUpDown_ATT_3_5G_DL.Increment = new decimal(new int[] {
- 25,
- 0,
- 0,
- 131072});
- this.numericUpDown_ATT_3_5G_DL.Location = new System.Drawing.Point(132, 19);
- this.numericUpDown_ATT_3_5G_DL.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_3_5G_DL.Name = "numericUpDown_ATT_3_5G_DL";
- this.numericUpDown_ATT_3_5G_DL.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_3_5G_DL.TabIndex = 1;
- this.numericUpDown_ATT_3_5G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(6, 23);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(81, 12);
- this.label26.TabIndex = 0;
- this.label26.Text = "ATT_3.5G_DL";
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(6, 53);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(81, 12);
- this.label28.TabIndex = 0;
- this.label28.Text = "ATT_3.5G_UL";
- //
- // groupBox5
- //
- this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL4);
- this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL2);
- this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL3);
- this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL1);
- this.groupBox5.Controls.Add(this.label15);
- this.groupBox5.Controls.Add(this.label16);
- this.groupBox5.Controls.Add(this.label17);
- this.groupBox5.Controls.Add(this.label18);
- this.groupBox5.Location = new System.Drawing.Point(349, 111);
- this.groupBox5.Name = "groupBox5";
- this.groupBox5.Size = new System.Drawing.Size(215, 142);
- this.groupBox5.TabIndex = 96;
- this.groupBox5.TabStop = false;
- this.groupBox5.Text = "2.1GHz UL";
- //
- // numericUpDown_ATT_2_1G_UL4
- //
- this.numericUpDown_ATT_2_1G_UL4.DecimalPlaces = 1;
- this.numericUpDown_ATT_2_1G_UL4.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_2_1G_UL4.Location = new System.Drawing.Point(132, 104);
- this.numericUpDown_ATT_2_1G_UL4.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_2_1G_UL4.Name = "numericUpDown_ATT_2_1G_UL4";
- this.numericUpDown_ATT_2_1G_UL4.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_2_1G_UL4.TabIndex = 1;
- this.numericUpDown_ATT_2_1G_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_2_1G_UL2
- //
- this.numericUpDown_ATT_2_1G_UL2.DecimalPlaces = 1;
- this.numericUpDown_ATT_2_1G_UL2.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_2_1G_UL2.Location = new System.Drawing.Point(132, 47);
- this.numericUpDown_ATT_2_1G_UL2.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_2_1G_UL2.Name = "numericUpDown_ATT_2_1G_UL2";
- this.numericUpDown_ATT_2_1G_UL2.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_2_1G_UL2.TabIndex = 1;
- this.numericUpDown_ATT_2_1G_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_2_1G_UL3
- //
- this.numericUpDown_ATT_2_1G_UL3.DecimalPlaces = 1;
- this.numericUpDown_ATT_2_1G_UL3.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_2_1G_UL3.Location = new System.Drawing.Point(132, 76);
- this.numericUpDown_ATT_2_1G_UL3.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_2_1G_UL3.Name = "numericUpDown_ATT_2_1G_UL3";
- this.numericUpDown_ATT_2_1G_UL3.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_2_1G_UL3.TabIndex = 1;
- this.numericUpDown_ATT_2_1G_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_2_1G_UL1
- //
- this.numericUpDown_ATT_2_1G_UL1.DecimalPlaces = 1;
- this.numericUpDown_ATT_2_1G_UL1.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_2_1G_UL1.Location = new System.Drawing.Point(132, 19);
- this.numericUpDown_ATT_2_1G_UL1.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_2_1G_UL1.Name = "numericUpDown_ATT_2_1G_UL1";
- this.numericUpDown_ATT_2_1G_UL1.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_2_1G_UL1.TabIndex = 1;
- this.numericUpDown_ATT_2_1G_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(6, 80);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(87, 12);
- this.label15.TabIndex = 0;
- this.label15.Text = "ATT_2.1G_UL3";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(6, 110);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(87, 12);
- this.label16.TabIndex = 0;
- this.label16.Text = "ATT_2.1G_UL4";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(6, 23);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(87, 12);
- this.label17.TabIndex = 0;
- this.label17.Text = "ATT_2.1G_UL1";
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(6, 53);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(87, 12);
- this.label18.TabIndex = 0;
- this.label18.Text = "ATT_2.1G_UL2";
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL4);
- this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL2);
- this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL3);
- this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL1);
- this.groupBox2.Controls.Add(this.label7);
- this.groupBox2.Controls.Add(this.label6);
- this.groupBox2.Controls.Add(this.label4);
- this.groupBox2.Controls.Add(this.label5);
- this.groupBox2.Location = new System.Drawing.Point(23, 111);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(215, 142);
- this.groupBox2.TabIndex = 97;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "1.8GHz UL";
- //
- // numericUpDown_ATT_1_8G_UL4
- //
- this.numericUpDown_ATT_1_8G_UL4.DecimalPlaces = 1;
- this.numericUpDown_ATT_1_8G_UL4.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_1_8G_UL4.Location = new System.Drawing.Point(132, 104);
- this.numericUpDown_ATT_1_8G_UL4.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_1_8G_UL4.Name = "numericUpDown_ATT_1_8G_UL4";
- this.numericUpDown_ATT_1_8G_UL4.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_1_8G_UL4.TabIndex = 1;
- this.numericUpDown_ATT_1_8G_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_1_8G_UL2
- //
- this.numericUpDown_ATT_1_8G_UL2.DecimalPlaces = 1;
- this.numericUpDown_ATT_1_8G_UL2.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_1_8G_UL2.Location = new System.Drawing.Point(132, 47);
- this.numericUpDown_ATT_1_8G_UL2.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_1_8G_UL2.Name = "numericUpDown_ATT_1_8G_UL2";
- this.numericUpDown_ATT_1_8G_UL2.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_1_8G_UL2.TabIndex = 1;
- this.numericUpDown_ATT_1_8G_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_1_8G_UL3
- //
- this.numericUpDown_ATT_1_8G_UL3.DecimalPlaces = 1;
- this.numericUpDown_ATT_1_8G_UL3.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_1_8G_UL3.Location = new System.Drawing.Point(132, 76);
- this.numericUpDown_ATT_1_8G_UL3.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_1_8G_UL3.Name = "numericUpDown_ATT_1_8G_UL3";
- this.numericUpDown_ATT_1_8G_UL3.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_1_8G_UL3.TabIndex = 1;
- this.numericUpDown_ATT_1_8G_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_1_8G_UL1
- //
- this.numericUpDown_ATT_1_8G_UL1.DecimalPlaces = 1;
- this.numericUpDown_ATT_1_8G_UL1.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_1_8G_UL1.Location = new System.Drawing.Point(132, 19);
- this.numericUpDown_ATT_1_8G_UL1.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_1_8G_UL1.Name = "numericUpDown_ATT_1_8G_UL1";
- this.numericUpDown_ATT_1_8G_UL1.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_1_8G_UL1.TabIndex = 1;
- this.numericUpDown_ATT_1_8G_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(6, 80);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(87, 12);
- this.label7.TabIndex = 0;
- this.label7.Text = "ATT_1.8G_UL3";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(6, 110);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(87, 12);
- this.label6.TabIndex = 0;
- this.label6.Text = "ATT_1.8G_UL4";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(6, 23);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(87, 12);
- this.label4.TabIndex = 0;
- this.label4.Text = "ATT_1.8G_UL1";
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(6, 53);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(87, 12);
- this.label5.TabIndex = 0;
- this.label5.Text = "ATT_1.8G_UL2";
- //
- // groupBox4
- //
- this.groupBox4.Controls.Add(this.numericUpDown_ATT_2_1G_DL2);
- this.groupBox4.Controls.Add(this.numericUpDown_ATT_2_1G_DL1);
- this.groupBox4.Controls.Add(this.label13);
- this.groupBox4.Controls.Add(this.label14);
- this.groupBox4.Location = new System.Drawing.Point(349, 20);
- this.groupBox4.Name = "groupBox4";
- this.groupBox4.Size = new System.Drawing.Size(215, 85);
- this.groupBox4.TabIndex = 98;
- this.groupBox4.TabStop = false;
- this.groupBox4.Text = "2.1GHz DL";
- //
- // numericUpDown_ATT_2_1G_DL2
- //
- this.numericUpDown_ATT_2_1G_DL2.DecimalPlaces = 1;
- this.numericUpDown_ATT_2_1G_DL2.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_2_1G_DL2.Location = new System.Drawing.Point(132, 47);
- this.numericUpDown_ATT_2_1G_DL2.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_2_1G_DL2.Name = "numericUpDown_ATT_2_1G_DL2";
- this.numericUpDown_ATT_2_1G_DL2.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_2_1G_DL2.TabIndex = 1;
- this.numericUpDown_ATT_2_1G_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_2_1G_DL1
- //
- this.numericUpDown_ATT_2_1G_DL1.DecimalPlaces = 1;
- this.numericUpDown_ATT_2_1G_DL1.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_2_1G_DL1.Location = new System.Drawing.Point(132, 19);
- this.numericUpDown_ATT_2_1G_DL1.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_2_1G_DL1.Name = "numericUpDown_ATT_2_1G_DL1";
- this.numericUpDown_ATT_2_1G_DL1.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_2_1G_DL1.TabIndex = 1;
- this.numericUpDown_ATT_2_1G_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(6, 23);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(87, 12);
- this.label13.TabIndex = 0;
- this.label13.Text = "ATT_2.1G_DL1";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(6, 53);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(87, 12);
- this.label14.TabIndex = 0;
- this.label14.Text = "ATT_2.1G_DL2";
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.numericUpDown_ATT_1_8G_DL2);
- this.groupBox1.Controls.Add(this.numericUpDown_ATT_1_8G_DL1);
- this.groupBox1.Controls.Add(this.label3);
- this.groupBox1.Controls.Add(this.label2);
- this.groupBox1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.groupBox1.Location = new System.Drawing.Point(23, 20);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(215, 85);
- this.groupBox1.TabIndex = 99;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "1.8GHz DL";
- //
- // numericUpDown_ATT_1_8G_DL2
- //
- this.numericUpDown_ATT_1_8G_DL2.DecimalPlaces = 1;
- this.numericUpDown_ATT_1_8G_DL2.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_1_8G_DL2.Location = new System.Drawing.Point(132, 47);
- this.numericUpDown_ATT_1_8G_DL2.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_1_8G_DL2.Name = "numericUpDown_ATT_1_8G_DL2";
- this.numericUpDown_ATT_1_8G_DL2.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_1_8G_DL2.TabIndex = 1;
- this.numericUpDown_ATT_1_8G_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // numericUpDown_ATT_1_8G_DL1
- //
- this.numericUpDown_ATT_1_8G_DL1.DecimalPlaces = 1;
- this.numericUpDown_ATT_1_8G_DL1.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_1_8G_DL1.Location = new System.Drawing.Point(132, 19);
- this.numericUpDown_ATT_1_8G_DL1.Maximum = new decimal(new int[] {
- 30,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_1_8G_DL1.Name = "numericUpDown_ATT_1_8G_DL1";
- this.numericUpDown_ATT_1_8G_DL1.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_ATT_1_8G_DL1.TabIndex = 1;
- this.numericUpDown_ATT_1_8G_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(6, 23);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(87, 12);
- this.label3.TabIndex = 0;
- this.label3.Text = "ATT_1.8G_DL1";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(6, 53);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(87, 12);
- this.label2.TabIndex = 0;
- this.label2.Text = "ATT_1.8G_DL2";
- //
- // groupBox17
- //
- this.groupBox17.Controls.Add(this.label78);
- this.groupBox17.Controls.Add(this.label77);
- this.groupBox17.Controls.Add(this.label76);
- this.groupBox17.Controls.Add(this.label75);
- this.groupBox17.Controls.Add(this.label74);
- this.groupBox17.Controls.Add(this.label73);
- this.groupBox17.Controls.Add(this.label72);
- this.groupBox17.Controls.Add(this.label71);
- this.groupBox17.Controls.Add(this.label70);
- this.groupBox17.Controls.Add(this.label69);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_OFF);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_OFF);
- this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF);
- this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_OFF);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_OFF);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_UL_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_UL_OFF);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_DL_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_DL_OFF);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_UL_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_UL_OFF);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_DL_ON);
- this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_DL_OFF);
- this.groupBox17.Location = new System.Drawing.Point(243, 77);
- this.groupBox17.Name = "groupBox17";
- this.groupBox17.Size = new System.Drawing.Size(924, 136);
- this.groupBox17.TabIndex = 95;
- this.groupBox17.TabStop = false;
- this.groupBox17.Text = "Power";
- //
- // label78
- //
- this.label78.AutoSize = true;
- this.label78.Location = new System.Drawing.Point(601, 12);
- this.label78.Name = "label78";
- this.label78.Size = new System.Drawing.Size(125, 12);
- this.label78.TabIndex = 97;
- this.label78.Text = "PLL_ON/OFF_3.5G_H";
- //
- // label77
- //
- this.label77.AutoSize = true;
- this.label77.Location = new System.Drawing.Point(601, 74);
- this.label77.Name = "label77";
- this.label77.Size = new System.Drawing.Size(124, 12);
- this.label77.TabIndex = 97;
- this.label77.Text = "PLL_ON/OFF_3.5G_L";
- //
- // label76
- //
- this.label76.AutoSize = true;
- this.label76.Location = new System.Drawing.Point(423, 73);
- this.label76.Name = "label76";
- this.label76.Size = new System.Drawing.Size(112, 12);
- this.label76.TabIndex = 97;
- this.label76.Text = "PATH_EN_3.5G_UL";
- //
- // label75
- //
- this.label75.AutoSize = true;
- this.label75.Location = new System.Drawing.Point(423, 17);
- this.label75.Name = "label75";
- this.label75.Size = new System.Drawing.Size(112, 12);
- this.label75.TabIndex = 97;
- this.label75.Text = "PATH_EN_3.5G_DL";
- //
- // label74
- //
- this.label74.AutoSize = true;
- this.label74.Location = new System.Drawing.Point(788, 12);
- this.label74.Name = "label74";
- this.label74.Size = new System.Drawing.Size(105, 12);
- this.label74.TabIndex = 97;
- this.label74.Text = "PATH_EN_3.5G_H";
- //
- // label73
- //
- this.label73.AutoSize = true;
- this.label73.Location = new System.Drawing.Point(789, 74);
- this.label73.Name = "label73";
- this.label73.Size = new System.Drawing.Size(104, 12);
- this.label73.TabIndex = 97;
- this.label73.Text = "PATH_EN_3.5G_L";
- //
- // label72
- //
- this.label72.AutoSize = true;
- this.label72.Location = new System.Drawing.Point(237, 69);
- this.label72.Name = "label72";
- this.label72.Size = new System.Drawing.Size(112, 12);
- this.label72.TabIndex = 97;
- this.label72.Text = "PATH_EN_2.1G_UL";
- //
- // label71
- //
- this.label71.AutoSize = true;
- this.label71.Location = new System.Drawing.Point(237, 12);
- this.label71.Name = "label71";
- this.label71.Size = new System.Drawing.Size(112, 12);
- this.label71.TabIndex = 97;
- this.label71.Text = "PATH_EN_2.1G_DL";
- //
- // label70
- //
- this.label70.AutoSize = true;
- this.label70.Location = new System.Drawing.Point(48, 69);
- this.label70.Name = "label70";
- this.label70.Size = new System.Drawing.Size(112, 12);
- this.label70.TabIndex = 97;
- this.label70.Text = "PATH_EN_1.8G_UL";
- //
- // label69
- //
- this.label69.AutoSize = true;
- this.label69.Location = new System.Drawing.Point(66, 12);
- this.label69.Name = "label69";
- this.label69.Size = new System.Drawing.Size(112, 12);
- this.label69.TabIndex = 97;
- this.label69.Text = "PATH_EN_1.8G_DL";
- //
- // pictureBox_PATH_3_5G_L_ON
- //
- this.pictureBox_PATH_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_ON.Image")));
- this.pictureBox_PATH_3_5G_L_ON.Location = new System.Drawing.Point(846, 89);
- this.pictureBox_PATH_3_5G_L_ON.Name = "pictureBox_PATH_3_5G_L_ON";
- this.pictureBox_PATH_3_5G_L_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_3_5G_L_ON.TabIndex = 96;
- this.pictureBox_PATH_3_5G_L_ON.TabStop = false;
- //
- // pictureBox_PATH_3_5G_L_OFF
- //
- this.pictureBox_PATH_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_OFF.Image")));
- this.pictureBox_PATH_3_5G_L_OFF.Location = new System.Drawing.Point(846, 88);
- this.pictureBox_PATH_3_5G_L_OFF.Name = "pictureBox_PATH_3_5G_L_OFF";
- this.pictureBox_PATH_3_5G_L_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_3_5G_L_OFF.TabIndex = 96;
- this.pictureBox_PATH_3_5G_L_OFF.TabStop = false;
- //
- // pictureBox_PATH_3_5G_H_ON
- //
- this.pictureBox_PATH_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_ON.Image")));
- this.pictureBox_PATH_3_5G_H_ON.Location = new System.Drawing.Point(846, 30);
- this.pictureBox_PATH_3_5G_H_ON.Name = "pictureBox_PATH_3_5G_H_ON";
- this.pictureBox_PATH_3_5G_H_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_3_5G_H_ON.TabIndex = 96;
- this.pictureBox_PATH_3_5G_H_ON.TabStop = false;
- //
- // pictureBox_PATH_3_5G_H_OFF
- //
- this.pictureBox_PATH_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_OFF.Image")));
- this.pictureBox_PATH_3_5G_H_OFF.Location = new System.Drawing.Point(846, 30);
- this.pictureBox_PATH_3_5G_H_OFF.Name = "pictureBox_PATH_3_5G_H_OFF";
- this.pictureBox_PATH_3_5G_H_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_3_5G_H_OFF.TabIndex = 96;
- this.pictureBox_PATH_3_5G_H_OFF.TabStop = false;
- //
- // pictureBox_PLL_ON_OFF_3_5G_L_ON
- //
- this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_ON.Image")));
- this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Location = new System.Drawing.Point(660, 88);
- this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_L_ON";
- this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabIndex = 96;
- this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabStop = false;
- //
- // pictureBox_PLL_ON_OFF_3_5G_L_OFF
- //
- this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image")));
- this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Location = new System.Drawing.Point(660, 88);
- this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_L_OFF";
- this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabIndex = 96;
- this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabStop = false;
- //
- // pictureBox_PLL_ON_OFF_3_5G_H_ON
- //
- this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_ON.Image")));
- this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Location = new System.Drawing.Point(660, 28);
- this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_H_ON";
- this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabIndex = 96;
- this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabStop = false;
- //
- // pictureBox_PLL_ON_OFF_3_5G_H_OFF
- //
- this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image")));
- this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Location = new System.Drawing.Point(660, 28);
- this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_H_OFF";
- this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabIndex = 96;
- this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabStop = false;
- //
- // pictureBox_PATH_3_5G_UL_ON
- //
- this.pictureBox_PATH_3_5G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_ON.Image")));
- this.pictureBox_PATH_3_5G_UL_ON.Location = new System.Drawing.Point(474, 88);
- this.pictureBox_PATH_3_5G_UL_ON.Name = "pictureBox_PATH_3_5G_UL_ON";
- this.pictureBox_PATH_3_5G_UL_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_3_5G_UL_ON.TabIndex = 96;
- this.pictureBox_PATH_3_5G_UL_ON.TabStop = false;
- //
- // pictureBox_PATH_3_5G_UL_OFF
- //
- this.pictureBox_PATH_3_5G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_OFF.Image")));
- this.pictureBox_PATH_3_5G_UL_OFF.Location = new System.Drawing.Point(474, 88);
- this.pictureBox_PATH_3_5G_UL_OFF.Name = "pictureBox_PATH_3_5G_UL_OFF";
- this.pictureBox_PATH_3_5G_UL_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_3_5G_UL_OFF.TabIndex = 96;
- this.pictureBox_PATH_3_5G_UL_OFF.TabStop = false;
- //
- // pictureBox_PATH_3_5G_DL_ON
- //
- this.pictureBox_PATH_3_5G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_ON.Image")));
- this.pictureBox_PATH_3_5G_DL_ON.Location = new System.Drawing.Point(474, 28);
- this.pictureBox_PATH_3_5G_DL_ON.Name = "pictureBox_PATH_3_5G_DL_ON";
- this.pictureBox_PATH_3_5G_DL_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_3_5G_DL_ON.TabIndex = 96;
- this.pictureBox_PATH_3_5G_DL_ON.TabStop = false;
- //
- // pictureBox_PATH_3_5G_DL_OFF
- //
- this.pictureBox_PATH_3_5G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_OFF.Image")));
- this.pictureBox_PATH_3_5G_DL_OFF.Location = new System.Drawing.Point(474, 28);
- this.pictureBox_PATH_3_5G_DL_OFF.Name = "pictureBox_PATH_3_5G_DL_OFF";
- this.pictureBox_PATH_3_5G_DL_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_3_5G_DL_OFF.TabIndex = 96;
- this.pictureBox_PATH_3_5G_DL_OFF.TabStop = false;
- //
- // pictureBox_PATH_2_1G_UL_ON
- //
- this.pictureBox_PATH_2_1G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_UL_ON.Image")));
- this.pictureBox_PATH_2_1G_UL_ON.Location = new System.Drawing.Point(288, 90);
- this.pictureBox_PATH_2_1G_UL_ON.Name = "pictureBox_PATH_2_1G_UL_ON";
- this.pictureBox_PATH_2_1G_UL_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_2_1G_UL_ON.TabIndex = 96;
- this.pictureBox_PATH_2_1G_UL_ON.TabStop = false;
- //
- // pictureBox_PATH_2_1G_UL_OFF
- //
- this.pictureBox_PATH_2_1G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_UL_OFF.Image")));
- this.pictureBox_PATH_2_1G_UL_OFF.Location = new System.Drawing.Point(288, 90);
- this.pictureBox_PATH_2_1G_UL_OFF.Name = "pictureBox_PATH_2_1G_UL_OFF";
- this.pictureBox_PATH_2_1G_UL_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_2_1G_UL_OFF.TabIndex = 96;
- this.pictureBox_PATH_2_1G_UL_OFF.TabStop = false;
- //
- // pictureBox_PATH_2_1G_DL_ON
- //
- this.pictureBox_PATH_2_1G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_DL_ON.Image")));
- this.pictureBox_PATH_2_1G_DL_ON.Location = new System.Drawing.Point(288, 28);
- this.pictureBox_PATH_2_1G_DL_ON.Name = "pictureBox_PATH_2_1G_DL_ON";
- this.pictureBox_PATH_2_1G_DL_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_2_1G_DL_ON.TabIndex = 96;
- this.pictureBox_PATH_2_1G_DL_ON.TabStop = false;
- //
- // pictureBox_PATH_2_1G_DL_OFF
- //
- this.pictureBox_PATH_2_1G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_DL_OFF.Image")));
- this.pictureBox_PATH_2_1G_DL_OFF.Location = new System.Drawing.Point(288, 28);
- this.pictureBox_PATH_2_1G_DL_OFF.Name = "pictureBox_PATH_2_1G_DL_OFF";
- this.pictureBox_PATH_2_1G_DL_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_2_1G_DL_OFF.TabIndex = 96;
- this.pictureBox_PATH_2_1G_DL_OFF.TabStop = false;
- //
- // pictureBox_PATH_1_8G_UL_ON
- //
- this.pictureBox_PATH_1_8G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_UL_ON.Image")));
- this.pictureBox_PATH_1_8G_UL_ON.Location = new System.Drawing.Point(102, 90);
- this.pictureBox_PATH_1_8G_UL_ON.Name = "pictureBox_PATH_1_8G_UL_ON";
- this.pictureBox_PATH_1_8G_UL_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_1_8G_UL_ON.TabIndex = 96;
- this.pictureBox_PATH_1_8G_UL_ON.TabStop = false;
- //
- // pictureBox_PATH_1_8G_UL_OFF
- //
- this.pictureBox_PATH_1_8G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_UL_OFF.Image")));
- this.pictureBox_PATH_1_8G_UL_OFF.Location = new System.Drawing.Point(102, 90);
- this.pictureBox_PATH_1_8G_UL_OFF.Name = "pictureBox_PATH_1_8G_UL_OFF";
- this.pictureBox_PATH_1_8G_UL_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_1_8G_UL_OFF.TabIndex = 96;
- this.pictureBox_PATH_1_8G_UL_OFF.TabStop = false;
- //
- // pictureBox_PATH_1_8G_DL_ON
- //
- this.pictureBox_PATH_1_8G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_DL_ON.Image")));
- this.pictureBox_PATH_1_8G_DL_ON.Location = new System.Drawing.Point(102, 30);
- this.pictureBox_PATH_1_8G_DL_ON.Name = "pictureBox_PATH_1_8G_DL_ON";
- this.pictureBox_PATH_1_8G_DL_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_1_8G_DL_ON.TabIndex = 96;
- this.pictureBox_PATH_1_8G_DL_ON.TabStop = false;
- //
- // pictureBox_PATH_1_8G_DL_OFF
- //
- this.pictureBox_PATH_1_8G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_DL_OFF.Image")));
- this.pictureBox_PATH_1_8G_DL_OFF.Location = new System.Drawing.Point(102, 30);
- this.pictureBox_PATH_1_8G_DL_OFF.Name = "pictureBox_PATH_1_8G_DL_OFF";
- this.pictureBox_PATH_1_8G_DL_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_PATH_1_8G_DL_OFF.TabIndex = 96;
- this.pictureBox_PATH_1_8G_DL_OFF.TabStop = false;
- //
- // label79
- //
- this.label79.AutoSize = true;
- this.label79.Font = new System.Drawing.Font("굴림", 36F, System.Drawing.FontStyle.Bold);
- this.label79.Location = new System.Drawing.Point(499, 20);
- this.label79.Name = "label79";
- this.label79.Size = new System.Drawing.Size(501, 48);
- this.label79.TabIndex = 97;
- this.label79.Text = "RF-TRIO-3.5G-RFU";
- //
- // label80
- //
- this.label80.AutoSize = true;
- this.label80.Location = new System.Drawing.Point(989, 66);
- this.label80.Name = "label80";
- this.label80.Size = new System.Drawing.Size(178, 12);
- this.label80.TabIndex = 98;
- this.label80.Text = "Copyright (c) 2019. BLUECELL";
- //
- // button_Set
- //
- this.button_Set.Font = new System.Drawing.Font("굴림", 15F, System.Drawing.FontStyle.Bold);
- this.button_Set.Location = new System.Drawing.Point(12, 626);
- this.button_Set.Name = "button_Set";
- this.button_Set.Size = new System.Drawing.Size(225, 26);
- this.button_Set.TabIndex = 100;
- this.button_Set.Text = "SET";
- this.button_Set.UseVisualStyleBackColor = true;
- this.button_Set.Click += new System.EventHandler(this.button_Set_Click);
- //
- // groupBox10
- //
- this.groupBox10.Controls.Add(this.groupBox11);
- this.groupBox10.Controls.Add(this.groupBox15);
- this.groupBox10.Controls.Add(this.groupBox16);
- this.groupBox10.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.groupBox10.Location = new System.Drawing.Point(243, 495);
- this.groupBox10.Name = "groupBox10";
- this.groupBox10.Size = new System.Drawing.Size(924, 157);
- this.groupBox10.TabIndex = 102;
- this.groupBox10.TabStop = false;
- this.groupBox10.Text = "PLL(MHz)";
- //
- // groupBox11
- //
- this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_UL);
- this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_DL);
- this.groupBox11.Controls.Add(this.label32);
- this.groupBox11.Controls.Add(this.label33);
- this.groupBox11.Location = new System.Drawing.Point(687, 41);
- this.groupBox11.Name = "groupBox11";
- this.groupBox11.Size = new System.Drawing.Size(215, 79);
- this.groupBox11.TabIndex = 94;
- this.groupBox11.TabStop = false;
- this.groupBox11.Text = "3.5GHz";
- //
- // numericUpDown_PLL_3_5G_UL
- //
- this.numericUpDown_PLL_3_5G_UL.DecimalPlaces = 1;
- this.numericUpDown_PLL_3_5G_UL.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 65536});
- this.numericUpDown_PLL_3_5G_UL.Location = new System.Drawing.Point(132, 47);
- this.numericUpDown_PLL_3_5G_UL.Maximum = new decimal(new int[] {
- 3000,
- 0,
- 0,
- 0});
- this.numericUpDown_PLL_3_5G_UL.Name = "numericUpDown_PLL_3_5G_UL";
- this.numericUpDown_PLL_3_5G_UL.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_PLL_3_5G_UL.TabIndex = 1;
- //
- // numericUpDown_PLL_3_5G_DL
- //
- this.numericUpDown_PLL_3_5G_DL.DecimalPlaces = 1;
- this.numericUpDown_PLL_3_5G_DL.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 65536});
- this.numericUpDown_PLL_3_5G_DL.Location = new System.Drawing.Point(132, 19);
- this.numericUpDown_PLL_3_5G_DL.Maximum = new decimal(new int[] {
- 3000,
- 0,
- 0,
- 0});
- this.numericUpDown_PLL_3_5G_DL.Name = "numericUpDown_PLL_3_5G_DL";
- this.numericUpDown_PLL_3_5G_DL.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_PLL_3_5G_DL.TabIndex = 1;
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(6, 23);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(79, 12);
- this.label32.TabIndex = 0;
- this.label32.Text = "PLL_3.5G_DL";
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Location = new System.Drawing.Point(6, 53);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(79, 12);
- this.label33.TabIndex = 0;
- this.label33.Text = "PLL_3.5G_UL";
- //
- // groupBox15
- //
- this.groupBox15.Controls.Add(this.numericUpDown_PLL_2_1G_UL);
- this.groupBox15.Controls.Add(this.numericUpDown_PLL_2_1G_DL);
- this.groupBox15.Controls.Add(this.label47);
- this.groupBox15.Controls.Add(this.label48);
- this.groupBox15.Location = new System.Drawing.Point(349, 35);
- this.groupBox15.Name = "groupBox15";
- this.groupBox15.Size = new System.Drawing.Size(215, 85);
- this.groupBox15.TabIndex = 98;
- this.groupBox15.TabStop = false;
- this.groupBox15.Text = "2.1GHz";
- //
- // numericUpDown_PLL_2_1G_UL
- //
- this.numericUpDown_PLL_2_1G_UL.DecimalPlaces = 1;
- this.numericUpDown_PLL_2_1G_UL.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 65536});
- this.numericUpDown_PLL_2_1G_UL.Location = new System.Drawing.Point(132, 47);
- this.numericUpDown_PLL_2_1G_UL.Maximum = new decimal(new int[] {
- 3000,
- 0,
- 0,
- 0});
- this.numericUpDown_PLL_2_1G_UL.Name = "numericUpDown_PLL_2_1G_UL";
- this.numericUpDown_PLL_2_1G_UL.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_PLL_2_1G_UL.TabIndex = 1;
- //
- // numericUpDown_PLL_2_1G_DL
- //
- this.numericUpDown_PLL_2_1G_DL.DecimalPlaces = 1;
- this.numericUpDown_PLL_2_1G_DL.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 65536});
- this.numericUpDown_PLL_2_1G_DL.Location = new System.Drawing.Point(132, 19);
- this.numericUpDown_PLL_2_1G_DL.Maximum = new decimal(new int[] {
- 3000,
- 0,
- 0,
- 0});
- this.numericUpDown_PLL_2_1G_DL.Name = "numericUpDown_PLL_2_1G_DL";
- this.numericUpDown_PLL_2_1G_DL.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_PLL_2_1G_DL.TabIndex = 1;
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Location = new System.Drawing.Point(6, 23);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(79, 12);
- this.label47.TabIndex = 0;
- this.label47.Text = "PLL_2.1G_DL";
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Location = new System.Drawing.Point(6, 53);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(79, 12);
- this.label48.TabIndex = 0;
- this.label48.Text = "PLL_2.1G_UL";
- //
- // groupBox16
- //
- this.groupBox16.Controls.Add(this.numericUpDown_PLL_1_8G_UL);
- this.groupBox16.Controls.Add(this.numericUpDown_PLL_1_8G_DL);
- this.groupBox16.Controls.Add(this.label49);
- this.groupBox16.Controls.Add(this.label50);
- this.groupBox16.Location = new System.Drawing.Point(23, 37);
- this.groupBox16.Name = "groupBox16";
- this.groupBox16.Size = new System.Drawing.Size(215, 85);
- this.groupBox16.TabIndex = 99;
- this.groupBox16.TabStop = false;
- this.groupBox16.Text = "1.8GHz";
- //
- // numericUpDown_PLL_1_8G_UL
- //
- this.numericUpDown_PLL_1_8G_UL.DecimalPlaces = 1;
- this.numericUpDown_PLL_1_8G_UL.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 65536});
- this.numericUpDown_PLL_1_8G_UL.Location = new System.Drawing.Point(132, 47);
- this.numericUpDown_PLL_1_8G_UL.Maximum = new decimal(new int[] {
- 3000,
- 0,
- 0,
- 0});
- this.numericUpDown_PLL_1_8G_UL.Name = "numericUpDown_PLL_1_8G_UL";
- this.numericUpDown_PLL_1_8G_UL.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_PLL_1_8G_UL.TabIndex = 1;
- //
- // numericUpDown_PLL_1_8G_DL
- //
- this.numericUpDown_PLL_1_8G_DL.DecimalPlaces = 1;
- this.numericUpDown_PLL_1_8G_DL.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 65536});
- this.numericUpDown_PLL_1_8G_DL.Location = new System.Drawing.Point(132, 19);
- this.numericUpDown_PLL_1_8G_DL.Maximum = new decimal(new int[] {
- 3000,
- 0,
- 0,
- 0});
- this.numericUpDown_PLL_1_8G_DL.Name = "numericUpDown_PLL_1_8G_DL";
- this.numericUpDown_PLL_1_8G_DL.Size = new System.Drawing.Size(71, 21);
- this.numericUpDown_PLL_1_8G_DL.TabIndex = 1;
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Location = new System.Drawing.Point(6, 23);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(79, 12);
- this.label49.TabIndex = 0;
- this.label49.Text = "PLL_1.8G_DL";
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Location = new System.Drawing.Point(6, 53);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(79, 12);
- this.label50.TabIndex = 0;
- this.label50.Text = "PLL_1.8G_UL";
- //
- // timer
- //
- this.timer.Interval = 3000;
- this.timer.Tick += new System.EventHandler(this.timer_Tick);
- //
- // groupBox12
- //
- this.groupBox12.Controls.Add(this.pictureBox_R_TX);
- this.groupBox12.Controls.Add(this.pictureBox_G_TX);
- this.groupBox12.Controls.Add(this.pictureBox_R_RX);
- this.groupBox12.Controls.Add(this.pictureBox_G_RX);
- this.groupBox12.Location = new System.Drawing.Point(12, 12);
- this.groupBox12.Name = "groupBox12";
- this.groupBox12.Size = new System.Drawing.Size(225, 66);
- this.groupBox12.TabIndex = 103;
- this.groupBox12.TabStop = false;
- this.groupBox12.Text = "DATA Status";
- //
- // pictureBox_R_TX
- //
- this.pictureBox_R_TX.Image = global::Basic_Terminal.Properties.Resources.TX_Red_Image;
- this.pictureBox_R_TX.Location = new System.Drawing.Point(31, 20);
- this.pictureBox_R_TX.Name = "pictureBox_R_TX";
- this.pictureBox_R_TX.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_R_TX.TabIndex = 97;
- this.pictureBox_R_TX.TabStop = false;
- //
- // pictureBox_G_TX
- //
- this.pictureBox_G_TX.Image = global::Basic_Terminal.Properties.Resources.TX_IMAGE;
- this.pictureBox_G_TX.Location = new System.Drawing.Point(31, 20);
- this.pictureBox_G_TX.Name = "pictureBox_G_TX";
- this.pictureBox_G_TX.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_G_TX.TabIndex = 96;
- this.pictureBox_G_TX.TabStop = false;
- //
- // pictureBox_R_RX
- //
- this.pictureBox_R_RX.Image = global::Basic_Terminal.Properties.Resources.RX_IMAGE;
- this.pictureBox_R_RX.Location = new System.Drawing.Point(157, 20);
- this.pictureBox_R_RX.Name = "pictureBox_R_RX";
- this.pictureBox_R_RX.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_R_RX.TabIndex = 96;
- this.pictureBox_R_RX.TabStop = false;
- //
- // pictureBox_G_RX
- //
- this.pictureBox_G_RX.Image = global::Basic_Terminal.Properties.Resources.RX_GREEN_IMAGE;
- this.pictureBox_G_RX.Location = new System.Drawing.Point(157, 20);
- this.pictureBox_G_RX.Name = "pictureBox_G_RX";
- this.pictureBox_G_RX.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_G_RX.TabIndex = 98;
- this.pictureBox_G_RX.TabStop = false;
- //
- // pictureBox15
- //
- this.pictureBox15.BackColor = System.Drawing.Color.Transparent;
- this.pictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.pictureBox15.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox15.Image")));
- this.pictureBox15.Location = new System.Drawing.Point(1017, 12);
- this.pictureBox15.Name = "pictureBox15";
- this.pictureBox15.Size = new System.Drawing.Size(150, 42);
- this.pictureBox15.TabIndex = 99;
- this.pictureBox15.TabStop = false;
- //
- // groupBox_TDD
- //
- this.groupBox_TDD.Controls.Add(this.label24);
- this.groupBox_TDD.Controls.Add(this.label22);
- this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_OFF);
- this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_ON);
- this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_ON);
- this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_OFF);
- this.groupBox_TDD.Location = new System.Drawing.Point(12, 555);
- this.groupBox_TDD.Name = "groupBox_TDD";
- this.groupBox_TDD.Size = new System.Drawing.Size(225, 65);
- this.groupBox_TDD.TabIndex = 105;
- this.groupBox_TDD.TabStop = false;
- this.groupBox_TDD.Text = "Tdd";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(144, 13);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(74, 12);
- this.label24.TabIndex = 103;
- this.label24.Text = "T-SYNC_UL";
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Location = new System.Drawing.Point(19, 13);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(74, 12);
- this.label22.TabIndex = 103;
- this.label22.Text = "T-SYNC_DL";
- //
- // pictureBox_TDD_T_SYNC_DL_OFF
- //
- this.pictureBox_TDD_T_SYNC_DL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
- this.pictureBox_TDD_T_SYNC_DL_OFF.Location = new System.Drawing.Point(32, 25);
- this.pictureBox_TDD_T_SYNC_DL_OFF.Name = "pictureBox_TDD_T_SYNC_DL_OFF";
- this.pictureBox_TDD_T_SYNC_DL_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_TDD_T_SYNC_DL_OFF.TabIndex = 99;
- this.pictureBox_TDD_T_SYNC_DL_OFF.TabStop = false;
- this.pictureBox_TDD_T_SYNC_DL_OFF.Tag = "1";
- this.pictureBox_TDD_T_SYNC_DL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
- //
- // pictureBox_TDD_T_SYNC_UL_OFF
- //
- this.pictureBox_TDD_T_SYNC_UL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
- this.pictureBox_TDD_T_SYNC_UL_OFF.Location = new System.Drawing.Point(158, 25);
- this.pictureBox_TDD_T_SYNC_UL_OFF.Name = "pictureBox_TDD_T_SYNC_UL_OFF";
- this.pictureBox_TDD_T_SYNC_UL_OFF.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_TDD_T_SYNC_UL_OFF.TabIndex = 100;
- this.pictureBox_TDD_T_SYNC_UL_OFF.TabStop = false;
- this.pictureBox_TDD_T_SYNC_UL_OFF.Tag = "0";
- this.pictureBox_TDD_T_SYNC_UL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
- //
- // pictureBox_TDD_T_SYNC_DL_ON
- //
- this.pictureBox_TDD_T_SYNC_DL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
- this.pictureBox_TDD_T_SYNC_DL_ON.Location = new System.Drawing.Point(32, 25);
- this.pictureBox_TDD_T_SYNC_DL_ON.Name = "pictureBox_TDD_T_SYNC_DL_ON";
- this.pictureBox_TDD_T_SYNC_DL_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_TDD_T_SYNC_DL_ON.TabIndex = 96;
- this.pictureBox_TDD_T_SYNC_DL_ON.TabStop = false;
- this.pictureBox_TDD_T_SYNC_DL_ON.Tag = "0";
- this.pictureBox_TDD_T_SYNC_DL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
- //
- // pictureBox_TDD_T_SYNC_UL_ON
- //
- this.pictureBox_TDD_T_SYNC_UL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
- this.pictureBox_TDD_T_SYNC_UL_ON.Location = new System.Drawing.Point(158, 25);
- this.pictureBox_TDD_T_SYNC_UL_ON.Name = "pictureBox_TDD_T_SYNC_UL_ON";
- this.pictureBox_TDD_T_SYNC_UL_ON.Size = new System.Drawing.Size(38, 36);
- this.pictureBox_TDD_T_SYNC_UL_ON.TabIndex = 96;
- this.pictureBox_TDD_T_SYNC_UL_ON.TabStop = false;
- this.pictureBox_TDD_T_SYNC_UL_ON.Tag = "1";
- this.pictureBox_TDD_T_SYNC_UL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
- //
- // Main_Form
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1185, 673);
- this.Controls.Add(this.groupBox_TDD);
- this.Controls.Add(this.groupBox12);
- this.Controls.Add(this.groupBox10);
- this.Controls.Add(this.button_Set);
- this.Controls.Add(this.pictureBox15);
- this.Controls.Add(this.label80);
- this.Controls.Add(this.label79);
- this.Controls.Add(this.groupBox17);
- this.Controls.Add(this.groupBox8);
- this.Controls.Add(this.groupBox3);
- this.Controls.Add(this.groupBox9);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "Main_Form";
- this.Text = "PATH_EN_1.8G_DL";
- this.Load += new System.EventHandler(this.Main_Form_Load);
- this.groupBox9.ResumeLayout(false);
- this.groupBox9.PerformLayout();
- this.groupBox3.ResumeLayout(false);
- this.groupBox3.PerformLayout();
- this.groupBox8.ResumeLayout(false);
- this.groupBox6.ResumeLayout(false);
- this.groupBox6.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).EndInit();
- this.groupBox7.ResumeLayout(false);
- this.groupBox7.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_UL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_DL)).EndInit();
- this.groupBox5.ResumeLayout(false);
- this.groupBox5.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL1)).EndInit();
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL1)).EndInit();
- this.groupBox4.ResumeLayout(false);
- this.groupBox4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL1)).EndInit();
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL1)).EndInit();
- this.groupBox17.ResumeLayout(false);
- this.groupBox17.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_OFF)).EndInit();
- this.groupBox10.ResumeLayout(false);
- this.groupBox11.ResumeLayout(false);
- this.groupBox11.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_UL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_DL)).EndInit();
- this.groupBox15.ResumeLayout(false);
- this.groupBox15.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_UL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_DL)).EndInit();
- this.groupBox16.ResumeLayout(false);
- this.groupBox16.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_UL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_DL)).EndInit();
- this.groupBox12.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
- this.groupBox_TDD.ResumeLayout(false);
- this.groupBox_TDD.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.GroupBox groupBox9;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button_terminal;
- private System.Windows.Forms.CheckBox Ascii_checkBox;
- private System.Windows.Forms.Label cmCom_Port;
- private System.Windows.Forms.Button button_PortOpen;
- private System.Windows.Forms.Label cmBaudRate;
- private System.Windows.Forms.ComboBox comboBox_baudrate;
- public System.Windows.Forms.ComboBox comboBox_Port;
- private System.Windows.Forms.GroupBox groupBox3;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label68;
- private System.Windows.Forms.Label label56;
- private System.Windows.Forms.Label label67;
- private System.Windows.Forms.Label label66;
- private System.Windows.Forms.Label label55;
- private System.Windows.Forms.Label label65;
- private System.Windows.Forms.Label label64;
- private System.Windows.Forms.Label label54;
- private System.Windows.Forms.Label label63;
- private System.Windows.Forms.Label label62;
- private System.Windows.Forms.Label label53;
- private System.Windows.Forms.Label label61;
- private System.Windows.Forms.Label label60;
- private System.Windows.Forms.Label label52;
- private System.Windows.Forms.Label label59;
- private System.Windows.Forms.Label label58;
- private System.Windows.Forms.Label label51;
- private System.Windows.Forms.Label label57;
- private System.Windows.Forms.GroupBox groupBox8;
- private System.Windows.Forms.GroupBox groupBox7;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.GroupBox groupBox5;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.GroupBox groupBox4;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.GroupBox groupBox17;
- private System.Windows.Forms.PictureBox pictureBox_G_TX;
- private System.Windows.Forms.Label label78;
- private System.Windows.Forms.Label label77;
- private System.Windows.Forms.Label label76;
- private System.Windows.Forms.Label label75;
- private System.Windows.Forms.Label label74;
- private System.Windows.Forms.Label label73;
- private System.Windows.Forms.Label label72;
- private System.Windows.Forms.Label label71;
- private System.Windows.Forms.Label label70;
- private System.Windows.Forms.Label label69;
- private System.Windows.Forms.PictureBox pictureBox_R_RX;
- private System.Windows.Forms.Label label79;
- private System.Windows.Forms.PictureBox pictureBox15;
- private System.Windows.Forms.Label label80;
- private System.Windows.Forms.Button button_Set;
- private System.Windows.Forms.GroupBox groupBox10;
- private System.Windows.Forms.GroupBox groupBox11;
- private System.Windows.Forms.Label label32;
- private System.Windows.Forms.Label label33;
- private System.Windows.Forms.GroupBox groupBox15;
- private System.Windows.Forms.Label label47;
- private System.Windows.Forms.Label label48;
- private System.Windows.Forms.GroupBox groupBox16;
- private System.Windows.Forms.Label label49;
- private System.Windows.Forms.Label label50;
- private System.Windows.Forms.GroupBox groupBox6;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.Timer timer;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_DL1;
- private System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_DL_ON;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_UL;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_DL;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL4;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL2;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL3;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL1;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL4;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL2;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL3;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL1;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_DL2;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_DL1;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_DL2;
- public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_UL;
- public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_DL;
- public System.Windows.Forms.NumericUpDown numericUpDown_PLL_2_1G_UL;
- public System.Windows.Forms.NumericUpDown numericUpDown_PLL_2_1G_DL;
- public System.Windows.Forms.NumericUpDown numericUpDown_PLL_1_8G_UL;
- public System.Windows.Forms.NumericUpDown numericUpDown_PLL_1_8G_DL;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM3;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM2;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM1;
- public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_UL_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_DL_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_UL_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_DL_OFF;
- public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_ON;
- public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_ON;
- public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_ON;
- public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_ON;
- public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_ON;
- public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_ON;
- public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_UL_ON;
- public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_DL_ON;
- public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_UL_ON;
- private System.Windows.Forms.GroupBox groupBox12;
- private System.Windows.Forms.PictureBox pictureBox_R_TX;
- private System.Windows.Forms.PictureBox pictureBox_G_RX;
- private System.Windows.Forms.GroupBox groupBox_TDD;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_OFF;
- private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_OFF;
- private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_ON;
- private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_ON;
- }
- }
|