Form1.Designer.cs 255 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764
  1. namespace MOTINOVA_MC_Test
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. this.groupBox1 = new System.Windows.Forms.GroupBox();
  31. this.label58 = new System.Windows.Forms.Label();
  32. this.button_RefreshPort = new System.Windows.Forms.Button();
  33. this.button_ComOpen = new System.Windows.Forms.Button();
  34. this.textBox_RevCnt = new System.Windows.Forms.TextBox();
  35. this.comboBox_Baudrate = new System.Windows.Forms.ComboBox();
  36. this.comboBox_ComIndex = new System.Windows.Forms.ComboBox();
  37. this.label2 = new System.Windows.Forms.Label();
  38. this.label1 = new System.Windows.Forms.Label();
  39. this.serialPort1 = new System.IO.Ports.SerialPort(this.components);
  40. this.groupBox2 = new System.Windows.Forms.GroupBox();
  41. this.button_ReadStartData = new System.Windows.Forms.Button();
  42. this.button_Write_Torque_Start = new System.Windows.Forms.Button();
  43. this.textBox_Torque_Stdev = new System.Windows.Forms.TextBox();
  44. this.textBox_TorqueData = new System.Windows.Forms.TextBox();
  45. this.textBox_Torque_Start = new System.Windows.Forms.TextBox();
  46. this.label110 = new System.Windows.Forms.Label();
  47. this.label57 = new System.Windows.Forms.Label();
  48. this.label9 = new System.Windows.Forms.Label();
  49. this.label111 = new System.Windows.Forms.Label();
  50. this.checkBox_Savedata = new System.Windows.Forms.CheckBox();
  51. this.checkBox_ReadTorqueData = new System.Windows.Forms.CheckBox();
  52. this.label4 = new System.Windows.Forms.Label();
  53. this.groupBox3 = new System.Windows.Forms.GroupBox();
  54. this.label114 = new System.Windows.Forms.Label();
  55. this.label46 = new System.Windows.Forms.Label();
  56. this.label56 = new System.Windows.Forms.Label();
  57. this.label55 = new System.Windows.Forms.Label();
  58. this.label113 = new System.Windows.Forms.Label();
  59. this.label43 = new System.Windows.Forms.Label();
  60. this.label76 = new System.Windows.Forms.Label();
  61. this.label42 = new System.Windows.Forms.Label();
  62. this.label40 = new System.Windows.Forms.Label();
  63. this.label39 = new System.Windows.Forms.Label();
  64. this.label44 = new System.Windows.Forms.Label();
  65. this.label70 = new System.Windows.Forms.Label();
  66. this.label48 = new System.Windows.Forms.Label();
  67. this.label54 = new System.Windows.Forms.Label();
  68. this.label37 = new System.Windows.Forms.Label();
  69. this.label41 = new System.Windows.Forms.Label();
  70. this.label36 = new System.Windows.Forms.Label();
  71. this.label38 = new System.Windows.Forms.Label();
  72. this.label22 = new System.Windows.Forms.Label();
  73. this.label112 = new System.Windows.Forms.Label();
  74. this.label35 = new System.Windows.Forms.Label();
  75. this.label23 = new System.Windows.Forms.Label();
  76. this.label24 = new System.Windows.Forms.Label();
  77. this.textBox_RunInfo_BikeSpeed = new System.Windows.Forms.TextBox();
  78. this.textBox_RunInfo_OutSpeed = new System.Windows.Forms.TextBox();
  79. this.textBox_RunInfo_Power = new System.Windows.Forms.TextBox();
  80. this.textBox_Sensor1 = new System.Windows.Forms.TextBox();
  81. this.textBox_RunInfo_Voltage = new System.Windows.Forms.TextBox();
  82. this.textBox_RunInfo_Current = new System.Windows.Forms.TextBox();
  83. this.textBox_RunInfo_Cadence = new System.Windows.Forms.TextBox();
  84. this.textBox_RunInfo_Torque = new System.Windows.Forms.TextBox();
  85. this.textBox_RunInfo_Dir = new System.Windows.Forms.TextBox();
  86. this.textBox_Sensor2 = new System.Windows.Forms.TextBox();
  87. this.textBox_RunInfo_Gear = new System.Windows.Forms.TextBox();
  88. this.textBox_RunInfo_Light = new System.Windows.Forms.TextBox();
  89. this.textBox_RunInfo_SOC = new System.Windows.Forms.TextBox();
  90. this.textBox_RunInfo_Range = new System.Windows.Forms.TextBox();
  91. this.textBox_RunInfo_ODO_Km = new System.Windows.Forms.TextBox();
  92. this.textBox_Sensor3 = new System.Windows.Forms.TextBox();
  93. this.textBox_RunInfo_PowerAvg = new System.Windows.Forms.TextBox();
  94. this.textBox_RunInfo_T_PCB = new System.Windows.Forms.TextBox();
  95. this.textBox_RunInfo_T_Roil = new System.Windows.Forms.TextBox();
  96. this.textBox_RunInfo_T_MCU = new System.Windows.Forms.TextBox();
  97. this.textBox_RunInfo_Distance = new System.Windows.Forms.TextBox();
  98. this.textBox_RunInfo_Time = new System.Windows.Forms.TextBox();
  99. this.textBox_RunInfo_ErrorCode = new System.Windows.Forms.TextBox();
  100. this.groupBox5 = new System.Windows.Forms.GroupBox();
  101. this.radioButton_WorkMode_Confg = new System.Windows.Forms.RadioButton();
  102. this.radioButton_WorkMode_Run = new System.Windows.Forms.RadioButton();
  103. this.groupBox6 = new System.Windows.Forms.GroupBox();
  104. this.checkBox_AutoSend = new System.Windows.Forms.CheckBox();
  105. this.radioButton_Gear_WALK = new System.Windows.Forms.RadioButton();
  106. this.radioButton_Gear_SMART = new System.Windows.Forms.RadioButton();
  107. this.radioButton_Gear_TURBO = new System.Windows.Forms.RadioButton();
  108. this.radioButton_Gear_SPORT = new System.Windows.Forms.RadioButton();
  109. this.radioButton_Gear_NORM = new System.Windows.Forms.RadioButton();
  110. this.radioButton_Gear_ECO = new System.Windows.Forms.RadioButton();
  111. this.radioButton_Gear_OFF = new System.Windows.Forms.RadioButton();
  112. this.groupBox7 = new System.Windows.Forms.GroupBox();
  113. this.radioButton_Light_OFF = new System.Windows.Forms.RadioButton();
  114. this.radioButton_Light_ON = new System.Windows.Forms.RadioButton();
  115. this.groupBox8 = new System.Windows.Forms.GroupBox();
  116. this.button_Reset = new System.Windows.Forms.Button();
  117. this.button_LogClear = new System.Windows.Forms.Button();
  118. this.button_Recovery = new System.Windows.Forms.Button();
  119. this.button_ClearData = new System.Windows.Forms.Button();
  120. this.groupBox9 = new System.Windows.Forms.GroupBox();
  121. this.button_Write_Mode = new System.Windows.Forms.Button();
  122. this.button_Read_VerInfo = new System.Windows.Forms.Button();
  123. this.button_Write_SN = new System.Windows.Forms.Button();
  124. this.label109 = new System.Windows.Forms.Label();
  125. this.label134 = new System.Windows.Forms.Label();
  126. this.label120 = new System.Windows.Forms.Label();
  127. this.label8 = new System.Windows.Forms.Label();
  128. this.textBox_BuildTime = new System.Windows.Forms.TextBox();
  129. this.label7 = new System.Windows.Forms.Label();
  130. this.textBox_Firmware_Special = new System.Windows.Forms.TextBox();
  131. this.textBox_TE_FW = new System.Windows.Forms.TextBox();
  132. this.textBox_FW = new System.Windows.Forms.TextBox();
  133. this.textBox_HW = new System.Windows.Forms.TextBox();
  134. this.textBox_SN = new System.Windows.Forms.TextBox();
  135. this.textBox_Mode = new System.Windows.Forms.TextBox();
  136. this.label6 = new System.Windows.Forms.Label();
  137. this.groupBox10 = new System.Windows.Forms.GroupBox();
  138. this.comboBox_SpeedSing = new System.Windows.Forms.ComboBox();
  139. this.comboBox_SerNum = new System.Windows.Forms.ComboBox();
  140. this.comboBox_NoWatch = new System.Windows.Forms.ComboBox();
  141. this.comboBox_DownDec = new System.Windows.Forms.ComboBox();
  142. this.comboBox_StartMode = new System.Windows.Forms.ComboBox();
  143. this.button_Write_Config = new System.Windows.Forms.Button();
  144. this.button_Read_Config = new System.Windows.Forms.Button();
  145. this.label27 = new System.Windows.Forms.Label();
  146. this.label26 = new System.Windows.Forms.Label();
  147. this.textBox_Config_SPORT_K = new System.Windows.Forms.TextBox();
  148. this.textBox_Config_SMART_K = new System.Windows.Forms.TextBox();
  149. this.textBox_Config_NORM_Acc = new System.Windows.Forms.TextBox();
  150. this.textBox_Config_TURBO_Acc = new System.Windows.Forms.TextBox();
  151. this.textBox_Config_TURBO_K = new System.Windows.Forms.TextBox();
  152. this.textBox_Config_SPORT_Acc = new System.Windows.Forms.TextBox();
  153. this.textBox_Config_SMART_Acc = new System.Windows.Forms.TextBox();
  154. this.label25 = new System.Windows.Forms.Label();
  155. this.textBox_Config_NORM_K = new System.Windows.Forms.TextBox();
  156. this.textBox_Config_ECO_Acc = new System.Windows.Forms.TextBox();
  157. this.label31 = new System.Windows.Forms.Label();
  158. this.label30 = new System.Windows.Forms.Label();
  159. this.label34 = new System.Windows.Forms.Label();
  160. this.textBox_Config_GasMode = new System.Windows.Forms.TextBox();
  161. this.textBox_Config_ECO_K = new System.Windows.Forms.TextBox();
  162. this.textBox_Config_WalkMotorSpeed = new System.Windows.Forms.TextBox();
  163. this.textBox_Config_WheelAdj = new System.Windows.Forms.TextBox();
  164. this.textBox_Config_WalkSpeedLimit = new System.Windows.Forms.TextBox();
  165. this.textBox_Config_UV_Protect = new System.Windows.Forms.TextBox();
  166. this.label29 = new System.Windows.Forms.Label();
  167. this.label33 = new System.Windows.Forms.Label();
  168. this.textBox_Config_CadenceNum = new System.Windows.Forms.TextBox();
  169. this.textBox_Config_WheelSize = new System.Windows.Forms.TextBox();
  170. this.textBox_Config_MaxSpeed = new System.Windows.Forms.TextBox();
  171. this.label28 = new System.Windows.Forms.Label();
  172. this.label32 = new System.Windows.Forms.Label();
  173. this.textBox_Config_T_Alarm = new System.Windows.Forms.TextBox();
  174. this.textBox_Config_StopTime = new System.Windows.Forms.TextBox();
  175. this.label126 = new System.Windows.Forms.Label();
  176. this.label63 = new System.Windows.Forms.Label();
  177. this.label62 = new System.Windows.Forms.Label();
  178. this.label125 = new System.Windows.Forms.Label();
  179. this.label124 = new System.Windows.Forms.Label();
  180. this.label21 = new System.Windows.Forms.Label();
  181. this.textBox_Config_MaxCurrent = new System.Windows.Forms.TextBox();
  182. this.textBox_Config_SpeedNum = new System.Windows.Forms.TextBox();
  183. this.label61 = new System.Windows.Forms.Label();
  184. this.label20 = new System.Windows.Forms.Label();
  185. this.textBox_Config_Teeth_B = new System.Windows.Forms.TextBox();
  186. this.textBox_Config_T_Protect = new System.Windows.Forms.TextBox();
  187. this.label60 = new System.Windows.Forms.Label();
  188. this.label19 = new System.Windows.Forms.Label();
  189. this.label11 = new System.Windows.Forms.Label();
  190. this.label18 = new System.Windows.Forms.Label();
  191. this.label13 = new System.Windows.Forms.Label();
  192. this.label17 = new System.Windows.Forms.Label();
  193. this.label14 = new System.Windows.Forms.Label();
  194. this.label16 = new System.Windows.Forms.Label();
  195. this.label15 = new System.Windows.Forms.Label();
  196. this.label12 = new System.Windows.Forms.Label();
  197. this.label59 = new System.Windows.Forms.Label();
  198. this.label10 = new System.Windows.Forms.Label();
  199. this.textBox_Config_Teeth_F = new System.Windows.Forms.TextBox();
  200. this.groupBox11 = new System.Windows.Forms.GroupBox();
  201. this.button_Write_MotorConfig = new System.Windows.Forms.Button();
  202. this.button_Read_MortoConfig = new System.Windows.Forms.Button();
  203. this.textBox_Motor_Power = new System.Windows.Forms.TextBox();
  204. this.textBox_Motor_R = new System.Windows.Forms.TextBox();
  205. this.textBox_Motor_Speed = new System.Windows.Forms.TextBox();
  206. this.textBox_Motor_Voltage = new System.Windows.Forms.TextBox();
  207. this.textBox_Motor_E = new System.Windows.Forms.TextBox();
  208. this.textBox_Motor_Lq = new System.Windows.Forms.TextBox();
  209. this.label45 = new System.Windows.Forms.Label();
  210. this.textBox_Motor_Ld = new System.Windows.Forms.TextBox();
  211. this.label53 = new System.Windows.Forms.Label();
  212. this.label47 = new System.Windows.Forms.Label();
  213. this.label51 = new System.Windows.Forms.Label();
  214. this.label52 = new System.Windows.Forms.Label();
  215. this.label49 = new System.Windows.Forms.Label();
  216. this.label50 = new System.Windows.Forms.Label();
  217. this.timer1 = new System.Windows.Forms.Timer(this.components);
  218. this.groupBox4 = new System.Windows.Forms.GroupBox();
  219. this.textBox_Config_SpeedlimitAdj = new System.Windows.Forms.TextBox();
  220. this.label133 = new System.Windows.Forms.Label();
  221. this.textBox_Config_SpeedlimitStop = new System.Windows.Forms.TextBox();
  222. this.label128 = new System.Windows.Forms.Label();
  223. this.textBox_Config_SpeedlimitStart = new System.Windows.Forms.TextBox();
  224. this.label129 = new System.Windows.Forms.Label();
  225. this.textBox_Config_Period = new System.Windows.Forms.TextBox();
  226. this.label130 = new System.Windows.Forms.Label();
  227. this.textBox_Config_Pulse = new System.Windows.Forms.TextBox();
  228. this.label131 = new System.Windows.Forms.Label();
  229. this.textBox_Config_SpeedAlarm = new System.Windows.Forms.TextBox();
  230. this.label132 = new System.Windows.Forms.Label();
  231. this.comboBox_TailLightVol = new System.Windows.Forms.ComboBox();
  232. this.comboBox_AttiSensor = new System.Windows.Forms.ComboBox();
  233. this.comboBox_FrontLigthVol = new System.Windows.Forms.ComboBox();
  234. this.comboBox_FrontLightMode = new System.Windows.Forms.ComboBox();
  235. this.comboBox_TailLightMode = new System.Windows.Forms.ComboBox();
  236. this.button_Write_Config_Ext = new System.Windows.Forms.Button();
  237. this.button_Read_Config_Ext = new System.Windows.Forms.Button();
  238. this.label123 = new System.Windows.Forms.Label();
  239. this.label66 = new System.Windows.Forms.Label();
  240. this.label122 = new System.Windows.Forms.Label();
  241. this.label65 = new System.Windows.Forms.Label();
  242. this.textBox_Config_Angle_Roll = new System.Windows.Forms.TextBox();
  243. this.label135 = new System.Windows.Forms.Label();
  244. this.label121 = new System.Windows.Forms.Label();
  245. this.label64 = new System.Windows.Forms.Label();
  246. this.textBox_Config_Angle_Pitch = new System.Windows.Forms.TextBox();
  247. this.groupBox12 = new System.Windows.Forms.GroupBox();
  248. this.checkBox_ReadRideInfo = new System.Windows.Forms.CheckBox();
  249. this.button_Read_RidedInfo = new System.Windows.Forms.Button();
  250. this.label71 = new System.Windows.Forms.Label();
  251. this.label67 = new System.Windows.Forms.Label();
  252. this.textBox_RideInfo_Trip_Time = new System.Windows.Forms.TextBox();
  253. this.textBox_RideInfo_Trip_Km = new System.Windows.Forms.TextBox();
  254. this.label68 = new System.Windows.Forms.Label();
  255. this.textBox_RideInfo_ODO_Time = new System.Windows.Forms.TextBox();
  256. this.label69 = new System.Windows.Forms.Label();
  257. this.textBox_RideInfo_ODO_Km = new System.Windows.Forms.TextBox();
  258. this.groupBox13 = new System.Windows.Forms.GroupBox();
  259. this.checkBox_ReadAttitudeAngleAutoSend = new System.Windows.Forms.CheckBox();
  260. this.button_Read_AttitudeAngle = new System.Windows.Forms.Button();
  261. this.label72 = new System.Windows.Forms.Label();
  262. this.label73 = new System.Windows.Forms.Label();
  263. this.textBox_Attitude_RollAngle_Rel = new System.Windows.Forms.TextBox();
  264. this.textBox_Attitude_RollAngle_Abs = new System.Windows.Forms.TextBox();
  265. this.label74 = new System.Windows.Forms.Label();
  266. this.textBox_Attitude_PitchAngle_Rel = new System.Windows.Forms.TextBox();
  267. this.label75 = new System.Windows.Forms.Label();
  268. this.textBox_Attitude_PitchAngle_Abs = new System.Windows.Forms.TextBox();
  269. this.label78 = new System.Windows.Forms.Label();
  270. this.label_BiuldTime = new System.Windows.Forms.Label();
  271. this.label77 = new System.Windows.Forms.Label();
  272. this.groupBox14 = new System.Windows.Forms.GroupBox();
  273. this.label99 = new System.Windows.Forms.Label();
  274. this.button_ReadErrorLog = new System.Windows.Forms.Button();
  275. this.button_ReadRunLog = new System.Windows.Forms.Button();
  276. this.label96 = new System.Windows.Forms.Label();
  277. this.textBox_Runlog1_MCU_MIN = new System.Windows.Forms.TextBox();
  278. this.textBox_Runlog1_Coil_MIN = new System.Windows.Forms.TextBox();
  279. this.label139 = new System.Windows.Forms.Label();
  280. this.textBox_ODO_Time = new System.Windows.Forms.TextBox();
  281. this.label98 = new System.Windows.Forms.Label();
  282. this.label136 = new System.Windows.Forms.Label();
  283. this.textBox_Runlog1_MCU_MAX = new System.Windows.Forms.TextBox();
  284. this.textBox_ODO_Km = new System.Windows.Forms.TextBox();
  285. this.label97 = new System.Windows.Forms.Label();
  286. this.textBox_Runlog1_Coil_MAX = new System.Windows.Forms.TextBox();
  287. this.label95 = new System.Windows.Forms.Label();
  288. this.textBox_Runlog1_PCB_MIN = new System.Windows.Forms.TextBox();
  289. this.label94 = new System.Windows.Forms.Label();
  290. this.textBox_Runlog1_PCB_MAX = new System.Windows.Forms.TextBox();
  291. this.label93 = new System.Windows.Forms.Label();
  292. this.textBox_Runlog1_PBUFault = new System.Windows.Forms.TextBox();
  293. this.label92 = new System.Windows.Forms.Label();
  294. this.textBox_Runlog1_HMIFault = new System.Windows.Forms.TextBox();
  295. this.label91 = new System.Windows.Forms.Label();
  296. this.textBox_Runlog1_BMSFault = new System.Windows.Forms.TextBox();
  297. this.label90 = new System.Windows.Forms.Label();
  298. this.textBox_Runlog1_NTCFault = new System.Windows.Forms.TextBox();
  299. this.label89 = new System.Windows.Forms.Label();
  300. this.textBox_Runlog1_Phase = new System.Windows.Forms.TextBox();
  301. this.label88 = new System.Windows.Forms.Label();
  302. this.textBox_Runlog1_HallFault = new System.Windows.Forms.TextBox();
  303. this.label87 = new System.Windows.Forms.Label();
  304. this.textBox_Runlog1_TQSFault = new System.Windows.Forms.TextBox();
  305. this.label86 = new System.Windows.Forms.Label();
  306. this.textBox_Runlog1_SPSFault = new System.Windows.Forms.TextBox();
  307. this.label85 = new System.Windows.Forms.Label();
  308. this.textBox_Runlog1_OT = new System.Windows.Forms.TextBox();
  309. this.label84 = new System.Windows.Forms.Label();
  310. this.textBox_Runlog1_Lock = new System.Windows.Forms.TextBox();
  311. this.label83 = new System.Windows.Forms.Label();
  312. this.textBox_Runlog1_OV = new System.Windows.Forms.TextBox();
  313. this.label82 = new System.Windows.Forms.Label();
  314. this.textBox_Runlog1_UV = new System.Windows.Forms.TextBox();
  315. this.label81 = new System.Windows.Forms.Label();
  316. this.textBox_Runlog1_OC = new System.Windows.Forms.TextBox();
  317. this.label80 = new System.Windows.Forms.Label();
  318. this.textBox_Runlog1_RunTime = new System.Windows.Forms.TextBox();
  319. this.label107 = new System.Windows.Forms.Label();
  320. this.textBox_Runlog2_TE_CircuitFault = new System.Windows.Forms.TextBox();
  321. this.label106 = new System.Windows.Forms.Label();
  322. this.textBox_Runlog2_TE_MCUFault = new System.Windows.Forms.TextBox();
  323. this.label105 = new System.Windows.Forms.Label();
  324. this.textBox_Runlog2_CircuitFault = new System.Windows.Forms.TextBox();
  325. this.label104 = new System.Windows.Forms.Label();
  326. this.textBox_Runlog2_VolFault = new System.Windows.Forms.TextBox();
  327. this.label103 = new System.Windows.Forms.Label();
  328. this.textBox_Runlog2_MOS_SC = new System.Windows.Forms.TextBox();
  329. this.label102 = new System.Windows.Forms.Label();
  330. this.textBox_Runlog2_GasFault = new System.Windows.Forms.TextBox();
  331. this.label101 = new System.Windows.Forms.Label();
  332. this.textBox_Runlog2_CDSFault = new System.Windows.Forms.TextBox();
  333. this.label100 = new System.Windows.Forms.Label();
  334. this.textBox_Runlog2_MCUFault = new System.Windows.Forms.TextBox();
  335. this.label79 = new System.Windows.Forms.Label();
  336. this.textBox_Runlog1_PowerCount = new System.Windows.Forms.TextBox();
  337. this.label108 = new System.Windows.Forms.Label();
  338. this.label_DateTime = new System.Windows.Forms.Label();
  339. this.timer2 = new System.Windows.Forms.Timer(this.components);
  340. this.button_DataExport = new System.Windows.Forms.Button();
  341. this.groupBox15 = new System.Windows.Forms.GroupBox();
  342. this.groupBox16 = new System.Windows.Forms.GroupBox();
  343. this.trackBar_MotorSpeedSet = new System.Windows.Forms.TrackBar();
  344. this.label_MotorSpeedSet = new System.Windows.Forms.Label();
  345. this.groupBox17 = new System.Windows.Forms.GroupBox();
  346. this.checkBox_Sensor3 = new System.Windows.Forms.CheckBox();
  347. this.checkBox_Sensor2 = new System.Windows.Forms.CheckBox();
  348. this.checkBox_Sensor1 = new System.Windows.Forms.CheckBox();
  349. this.radioButton_ThreeSensor = new System.Windows.Forms.RadioButton();
  350. this.radioButton_SingleSensor = new System.Windows.Forms.RadioButton();
  351. this.label115 = new System.Windows.Forms.Label();
  352. this.button_WriteK = new System.Windows.Forms.Button();
  353. this.button_ReadZero = new System.Windows.Forms.Button();
  354. this.label5 = new System.Windows.Forms.Label();
  355. this.textBox_Sensor3_K = new System.Windows.Forms.TextBox();
  356. this.textBox_Sensor2_K = new System.Windows.Forms.TextBox();
  357. this.label119 = new System.Windows.Forms.Label();
  358. this.label118 = new System.Windows.Forms.Label();
  359. this.label117 = new System.Windows.Forms.Label();
  360. this.label116 = new System.Windows.Forms.Label();
  361. this.textBox_Sensor1_K = new System.Windows.Forms.TextBox();
  362. this.textBox_Sensor3_Zero = new System.Windows.Forms.TextBox();
  363. this.textBox_Sensor2_Zero = new System.Windows.Forms.TextBox();
  364. this.textBox_Sensor1_Zero = new System.Windows.Forms.TextBox();
  365. this.textBox_Sensor3_Std = new System.Windows.Forms.TextBox();
  366. this.textBox_Sensor2_Std = new System.Windows.Forms.TextBox();
  367. this.textBox_Sensor1_Std = new System.Windows.Forms.TextBox();
  368. this.textBox_Sensor3_Avg = new System.Windows.Forms.TextBox();
  369. this.label3 = new System.Windows.Forms.Label();
  370. this.textBox_Sensor2_Avg = new System.Windows.Forms.TextBox();
  371. this.textBox_Sensor1_Avg = new System.Windows.Forms.TextBox();
  372. this.label127 = new System.Windows.Forms.Label();
  373. this.label1_Welcom = new System.Windows.Forms.Label();
  374. this.button_ReadAll = new System.Windows.Forms.Button();
  375. this.groupBox18 = new System.Windows.Forms.GroupBox();
  376. this.richTextBox_DebugInfo = new System.Windows.Forms.RichTextBox();
  377. this.radioButton_DebugHex = new System.Windows.Forms.RadioButton();
  378. this.radioButton_DebugDec = new System.Windows.Forms.RadioButton();
  379. this.checkBox_DebugReset = new System.Windows.Forms.CheckBox();
  380. this.checkBox_DebugAuto = new System.Windows.Forms.CheckBox();
  381. this.button_DebugRead = new System.Windows.Forms.Button();
  382. this.textBox_DebugAddrEnd = new System.Windows.Forms.TextBox();
  383. this.textBox_DebugAddrBegin = new System.Windows.Forms.TextBox();
  384. this.label137 = new System.Windows.Forms.Label();
  385. this.label138 = new System.Windows.Forms.Label();
  386. this.groupBox1.SuspendLayout();
  387. this.groupBox2.SuspendLayout();
  388. this.groupBox3.SuspendLayout();
  389. this.groupBox5.SuspendLayout();
  390. this.groupBox6.SuspendLayout();
  391. this.groupBox7.SuspendLayout();
  392. this.groupBox8.SuspendLayout();
  393. this.groupBox9.SuspendLayout();
  394. this.groupBox10.SuspendLayout();
  395. this.groupBox11.SuspendLayout();
  396. this.groupBox4.SuspendLayout();
  397. this.groupBox12.SuspendLayout();
  398. this.groupBox13.SuspendLayout();
  399. this.groupBox14.SuspendLayout();
  400. this.groupBox15.SuspendLayout();
  401. this.groupBox16.SuspendLayout();
  402. ((System.ComponentModel.ISupportInitialize)(this.trackBar_MotorSpeedSet)).BeginInit();
  403. this.groupBox17.SuspendLayout();
  404. this.groupBox18.SuspendLayout();
  405. this.SuspendLayout();
  406. //
  407. // groupBox1
  408. //
  409. this.groupBox1.Controls.Add(this.label58);
  410. this.groupBox1.Controls.Add(this.button_RefreshPort);
  411. this.groupBox1.Controls.Add(this.button_ComOpen);
  412. this.groupBox1.Controls.Add(this.textBox_RevCnt);
  413. this.groupBox1.Controls.Add(this.comboBox_Baudrate);
  414. this.groupBox1.Controls.Add(this.comboBox_ComIndex);
  415. this.groupBox1.Controls.Add(this.label2);
  416. this.groupBox1.Controls.Add(this.label1);
  417. this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  418. this.groupBox1.Location = new System.Drawing.Point(7, 12);
  419. this.groupBox1.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  420. this.groupBox1.Name = "groupBox1";
  421. this.groupBox1.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  422. this.groupBox1.Size = new System.Drawing.Size(240, 119);
  423. this.groupBox1.TabIndex = 0;
  424. this.groupBox1.TabStop = false;
  425. this.groupBox1.Text = "串口设置";
  426. //
  427. // label58
  428. //
  429. this.label58.AutoSize = true;
  430. this.label58.Location = new System.Drawing.Point(10, 89);
  431. this.label58.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  432. this.label58.Name = "label58";
  433. this.label58.Size = new System.Drawing.Size(37, 20);
  434. this.label58.TabIndex = 10;
  435. this.label58.Text = "计数";
  436. this.label58.Click += new System.EventHandler(this.label58_Click);
  437. //
  438. // button_RefreshPort
  439. //
  440. this.button_RefreshPort.Location = new System.Drawing.Point(158, 26);
  441. this.button_RefreshPort.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  442. this.button_RefreshPort.Name = "button_RefreshPort";
  443. this.button_RefreshPort.Size = new System.Drawing.Size(72, 28);
  444. this.button_RefreshPort.TabIndex = 1;
  445. this.button_RefreshPort.Text = "刷新";
  446. this.button_RefreshPort.UseVisualStyleBackColor = true;
  447. this.button_RefreshPort.Click += new System.EventHandler(this.button_RefreshPort_Click);
  448. //
  449. // button_ComOpen
  450. //
  451. this.button_ComOpen.Location = new System.Drawing.Point(158, 55);
  452. this.button_ComOpen.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  453. this.button_ComOpen.Name = "button_ComOpen";
  454. this.button_ComOpen.Size = new System.Drawing.Size(72, 56);
  455. this.button_ComOpen.TabIndex = 1;
  456. this.button_ComOpen.Text = "连接";
  457. this.button_ComOpen.UseVisualStyleBackColor = true;
  458. this.button_ComOpen.Click += new System.EventHandler(this.button_ComOpen_Click);
  459. //
  460. // textBox_RevCnt
  461. //
  462. this.textBox_RevCnt.Location = new System.Drawing.Point(75, 85);
  463. this.textBox_RevCnt.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  464. this.textBox_RevCnt.Name = "textBox_RevCnt";
  465. this.textBox_RevCnt.ReadOnly = true;
  466. this.textBox_RevCnt.Size = new System.Drawing.Size(80, 26);
  467. this.textBox_RevCnt.TabIndex = 2;
  468. this.textBox_RevCnt.Text = "0";
  469. //
  470. // comboBox_Baudrate
  471. //
  472. this.comboBox_Baudrate.FormattingEnabled = true;
  473. this.comboBox_Baudrate.Items.AddRange(new object[] {
  474. "2400",
  475. "4800",
  476. "9600",
  477. "19200",
  478. "38400",
  479. "57600",
  480. "115200"});
  481. this.comboBox_Baudrate.Location = new System.Drawing.Point(75, 55);
  482. this.comboBox_Baudrate.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  483. this.comboBox_Baudrate.Name = "comboBox_Baudrate";
  484. this.comboBox_Baudrate.Size = new System.Drawing.Size(80, 28);
  485. this.comboBox_Baudrate.TabIndex = 1;
  486. //
  487. // comboBox_ComIndex
  488. //
  489. this.comboBox_ComIndex.FormattingEnabled = true;
  490. this.comboBox_ComIndex.Location = new System.Drawing.Point(75, 26);
  491. this.comboBox_ComIndex.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  492. this.comboBox_ComIndex.Name = "comboBox_ComIndex";
  493. this.comboBox_ComIndex.Size = new System.Drawing.Size(80, 28);
  494. this.comboBox_ComIndex.TabIndex = 1;
  495. //
  496. // label2
  497. //
  498. this.label2.AutoSize = true;
  499. this.label2.Location = new System.Drawing.Point(10, 60);
  500. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  501. this.label2.Name = "label2";
  502. this.label2.Size = new System.Drawing.Size(51, 20);
  503. this.label2.TabIndex = 1;
  504. this.label2.Text = "波特率";
  505. //
  506. // label1
  507. //
  508. this.label1.AutoSize = true;
  509. this.label1.Location = new System.Drawing.Point(10, 28);
  510. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  511. this.label1.Name = "label1";
  512. this.label1.Size = new System.Drawing.Size(51, 20);
  513. this.label1.TabIndex = 1;
  514. this.label1.Text = "串口号";
  515. //
  516. // serialPort1
  517. //
  518. this.serialPort1.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.serialPort1_DataReceived);
  519. //
  520. // groupBox2
  521. //
  522. this.groupBox2.Controls.Add(this.button_ReadStartData);
  523. this.groupBox2.Controls.Add(this.button_Write_Torque_Start);
  524. this.groupBox2.Controls.Add(this.textBox_Torque_Stdev);
  525. this.groupBox2.Controls.Add(this.textBox_TorqueData);
  526. this.groupBox2.Controls.Add(this.textBox_Torque_Start);
  527. this.groupBox2.Controls.Add(this.label110);
  528. this.groupBox2.Controls.Add(this.label57);
  529. this.groupBox2.Controls.Add(this.label9);
  530. this.groupBox2.Controls.Add(this.label111);
  531. this.groupBox2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  532. this.groupBox2.Location = new System.Drawing.Point(7, 207);
  533. this.groupBox2.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  534. this.groupBox2.Name = "groupBox2";
  535. this.groupBox2.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  536. this.groupBox2.Size = new System.Drawing.Size(240, 133);
  537. this.groupBox2.TabIndex = 1;
  538. this.groupBox2.TabStop = false;
  539. this.groupBox2.Text = "力矩传感器";
  540. this.groupBox2.Visible = false;
  541. //
  542. // button_ReadStartData
  543. //
  544. this.button_ReadStartData.Location = new System.Drawing.Point(159, 69);
  545. this.button_ReadStartData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  546. this.button_ReadStartData.Name = "button_ReadStartData";
  547. this.button_ReadStartData.Size = new System.Drawing.Size(68, 30);
  548. this.button_ReadStartData.TabIndex = 4;
  549. this.button_ReadStartData.Text = "查询";
  550. this.button_ReadStartData.UseVisualStyleBackColor = true;
  551. this.button_ReadStartData.Click += new System.EventHandler(this.button_ReadStartData_Click);
  552. //
  553. // button_Write_Torque_Start
  554. //
  555. this.button_Write_Torque_Start.Location = new System.Drawing.Point(159, 99);
  556. this.button_Write_Torque_Start.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  557. this.button_Write_Torque_Start.Name = "button_Write_Torque_Start";
  558. this.button_Write_Torque_Start.Size = new System.Drawing.Size(68, 30);
  559. this.button_Write_Torque_Start.TabIndex = 4;
  560. this.button_Write_Torque_Start.Text = "写入";
  561. this.button_Write_Torque_Start.UseVisualStyleBackColor = true;
  562. this.button_Write_Torque_Start.Click += new System.EventHandler(this.button_Write_Torque_Start_Click);
  563. //
  564. // textBox_Torque_Stdev
  565. //
  566. this.textBox_Torque_Stdev.Location = new System.Drawing.Point(160, 42);
  567. this.textBox_Torque_Stdev.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  568. this.textBox_Torque_Stdev.Name = "textBox_Torque_Stdev";
  569. this.textBox_Torque_Stdev.ReadOnly = true;
  570. this.textBox_Torque_Stdev.Size = new System.Drawing.Size(66, 26);
  571. this.textBox_Torque_Stdev.TabIndex = 2;
  572. this.textBox_Torque_Stdev.Text = "---";
  573. //
  574. // textBox_TorqueData
  575. //
  576. this.textBox_TorqueData.Location = new System.Drawing.Point(89, 42);
  577. this.textBox_TorqueData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  578. this.textBox_TorqueData.Name = "textBox_TorqueData";
  579. this.textBox_TorqueData.ReadOnly = true;
  580. this.textBox_TorqueData.Size = new System.Drawing.Size(66, 26);
  581. this.textBox_TorqueData.TabIndex = 2;
  582. this.textBox_TorqueData.Text = "---";
  583. //
  584. // textBox_Torque_Start
  585. //
  586. this.textBox_Torque_Start.Location = new System.Drawing.Point(89, 87);
  587. this.textBox_Torque_Start.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  588. this.textBox_Torque_Start.Name = "textBox_Torque_Start";
  589. this.textBox_Torque_Start.Size = new System.Drawing.Size(66, 26);
  590. this.textBox_Torque_Start.TabIndex = 2;
  591. this.textBox_Torque_Start.Text = "---";
  592. //
  593. // label110
  594. //
  595. this.label110.AutoSize = true;
  596. this.label110.Location = new System.Drawing.Point(166, 18);
  597. this.label110.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  598. this.label110.Name = "label110";
  599. this.label110.Size = new System.Drawing.Size(51, 20);
  600. this.label110.TabIndex = 2;
  601. this.label110.Text = "标准差";
  602. //
  603. // label57
  604. //
  605. this.label57.AutoSize = true;
  606. this.label57.Location = new System.Drawing.Point(96, 18);
  607. this.label57.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  608. this.label57.Name = "label57";
  609. this.label57.Size = new System.Drawing.Size(51, 20);
  610. this.label57.TabIndex = 2;
  611. this.label57.Text = "平均值";
  612. //
  613. // label9
  614. //
  615. this.label9.AutoSize = true;
  616. this.label9.Location = new System.Drawing.Point(7, 90);
  617. this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  618. this.label9.Name = "label9";
  619. this.label9.Size = new System.Drawing.Size(51, 20);
  620. this.label9.TabIndex = 2;
  621. this.label9.Text = "启动值";
  622. this.label9.DoubleClick += new System.EventHandler(this.label9_DoubleClick);
  623. this.label9.MouseHover += new System.EventHandler(this.label9_MouseHover);
  624. //
  625. // label111
  626. //
  627. this.label111.AutoSize = true;
  628. this.label111.Location = new System.Drawing.Point(6, 44);
  629. this.label111.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  630. this.label111.Name = "label111";
  631. this.label111.Size = new System.Drawing.Size(79, 20);
  632. this.label111.TabIndex = 2;
  633. this.label111.Text = "力矩传感器";
  634. //
  635. // checkBox_Savedata
  636. //
  637. this.checkBox_Savedata.AutoSize = true;
  638. this.checkBox_Savedata.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  639. this.checkBox_Savedata.ForeColor = System.Drawing.Color.Red;
  640. this.checkBox_Savedata.Location = new System.Drawing.Point(11, 45);
  641. this.checkBox_Savedata.Name = "checkBox_Savedata";
  642. this.checkBox_Savedata.Size = new System.Drawing.Size(112, 24);
  643. this.checkBox_Savedata.TabIndex = 6;
  644. this.checkBox_Savedata.Text = "运行信息记录";
  645. this.checkBox_Savedata.UseVisualStyleBackColor = true;
  646. this.checkBox_Savedata.CheckedChanged += new System.EventHandler(this.checkBox_Savedata_CheckedChanged);
  647. //
  648. // checkBox_ReadTorqueData
  649. //
  650. this.checkBox_ReadTorqueData.AutoSize = true;
  651. this.checkBox_ReadTorqueData.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  652. this.checkBox_ReadTorqueData.ForeColor = System.Drawing.Color.Red;
  653. this.checkBox_ReadTorqueData.Location = new System.Drawing.Point(11, 20);
  654. this.checkBox_ReadTorqueData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  655. this.checkBox_ReadTorqueData.Name = "checkBox_ReadTorqueData";
  656. this.checkBox_ReadTorqueData.Size = new System.Drawing.Size(84, 24);
  657. this.checkBox_ReadTorqueData.TabIndex = 5;
  658. this.checkBox_ReadTorqueData.Text = "曲线采集";
  659. this.checkBox_ReadTorqueData.UseVisualStyleBackColor = true;
  660. this.checkBox_ReadTorqueData.CheckedChanged += new System.EventHandler(this.checkBox_ReadTorqueData_CheckedChanged);
  661. //
  662. // label4
  663. //
  664. this.label4.AutoSize = true;
  665. this.label4.Location = new System.Drawing.Point(7, 25);
  666. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  667. this.label4.Name = "label4";
  668. this.label4.Size = new System.Drawing.Size(37, 20);
  669. this.label4.TabIndex = 2;
  670. this.label4.Text = "型号";
  671. //
  672. // groupBox3
  673. //
  674. this.groupBox3.Controls.Add(this.label114);
  675. this.groupBox3.Controls.Add(this.label46);
  676. this.groupBox3.Controls.Add(this.label56);
  677. this.groupBox3.Controls.Add(this.label55);
  678. this.groupBox3.Controls.Add(this.label113);
  679. this.groupBox3.Controls.Add(this.label43);
  680. this.groupBox3.Controls.Add(this.label76);
  681. this.groupBox3.Controls.Add(this.label42);
  682. this.groupBox3.Controls.Add(this.label40);
  683. this.groupBox3.Controls.Add(this.label39);
  684. this.groupBox3.Controls.Add(this.label44);
  685. this.groupBox3.Controls.Add(this.label70);
  686. this.groupBox3.Controls.Add(this.label48);
  687. this.groupBox3.Controls.Add(this.label54);
  688. this.groupBox3.Controls.Add(this.label37);
  689. this.groupBox3.Controls.Add(this.label41);
  690. this.groupBox3.Controls.Add(this.label36);
  691. this.groupBox3.Controls.Add(this.label38);
  692. this.groupBox3.Controls.Add(this.label22);
  693. this.groupBox3.Controls.Add(this.label112);
  694. this.groupBox3.Controls.Add(this.label35);
  695. this.groupBox3.Controls.Add(this.label23);
  696. this.groupBox3.Controls.Add(this.label24);
  697. this.groupBox3.Controls.Add(this.textBox_RunInfo_BikeSpeed);
  698. this.groupBox3.Controls.Add(this.textBox_RunInfo_OutSpeed);
  699. this.groupBox3.Controls.Add(this.textBox_RunInfo_Power);
  700. this.groupBox3.Controls.Add(this.textBox_Sensor1);
  701. this.groupBox3.Controls.Add(this.textBox_RunInfo_Voltage);
  702. this.groupBox3.Controls.Add(this.textBox_RunInfo_Current);
  703. this.groupBox3.Controls.Add(this.textBox_RunInfo_Cadence);
  704. this.groupBox3.Controls.Add(this.textBox_RunInfo_Torque);
  705. this.groupBox3.Controls.Add(this.textBox_RunInfo_Dir);
  706. this.groupBox3.Controls.Add(this.textBox_Sensor2);
  707. this.groupBox3.Controls.Add(this.textBox_RunInfo_Gear);
  708. this.groupBox3.Controls.Add(this.textBox_RunInfo_Light);
  709. this.groupBox3.Controls.Add(this.textBox_RunInfo_SOC);
  710. this.groupBox3.Controls.Add(this.textBox_RunInfo_Range);
  711. this.groupBox3.Controls.Add(this.textBox_RunInfo_ODO_Km);
  712. this.groupBox3.Controls.Add(this.textBox_Sensor3);
  713. this.groupBox3.Controls.Add(this.textBox_RunInfo_PowerAvg);
  714. this.groupBox3.Controls.Add(this.textBox_RunInfo_T_PCB);
  715. this.groupBox3.Controls.Add(this.textBox_RunInfo_T_Roil);
  716. this.groupBox3.Controls.Add(this.textBox_RunInfo_T_MCU);
  717. this.groupBox3.Controls.Add(this.textBox_RunInfo_Distance);
  718. this.groupBox3.Controls.Add(this.textBox_RunInfo_Time);
  719. this.groupBox3.Controls.Add(this.textBox_RunInfo_ErrorCode);
  720. this.groupBox3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  721. this.groupBox3.Location = new System.Drawing.Point(251, 13);
  722. this.groupBox3.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  723. this.groupBox3.Name = "groupBox3";
  724. this.groupBox3.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  725. this.groupBox3.Size = new System.Drawing.Size(640, 191);
  726. this.groupBox3.TabIndex = 2;
  727. this.groupBox3.TabStop = false;
  728. this.groupBox3.Text = "运行信息";
  729. this.groupBox3.Visible = false;
  730. //
  731. // label114
  732. //
  733. this.label114.AutoSize = true;
  734. this.label114.Location = new System.Drawing.Point(304, 164);
  735. this.label114.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  736. this.label114.Name = "label114";
  737. this.label114.Size = new System.Drawing.Size(59, 20);
  738. this.label114.TabIndex = 2;
  739. this.label114.Text = "传感器3";
  740. //
  741. // label46
  742. //
  743. this.label46.AutoSize = true;
  744. this.label46.Location = new System.Drawing.Point(304, 137);
  745. this.label46.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  746. this.label46.Name = "label46";
  747. this.label46.Size = new System.Drawing.Size(64, 20);
  748. this.label46.TabIndex = 2;
  749. this.label46.Text = "PCB温度";
  750. //
  751. // label56
  752. //
  753. this.label56.AutoSize = true;
  754. this.label56.Location = new System.Drawing.Point(467, 29);
  755. this.label56.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  756. this.label56.Name = "label56";
  757. this.label56.Size = new System.Drawing.Size(65, 20);
  758. this.label56.TabIndex = 2;
  759. this.label56.Text = "绕组温度";
  760. //
  761. // label55
  762. //
  763. this.label55.AutoSize = true;
  764. this.label55.Location = new System.Drawing.Point(467, 137);
  765. this.label55.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  766. this.label55.Name = "label55";
  767. this.label55.Size = new System.Drawing.Size(51, 20);
  768. this.label55.TabIndex = 2;
  769. this.label55.Text = "故障码";
  770. //
  771. // label113
  772. //
  773. this.label113.AutoSize = true;
  774. this.label113.Location = new System.Drawing.Point(161, 164);
  775. this.label113.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  776. this.label113.Name = "label113";
  777. this.label113.Size = new System.Drawing.Size(59, 20);
  778. this.label113.TabIndex = 2;
  779. this.label113.Text = "传感器2";
  780. //
  781. // label43
  782. //
  783. this.label43.AutoSize = true;
  784. this.label43.Location = new System.Drawing.Point(161, 137);
  785. this.label43.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  786. this.label43.Name = "label43";
  787. this.label43.Size = new System.Drawing.Size(65, 20);
  788. this.label43.TabIndex = 2;
  789. this.label43.Text = "大灯状态";
  790. //
  791. // label76
  792. //
  793. this.label76.AutoSize = true;
  794. this.label76.Location = new System.Drawing.Point(303, 83);
  795. this.label76.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  796. this.label76.Name = "label76";
  797. this.label76.Size = new System.Drawing.Size(70, 20);
  798. this.label76.TabIndex = 2;
  799. this.label76.Text = "ODO里程";
  800. //
  801. // label42
  802. //
  803. this.label42.AutoSize = true;
  804. this.label42.Location = new System.Drawing.Point(303, 56);
  805. this.label42.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  806. this.label42.Name = "label42";
  807. this.label42.Size = new System.Drawing.Size(65, 20);
  808. this.label42.TabIndex = 2;
  809. this.label42.Text = "续航里程";
  810. //
  811. // label40
  812. //
  813. this.label40.AutoSize = true;
  814. this.label40.Location = new System.Drawing.Point(161, 56);
  815. this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  816. this.label40.Name = "label40";
  817. this.label40.Size = new System.Drawing.Size(65, 20);
  818. this.label40.TabIndex = 2;
  819. this.label40.Text = "踩踏力矩";
  820. //
  821. // label39
  822. //
  823. this.label39.AutoSize = true;
  824. this.label39.Location = new System.Drawing.Point(161, 110);
  825. this.label39.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  826. this.label39.Name = "label39";
  827. this.label39.Size = new System.Drawing.Size(65, 20);
  828. this.label39.TabIndex = 2;
  829. this.label39.Text = "助力档位";
  830. //
  831. // label44
  832. //
  833. this.label44.AutoSize = true;
  834. this.label44.Location = new System.Drawing.Point(303, 110);
  835. this.label44.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  836. this.label44.Name = "label44";
  837. this.label44.Size = new System.Drawing.Size(65, 20);
  838. this.label44.TabIndex = 2;
  839. this.label44.Text = "平均功耗";
  840. //
  841. // label70
  842. //
  843. this.label70.AutoSize = true;
  844. this.label70.Location = new System.Drawing.Point(467, 110);
  845. this.label70.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  846. this.label70.Name = "label70";
  847. this.label70.Size = new System.Drawing.Size(65, 20);
  848. this.label70.TabIndex = 2;
  849. this.label70.Text = "单次时间";
  850. //
  851. // label48
  852. //
  853. this.label48.AutoSize = true;
  854. this.label48.Location = new System.Drawing.Point(467, 83);
  855. this.label48.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  856. this.label48.Name = "label48";
  857. this.label48.Size = new System.Drawing.Size(65, 20);
  858. this.label48.TabIndex = 2;
  859. this.label48.Text = "单次里程";
  860. //
  861. // label54
  862. //
  863. this.label54.AutoSize = true;
  864. this.label54.Location = new System.Drawing.Point(467, 56);
  865. this.label54.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  866. this.label54.Name = "label54";
  867. this.label54.Size = new System.Drawing.Size(70, 20);
  868. this.label54.TabIndex = 2;
  869. this.label54.Text = "MOS温度";
  870. //
  871. // label37
  872. //
  873. this.label37.AutoSize = true;
  874. this.label37.Location = new System.Drawing.Point(7, 110);
  875. this.label37.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  876. this.label37.Name = "label37";
  877. this.label37.Size = new System.Drawing.Size(65, 20);
  878. this.label37.TabIndex = 2;
  879. this.label37.Text = "母线电压";
  880. //
  881. // label41
  882. //
  883. this.label41.AutoSize = true;
  884. this.label41.Location = new System.Drawing.Point(303, 29);
  885. this.label41.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  886. this.label41.Name = "label41";
  887. this.label41.Size = new System.Drawing.Size(65, 20);
  888. this.label41.TabIndex = 2;
  889. this.label41.Text = "剩余电量";
  890. //
  891. // label36
  892. //
  893. this.label36.AutoSize = true;
  894. this.label36.Location = new System.Drawing.Point(161, 29);
  895. this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  896. this.label36.Name = "label36";
  897. this.label36.Size = new System.Drawing.Size(37, 20);
  898. this.label36.TabIndex = 2;
  899. this.label36.Text = "踏频";
  900. //
  901. // label38
  902. //
  903. this.label38.AutoSize = true;
  904. this.label38.Location = new System.Drawing.Point(161, 83);
  905. this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  906. this.label38.Name = "label38";
  907. this.label38.Size = new System.Drawing.Size(65, 20);
  908. this.label38.TabIndex = 2;
  909. this.label38.Text = "踩踏方向";
  910. //
  911. // label22
  912. //
  913. this.label22.AutoSize = true;
  914. this.label22.Location = new System.Drawing.Point(7, 29);
  915. this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  916. this.label22.Name = "label22";
  917. this.label22.Size = new System.Drawing.Size(37, 20);
  918. this.label22.TabIndex = 2;
  919. this.label22.Text = "车速";
  920. //
  921. // label112
  922. //
  923. this.label112.AutoSize = true;
  924. this.label112.Location = new System.Drawing.Point(7, 164);
  925. this.label112.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  926. this.label112.Name = "label112";
  927. this.label112.Size = new System.Drawing.Size(59, 20);
  928. this.label112.TabIndex = 2;
  929. this.label112.Text = "传感器1";
  930. //
  931. // label35
  932. //
  933. this.label35.AutoSize = true;
  934. this.label35.Location = new System.Drawing.Point(7, 137);
  935. this.label35.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  936. this.label35.Name = "label35";
  937. this.label35.Size = new System.Drawing.Size(65, 20);
  938. this.label35.TabIndex = 2;
  939. this.label35.Text = "母线电流";
  940. //
  941. // label23
  942. //
  943. this.label23.AutoSize = true;
  944. this.label23.Location = new System.Drawing.Point(7, 83);
  945. this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  946. this.label23.Name = "label23";
  947. this.label23.Size = new System.Drawing.Size(51, 20);
  948. this.label23.TabIndex = 2;
  949. this.label23.Text = "电功率";
  950. //
  951. // label24
  952. //
  953. this.label24.AutoSize = true;
  954. this.label24.Location = new System.Drawing.Point(7, 56);
  955. this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  956. this.label24.Name = "label24";
  957. this.label24.Size = new System.Drawing.Size(65, 20);
  958. this.label24.TabIndex = 2;
  959. this.label24.Text = "输出转速";
  960. //
  961. // textBox_RunInfo_BikeSpeed
  962. //
  963. this.textBox_RunInfo_BikeSpeed.Location = new System.Drawing.Point(77, 25);
  964. this.textBox_RunInfo_BikeSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  965. this.textBox_RunInfo_BikeSpeed.Name = "textBox_RunInfo_BikeSpeed";
  966. this.textBox_RunInfo_BikeSpeed.ReadOnly = true;
  967. this.textBox_RunInfo_BikeSpeed.Size = new System.Drawing.Size(81, 26);
  968. this.textBox_RunInfo_BikeSpeed.TabIndex = 17;
  969. //
  970. // textBox_RunInfo_OutSpeed
  971. //
  972. this.textBox_RunInfo_OutSpeed.Location = new System.Drawing.Point(77, 52);
  973. this.textBox_RunInfo_OutSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  974. this.textBox_RunInfo_OutSpeed.Name = "textBox_RunInfo_OutSpeed";
  975. this.textBox_RunInfo_OutSpeed.ReadOnly = true;
  976. this.textBox_RunInfo_OutSpeed.Size = new System.Drawing.Size(81, 26);
  977. this.textBox_RunInfo_OutSpeed.TabIndex = 21;
  978. //
  979. // textBox_RunInfo_Power
  980. //
  981. this.textBox_RunInfo_Power.Location = new System.Drawing.Point(77, 79);
  982. this.textBox_RunInfo_Power.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  983. this.textBox_RunInfo_Power.Name = "textBox_RunInfo_Power";
  984. this.textBox_RunInfo_Power.ReadOnly = true;
  985. this.textBox_RunInfo_Power.Size = new System.Drawing.Size(81, 26);
  986. this.textBox_RunInfo_Power.TabIndex = 25;
  987. //
  988. // textBox_Sensor1
  989. //
  990. this.textBox_Sensor1.Location = new System.Drawing.Point(77, 160);
  991. this.textBox_Sensor1.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  992. this.textBox_Sensor1.Name = "textBox_Sensor1";
  993. this.textBox_Sensor1.ReadOnly = true;
  994. this.textBox_Sensor1.Size = new System.Drawing.Size(81, 26);
  995. this.textBox_Sensor1.TabIndex = 37;
  996. //
  997. // textBox_RunInfo_Voltage
  998. //
  999. this.textBox_RunInfo_Voltage.Location = new System.Drawing.Point(77, 106);
  1000. this.textBox_RunInfo_Voltage.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1001. this.textBox_RunInfo_Voltage.Name = "textBox_RunInfo_Voltage";
  1002. this.textBox_RunInfo_Voltage.ReadOnly = true;
  1003. this.textBox_RunInfo_Voltage.Size = new System.Drawing.Size(81, 26);
  1004. this.textBox_RunInfo_Voltage.TabIndex = 29;
  1005. //
  1006. // textBox_RunInfo_Current
  1007. //
  1008. this.textBox_RunInfo_Current.Location = new System.Drawing.Point(77, 133);
  1009. this.textBox_RunInfo_Current.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1010. this.textBox_RunInfo_Current.Name = "textBox_RunInfo_Current";
  1011. this.textBox_RunInfo_Current.ReadOnly = true;
  1012. this.textBox_RunInfo_Current.Size = new System.Drawing.Size(81, 26);
  1013. this.textBox_RunInfo_Current.TabIndex = 33;
  1014. //
  1015. // textBox_RunInfo_Cadence
  1016. //
  1017. this.textBox_RunInfo_Cadence.Location = new System.Drawing.Point(230, 25);
  1018. this.textBox_RunInfo_Cadence.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1019. this.textBox_RunInfo_Cadence.Name = "textBox_RunInfo_Cadence";
  1020. this.textBox_RunInfo_Cadence.ReadOnly = true;
  1021. this.textBox_RunInfo_Cadence.Size = new System.Drawing.Size(70, 26);
  1022. this.textBox_RunInfo_Cadence.TabIndex = 18;
  1023. //
  1024. // textBox_RunInfo_Torque
  1025. //
  1026. this.textBox_RunInfo_Torque.Location = new System.Drawing.Point(230, 52);
  1027. this.textBox_RunInfo_Torque.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1028. this.textBox_RunInfo_Torque.Name = "textBox_RunInfo_Torque";
  1029. this.textBox_RunInfo_Torque.ReadOnly = true;
  1030. this.textBox_RunInfo_Torque.Size = new System.Drawing.Size(70, 26);
  1031. this.textBox_RunInfo_Torque.TabIndex = 22;
  1032. //
  1033. // textBox_RunInfo_Dir
  1034. //
  1035. this.textBox_RunInfo_Dir.Location = new System.Drawing.Point(230, 79);
  1036. this.textBox_RunInfo_Dir.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1037. this.textBox_RunInfo_Dir.Name = "textBox_RunInfo_Dir";
  1038. this.textBox_RunInfo_Dir.ReadOnly = true;
  1039. this.textBox_RunInfo_Dir.Size = new System.Drawing.Size(70, 26);
  1040. this.textBox_RunInfo_Dir.TabIndex = 26;
  1041. //
  1042. // textBox_Sensor2
  1043. //
  1044. this.textBox_Sensor2.Location = new System.Drawing.Point(230, 160);
  1045. this.textBox_Sensor2.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1046. this.textBox_Sensor2.Name = "textBox_Sensor2";
  1047. this.textBox_Sensor2.ReadOnly = true;
  1048. this.textBox_Sensor2.Size = new System.Drawing.Size(70, 26);
  1049. this.textBox_Sensor2.TabIndex = 38;
  1050. //
  1051. // textBox_RunInfo_Gear
  1052. //
  1053. this.textBox_RunInfo_Gear.Location = new System.Drawing.Point(230, 106);
  1054. this.textBox_RunInfo_Gear.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1055. this.textBox_RunInfo_Gear.Name = "textBox_RunInfo_Gear";
  1056. this.textBox_RunInfo_Gear.ReadOnly = true;
  1057. this.textBox_RunInfo_Gear.Size = new System.Drawing.Size(70, 26);
  1058. this.textBox_RunInfo_Gear.TabIndex = 30;
  1059. //
  1060. // textBox_RunInfo_Light
  1061. //
  1062. this.textBox_RunInfo_Light.Location = new System.Drawing.Point(230, 133);
  1063. this.textBox_RunInfo_Light.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1064. this.textBox_RunInfo_Light.Name = "textBox_RunInfo_Light";
  1065. this.textBox_RunInfo_Light.ReadOnly = true;
  1066. this.textBox_RunInfo_Light.Size = new System.Drawing.Size(70, 26);
  1067. this.textBox_RunInfo_Light.TabIndex = 34;
  1068. //
  1069. // textBox_RunInfo_SOC
  1070. //
  1071. this.textBox_RunInfo_SOC.Location = new System.Drawing.Point(374, 25);
  1072. this.textBox_RunInfo_SOC.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1073. this.textBox_RunInfo_SOC.Name = "textBox_RunInfo_SOC";
  1074. this.textBox_RunInfo_SOC.ReadOnly = true;
  1075. this.textBox_RunInfo_SOC.Size = new System.Drawing.Size(90, 26);
  1076. this.textBox_RunInfo_SOC.TabIndex = 19;
  1077. //
  1078. // textBox_RunInfo_Range
  1079. //
  1080. this.textBox_RunInfo_Range.Location = new System.Drawing.Point(374, 52);
  1081. this.textBox_RunInfo_Range.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1082. this.textBox_RunInfo_Range.Name = "textBox_RunInfo_Range";
  1083. this.textBox_RunInfo_Range.ReadOnly = true;
  1084. this.textBox_RunInfo_Range.Size = new System.Drawing.Size(90, 26);
  1085. this.textBox_RunInfo_Range.TabIndex = 23;
  1086. //
  1087. // textBox_RunInfo_ODO_Km
  1088. //
  1089. this.textBox_RunInfo_ODO_Km.Location = new System.Drawing.Point(374, 79);
  1090. this.textBox_RunInfo_ODO_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1091. this.textBox_RunInfo_ODO_Km.Name = "textBox_RunInfo_ODO_Km";
  1092. this.textBox_RunInfo_ODO_Km.ReadOnly = true;
  1093. this.textBox_RunInfo_ODO_Km.Size = new System.Drawing.Size(90, 26);
  1094. this.textBox_RunInfo_ODO_Km.TabIndex = 27;
  1095. //
  1096. // textBox_Sensor3
  1097. //
  1098. this.textBox_Sensor3.Location = new System.Drawing.Point(374, 160);
  1099. this.textBox_Sensor3.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1100. this.textBox_Sensor3.Name = "textBox_Sensor3";
  1101. this.textBox_Sensor3.ReadOnly = true;
  1102. this.textBox_Sensor3.Size = new System.Drawing.Size(90, 26);
  1103. this.textBox_Sensor3.TabIndex = 39;
  1104. //
  1105. // textBox_RunInfo_PowerAvg
  1106. //
  1107. this.textBox_RunInfo_PowerAvg.Location = new System.Drawing.Point(374, 106);
  1108. this.textBox_RunInfo_PowerAvg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1109. this.textBox_RunInfo_PowerAvg.Name = "textBox_RunInfo_PowerAvg";
  1110. this.textBox_RunInfo_PowerAvg.ReadOnly = true;
  1111. this.textBox_RunInfo_PowerAvg.Size = new System.Drawing.Size(90, 26);
  1112. this.textBox_RunInfo_PowerAvg.TabIndex = 31;
  1113. //
  1114. // textBox_RunInfo_T_PCB
  1115. //
  1116. this.textBox_RunInfo_T_PCB.Location = new System.Drawing.Point(374, 133);
  1117. this.textBox_RunInfo_T_PCB.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1118. this.textBox_RunInfo_T_PCB.Name = "textBox_RunInfo_T_PCB";
  1119. this.textBox_RunInfo_T_PCB.ReadOnly = true;
  1120. this.textBox_RunInfo_T_PCB.Size = new System.Drawing.Size(90, 26);
  1121. this.textBox_RunInfo_T_PCB.TabIndex = 35;
  1122. //
  1123. // textBox_RunInfo_T_Roil
  1124. //
  1125. this.textBox_RunInfo_T_Roil.Location = new System.Drawing.Point(541, 25);
  1126. this.textBox_RunInfo_T_Roil.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1127. this.textBox_RunInfo_T_Roil.Name = "textBox_RunInfo_T_Roil";
  1128. this.textBox_RunInfo_T_Roil.ReadOnly = true;
  1129. this.textBox_RunInfo_T_Roil.Size = new System.Drawing.Size(90, 26);
  1130. this.textBox_RunInfo_T_Roil.TabIndex = 20;
  1131. //
  1132. // textBox_RunInfo_T_MCU
  1133. //
  1134. this.textBox_RunInfo_T_MCU.Location = new System.Drawing.Point(541, 52);
  1135. this.textBox_RunInfo_T_MCU.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1136. this.textBox_RunInfo_T_MCU.Name = "textBox_RunInfo_T_MCU";
  1137. this.textBox_RunInfo_T_MCU.ReadOnly = true;
  1138. this.textBox_RunInfo_T_MCU.Size = new System.Drawing.Size(90, 26);
  1139. this.textBox_RunInfo_T_MCU.TabIndex = 24;
  1140. //
  1141. // textBox_RunInfo_Distance
  1142. //
  1143. this.textBox_RunInfo_Distance.Location = new System.Drawing.Point(541, 79);
  1144. this.textBox_RunInfo_Distance.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1145. this.textBox_RunInfo_Distance.Name = "textBox_RunInfo_Distance";
  1146. this.textBox_RunInfo_Distance.ReadOnly = true;
  1147. this.textBox_RunInfo_Distance.Size = new System.Drawing.Size(90, 26);
  1148. this.textBox_RunInfo_Distance.TabIndex = 28;
  1149. //
  1150. // textBox_RunInfo_Time
  1151. //
  1152. this.textBox_RunInfo_Time.Location = new System.Drawing.Point(541, 106);
  1153. this.textBox_RunInfo_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1154. this.textBox_RunInfo_Time.Name = "textBox_RunInfo_Time";
  1155. this.textBox_RunInfo_Time.ReadOnly = true;
  1156. this.textBox_RunInfo_Time.Size = new System.Drawing.Size(90, 26);
  1157. this.textBox_RunInfo_Time.TabIndex = 32;
  1158. //
  1159. // textBox_RunInfo_ErrorCode
  1160. //
  1161. this.textBox_RunInfo_ErrorCode.Location = new System.Drawing.Point(541, 133);
  1162. this.textBox_RunInfo_ErrorCode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1163. this.textBox_RunInfo_ErrorCode.Name = "textBox_RunInfo_ErrorCode";
  1164. this.textBox_RunInfo_ErrorCode.ReadOnly = true;
  1165. this.textBox_RunInfo_ErrorCode.Size = new System.Drawing.Size(90, 26);
  1166. this.textBox_RunInfo_ErrorCode.TabIndex = 36;
  1167. this.textBox_RunInfo_ErrorCode.MouseHover += new System.EventHandler(this.textBox_RunInfo_ErrorCode_MouseHover);
  1168. //
  1169. // groupBox5
  1170. //
  1171. this.groupBox5.Controls.Add(this.radioButton_WorkMode_Confg);
  1172. this.groupBox5.Controls.Add(this.radioButton_WorkMode_Run);
  1173. this.groupBox5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1174. this.groupBox5.Location = new System.Drawing.Point(6, 344);
  1175. this.groupBox5.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1176. this.groupBox5.Name = "groupBox5";
  1177. this.groupBox5.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1178. this.groupBox5.Size = new System.Drawing.Size(240, 76);
  1179. this.groupBox5.TabIndex = 4;
  1180. this.groupBox5.TabStop = false;
  1181. this.groupBox5.Text = "工作模式";
  1182. this.groupBox5.Visible = false;
  1183. //
  1184. // radioButton_WorkMode_Confg
  1185. //
  1186. this.radioButton_WorkMode_Confg.AutoSize = true;
  1187. this.radioButton_WorkMode_Confg.Location = new System.Drawing.Point(134, 33);
  1188. this.radioButton_WorkMode_Confg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1189. this.radioButton_WorkMode_Confg.Name = "radioButton_WorkMode_Confg";
  1190. this.radioButton_WorkMode_Confg.Size = new System.Drawing.Size(83, 24);
  1191. this.radioButton_WorkMode_Confg.TabIndex = 5;
  1192. this.radioButton_WorkMode_Confg.Text = "配置模式";
  1193. this.radioButton_WorkMode_Confg.UseVisualStyleBackColor = true;
  1194. this.radioButton_WorkMode_Confg.Click += new System.EventHandler(this.radioButton_WorkMode_Confg_Click);
  1195. //
  1196. // radioButton_WorkMode_Run
  1197. //
  1198. this.radioButton_WorkMode_Run.AutoSize = true;
  1199. this.radioButton_WorkMode_Run.Checked = true;
  1200. this.radioButton_WorkMode_Run.Location = new System.Drawing.Point(18, 33);
  1201. this.radioButton_WorkMode_Run.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1202. this.radioButton_WorkMode_Run.Name = "radioButton_WorkMode_Run";
  1203. this.radioButton_WorkMode_Run.Size = new System.Drawing.Size(83, 24);
  1204. this.radioButton_WorkMode_Run.TabIndex = 5;
  1205. this.radioButton_WorkMode_Run.TabStop = true;
  1206. this.radioButton_WorkMode_Run.Text = "运行模式";
  1207. this.radioButton_WorkMode_Run.UseVisualStyleBackColor = true;
  1208. this.radioButton_WorkMode_Run.Click += new System.EventHandler(this.radioButton_WorkMode_Run_Click);
  1209. //
  1210. // groupBox6
  1211. //
  1212. this.groupBox6.Controls.Add(this.checkBox_AutoSend);
  1213. this.groupBox6.Controls.Add(this.radioButton_Gear_WALK);
  1214. this.groupBox6.Controls.Add(this.radioButton_Gear_SMART);
  1215. this.groupBox6.Controls.Add(this.radioButton_Gear_TURBO);
  1216. this.groupBox6.Controls.Add(this.radioButton_Gear_SPORT);
  1217. this.groupBox6.Controls.Add(this.radioButton_Gear_NORM);
  1218. this.groupBox6.Controls.Add(this.radioButton_Gear_ECO);
  1219. this.groupBox6.Controls.Add(this.radioButton_Gear_OFF);
  1220. this.groupBox6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1221. this.groupBox6.Location = new System.Drawing.Point(6, 422);
  1222. this.groupBox6.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1223. this.groupBox6.Name = "groupBox6";
  1224. this.groupBox6.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1225. this.groupBox6.Size = new System.Drawing.Size(240, 150);
  1226. this.groupBox6.TabIndex = 5;
  1227. this.groupBox6.TabStop = false;
  1228. this.groupBox6.Text = "助力档位";
  1229. this.groupBox6.Visible = false;
  1230. //
  1231. // checkBox_AutoSend
  1232. //
  1233. this.checkBox_AutoSend.AutoSize = true;
  1234. this.checkBox_AutoSend.Location = new System.Drawing.Point(134, 121);
  1235. this.checkBox_AutoSend.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1236. this.checkBox_AutoSend.Name = "checkBox_AutoSend";
  1237. this.checkBox_AutoSend.Size = new System.Drawing.Size(56, 24);
  1238. this.checkBox_AutoSend.TabIndex = 7;
  1239. this.checkBox_AutoSend.Text = "自动";
  1240. this.checkBox_AutoSend.UseVisualStyleBackColor = true;
  1241. this.checkBox_AutoSend.CheckedChanged += new System.EventHandler(this.checkBox_AutoSend_CheckedChanged);
  1242. //
  1243. // radioButton_Gear_WALK
  1244. //
  1245. this.radioButton_Gear_WALK.AutoSize = true;
  1246. this.radioButton_Gear_WALK.Location = new System.Drawing.Point(134, 90);
  1247. this.radioButton_Gear_WALK.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1248. this.radioButton_Gear_WALK.Name = "radioButton_Gear_WALK";
  1249. this.radioButton_Gear_WALK.Size = new System.Drawing.Size(67, 24);
  1250. this.radioButton_Gear_WALK.TabIndex = 6;
  1251. this.radioButton_Gear_WALK.Text = "WALK";
  1252. this.radioButton_Gear_WALK.UseVisualStyleBackColor = true;
  1253. this.radioButton_Gear_WALK.Click += new System.EventHandler(this.radioButton_Gear_WALK_Click);
  1254. //
  1255. // radioButton_Gear_SMART
  1256. //
  1257. this.radioButton_Gear_SMART.AutoSize = true;
  1258. this.radioButton_Gear_SMART.Location = new System.Drawing.Point(134, 56);
  1259. this.radioButton_Gear_SMART.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1260. this.radioButton_Gear_SMART.Name = "radioButton_Gear_SMART";
  1261. this.radioButton_Gear_SMART.Size = new System.Drawing.Size(76, 24);
  1262. this.radioButton_Gear_SMART.TabIndex = 6;
  1263. this.radioButton_Gear_SMART.Text = "SMART";
  1264. this.radioButton_Gear_SMART.UseVisualStyleBackColor = true;
  1265. this.radioButton_Gear_SMART.Click += new System.EventHandler(this.radioButton_Gear_SMART_Click);
  1266. //
  1267. // radioButton_Gear_TURBO
  1268. //
  1269. this.radioButton_Gear_TURBO.AutoSize = true;
  1270. this.radioButton_Gear_TURBO.Location = new System.Drawing.Point(134, 24);
  1271. this.radioButton_Gear_TURBO.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1272. this.radioButton_Gear_TURBO.Name = "radioButton_Gear_TURBO";
  1273. this.radioButton_Gear_TURBO.Size = new System.Drawing.Size(74, 24);
  1274. this.radioButton_Gear_TURBO.TabIndex = 6;
  1275. this.radioButton_Gear_TURBO.Text = "TURBO";
  1276. this.radioButton_Gear_TURBO.UseVisualStyleBackColor = true;
  1277. this.radioButton_Gear_TURBO.Click += new System.EventHandler(this.radioButton_Gear_TURBO_Click);
  1278. //
  1279. // radioButton_Gear_SPORT
  1280. //
  1281. this.radioButton_Gear_SPORT.AutoSize = true;
  1282. this.radioButton_Gear_SPORT.Location = new System.Drawing.Point(18, 120);
  1283. this.radioButton_Gear_SPORT.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1284. this.radioButton_Gear_SPORT.Name = "radioButton_Gear_SPORT";
  1285. this.radioButton_Gear_SPORT.Size = new System.Drawing.Size(72, 24);
  1286. this.radioButton_Gear_SPORT.TabIndex = 6;
  1287. this.radioButton_Gear_SPORT.Text = "SPORT";
  1288. this.radioButton_Gear_SPORT.UseVisualStyleBackColor = true;
  1289. this.radioButton_Gear_SPORT.Click += new System.EventHandler(this.radioButton_Gear_SPORT_Click);
  1290. //
  1291. // radioButton_Gear_NORM
  1292. //
  1293. this.radioButton_Gear_NORM.AutoSize = true;
  1294. this.radioButton_Gear_NORM.Location = new System.Drawing.Point(18, 90);
  1295. this.radioButton_Gear_NORM.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1296. this.radioButton_Gear_NORM.Name = "radioButton_Gear_NORM";
  1297. this.radioButton_Gear_NORM.Size = new System.Drawing.Size(72, 24);
  1298. this.radioButton_Gear_NORM.TabIndex = 6;
  1299. this.radioButton_Gear_NORM.Text = "NORM";
  1300. this.radioButton_Gear_NORM.UseVisualStyleBackColor = true;
  1301. this.radioButton_Gear_NORM.Click += new System.EventHandler(this.radioButton_Gear_NORM_Click);
  1302. //
  1303. // radioButton_Gear_ECO
  1304. //
  1305. this.radioButton_Gear_ECO.AutoSize = true;
  1306. this.radioButton_Gear_ECO.Location = new System.Drawing.Point(18, 56);
  1307. this.radioButton_Gear_ECO.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1308. this.radioButton_Gear_ECO.Name = "radioButton_Gear_ECO";
  1309. this.radioButton_Gear_ECO.Size = new System.Drawing.Size(55, 24);
  1310. this.radioButton_Gear_ECO.TabIndex = 6;
  1311. this.radioButton_Gear_ECO.Text = "ECO";
  1312. this.radioButton_Gear_ECO.UseVisualStyleBackColor = true;
  1313. this.radioButton_Gear_ECO.Click += new System.EventHandler(this.radioButton_Gear_ECO_Click);
  1314. //
  1315. // radioButton_Gear_OFF
  1316. //
  1317. this.radioButton_Gear_OFF.AutoSize = true;
  1318. this.radioButton_Gear_OFF.Checked = true;
  1319. this.radioButton_Gear_OFF.Location = new System.Drawing.Point(18, 24);
  1320. this.radioButton_Gear_OFF.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1321. this.radioButton_Gear_OFF.Name = "radioButton_Gear_OFF";
  1322. this.radioButton_Gear_OFF.Size = new System.Drawing.Size(52, 24);
  1323. this.radioButton_Gear_OFF.TabIndex = 6;
  1324. this.radioButton_Gear_OFF.TabStop = true;
  1325. this.radioButton_Gear_OFF.Text = "OFF";
  1326. this.radioButton_Gear_OFF.UseVisualStyleBackColor = true;
  1327. this.radioButton_Gear_OFF.Click += new System.EventHandler(this.radioButton_Gear_OFF_Click);
  1328. //
  1329. // groupBox7
  1330. //
  1331. this.groupBox7.Controls.Add(this.radioButton_Light_OFF);
  1332. this.groupBox7.Controls.Add(this.radioButton_Light_ON);
  1333. this.groupBox7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1334. this.groupBox7.Location = new System.Drawing.Point(7, 575);
  1335. this.groupBox7.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1336. this.groupBox7.Name = "groupBox7";
  1337. this.groupBox7.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1338. this.groupBox7.Size = new System.Drawing.Size(240, 56);
  1339. this.groupBox7.TabIndex = 6;
  1340. this.groupBox7.TabStop = false;
  1341. this.groupBox7.Text = "大灯开关";
  1342. this.groupBox7.Visible = false;
  1343. //
  1344. // radioButton_Light_OFF
  1345. //
  1346. this.radioButton_Light_OFF.AutoSize = true;
  1347. this.radioButton_Light_OFF.Checked = true;
  1348. this.radioButton_Light_OFF.Location = new System.Drawing.Point(17, 26);
  1349. this.radioButton_Light_OFF.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1350. this.radioButton_Light_OFF.Name = "radioButton_Light_OFF";
  1351. this.radioButton_Light_OFF.Size = new System.Drawing.Size(52, 24);
  1352. this.radioButton_Light_OFF.TabIndex = 6;
  1353. this.radioButton_Light_OFF.TabStop = true;
  1354. this.radioButton_Light_OFF.Text = "OFF";
  1355. this.radioButton_Light_OFF.UseVisualStyleBackColor = true;
  1356. this.radioButton_Light_OFF.Click += new System.EventHandler(this.radioButton_Light_OFF_Click);
  1357. //
  1358. // radioButton_Light_ON
  1359. //
  1360. this.radioButton_Light_ON.AutoSize = true;
  1361. this.radioButton_Light_ON.Location = new System.Drawing.Point(131, 26);
  1362. this.radioButton_Light_ON.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1363. this.radioButton_Light_ON.Name = "radioButton_Light_ON";
  1364. this.radioButton_Light_ON.Size = new System.Drawing.Size(49, 24);
  1365. this.radioButton_Light_ON.TabIndex = 6;
  1366. this.radioButton_Light_ON.Text = "ON";
  1367. this.radioButton_Light_ON.UseVisualStyleBackColor = true;
  1368. this.radioButton_Light_ON.Click += new System.EventHandler(this.radioButton_Light_ON_Click);
  1369. //
  1370. // groupBox8
  1371. //
  1372. this.groupBox8.Controls.Add(this.button_Reset);
  1373. this.groupBox8.Controls.Add(this.button_LogClear);
  1374. this.groupBox8.Controls.Add(this.button_Recovery);
  1375. this.groupBox8.Controls.Add(this.button_ClearData);
  1376. this.groupBox8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1377. this.groupBox8.Location = new System.Drawing.Point(7, 635);
  1378. this.groupBox8.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1379. this.groupBox8.Name = "groupBox8";
  1380. this.groupBox8.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1381. this.groupBox8.Size = new System.Drawing.Size(240, 79);
  1382. this.groupBox8.TabIndex = 7;
  1383. this.groupBox8.TabStop = false;
  1384. this.groupBox8.Text = "系统控制";
  1385. this.groupBox8.Visible = false;
  1386. //
  1387. // button_Reset
  1388. //
  1389. this.button_Reset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
  1390. this.button_Reset.Location = new System.Drawing.Point(175, 21);
  1391. this.button_Reset.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1392. this.button_Reset.Name = "button_Reset";
  1393. this.button_Reset.Size = new System.Drawing.Size(50, 50);
  1394. this.button_Reset.TabIndex = 2;
  1395. this.button_Reset.Text = "重启";
  1396. this.button_Reset.UseVisualStyleBackColor = false;
  1397. this.button_Reset.Click += new System.EventHandler(this.button_Reset_Click);
  1398. //
  1399. // button_LogClear
  1400. //
  1401. this.button_LogClear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
  1402. this.button_LogClear.Location = new System.Drawing.Point(121, 21);
  1403. this.button_LogClear.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1404. this.button_LogClear.Name = "button_LogClear";
  1405. this.button_LogClear.Size = new System.Drawing.Size(50, 50);
  1406. this.button_LogClear.TabIndex = 2;
  1407. this.button_LogClear.Text = "记录清除";
  1408. this.button_LogClear.UseVisualStyleBackColor = false;
  1409. this.button_LogClear.Click += new System.EventHandler(this.button_LogClear_Click);
  1410. this.button_LogClear.MouseHover += new System.EventHandler(this.button_LogClear_MouseHover);
  1411. //
  1412. // button_Recovery
  1413. //
  1414. this.button_Recovery.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1415. this.button_Recovery.Enabled = false;
  1416. this.button_Recovery.Location = new System.Drawing.Point(67, 21);
  1417. this.button_Recovery.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1418. this.button_Recovery.Name = "button_Recovery";
  1419. this.button_Recovery.Size = new System.Drawing.Size(50, 50);
  1420. this.button_Recovery.TabIndex = 2;
  1421. this.button_Recovery.Text = "参数还原";
  1422. this.button_Recovery.UseVisualStyleBackColor = false;
  1423. this.button_Recovery.Click += new System.EventHandler(this.button_Recovery_Click);
  1424. this.button_Recovery.MouseHover += new System.EventHandler(this.button_Recovery_MouseHover);
  1425. //
  1426. // button_ClearData
  1427. //
  1428. this.button_ClearData.BackColor = System.Drawing.Color.Red;
  1429. this.button_ClearData.Enabled = false;
  1430. this.button_ClearData.Location = new System.Drawing.Point(13, 21);
  1431. this.button_ClearData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1432. this.button_ClearData.Name = "button_ClearData";
  1433. this.button_ClearData.Size = new System.Drawing.Size(50, 50);
  1434. this.button_ClearData.TabIndex = 2;
  1435. this.button_ClearData.Text = "系统清除";
  1436. this.button_ClearData.UseVisualStyleBackColor = false;
  1437. this.button_ClearData.Click += new System.EventHandler(this.button_ClearData_Click);
  1438. this.button_ClearData.MouseHover += new System.EventHandler(this.button_ClearData_MouseHover);
  1439. //
  1440. // groupBox9
  1441. //
  1442. this.groupBox9.Controls.Add(this.button_Write_Mode);
  1443. this.groupBox9.Controls.Add(this.button_Read_VerInfo);
  1444. this.groupBox9.Controls.Add(this.button_Write_SN);
  1445. this.groupBox9.Controls.Add(this.label109);
  1446. this.groupBox9.Controls.Add(this.label134);
  1447. this.groupBox9.Controls.Add(this.label120);
  1448. this.groupBox9.Controls.Add(this.label8);
  1449. this.groupBox9.Controls.Add(this.textBox_BuildTime);
  1450. this.groupBox9.Controls.Add(this.label7);
  1451. this.groupBox9.Controls.Add(this.textBox_Firmware_Special);
  1452. this.groupBox9.Controls.Add(this.textBox_TE_FW);
  1453. this.groupBox9.Controls.Add(this.textBox_FW);
  1454. this.groupBox9.Controls.Add(this.textBox_HW);
  1455. this.groupBox9.Controls.Add(this.textBox_SN);
  1456. this.groupBox9.Controls.Add(this.textBox_Mode);
  1457. this.groupBox9.Controls.Add(this.label6);
  1458. this.groupBox9.Controls.Add(this.label4);
  1459. this.groupBox9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1460. this.groupBox9.Location = new System.Drawing.Point(753, 568);
  1461. this.groupBox9.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1462. this.groupBox9.Name = "groupBox9";
  1463. this.groupBox9.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1464. this.groupBox9.Size = new System.Drawing.Size(313, 218);
  1465. this.groupBox9.TabIndex = 8;
  1466. this.groupBox9.TabStop = false;
  1467. this.groupBox9.Text = "版本信息 ";
  1468. this.groupBox9.Visible = false;
  1469. //
  1470. // button_Write_Mode
  1471. //
  1472. this.button_Write_Mode.Enabled = false;
  1473. this.button_Write_Mode.Location = new System.Drawing.Point(249, 24);
  1474. this.button_Write_Mode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1475. this.button_Write_Mode.Name = "button_Write_Mode";
  1476. this.button_Write_Mode.Size = new System.Drawing.Size(58, 30);
  1477. this.button_Write_Mode.TabIndex = 4;
  1478. this.button_Write_Mode.Text = "写入";
  1479. this.button_Write_Mode.UseVisualStyleBackColor = true;
  1480. this.button_Write_Mode.Click += new System.EventHandler(this.button_Write_Mode_Click);
  1481. //
  1482. // button_Read_VerInfo
  1483. //
  1484. this.button_Read_VerInfo.Location = new System.Drawing.Point(249, 108);
  1485. this.button_Read_VerInfo.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1486. this.button_Read_VerInfo.Name = "button_Read_VerInfo";
  1487. this.button_Read_VerInfo.Size = new System.Drawing.Size(58, 98);
  1488. this.button_Read_VerInfo.TabIndex = 2;
  1489. this.button_Read_VerInfo.Text = "查询";
  1490. this.button_Read_VerInfo.UseVisualStyleBackColor = true;
  1491. this.button_Read_VerInfo.Click += new System.EventHandler(this.button_Read_VerInfo_Click);
  1492. //
  1493. // button_Write_SN
  1494. //
  1495. this.button_Write_SN.Enabled = false;
  1496. this.button_Write_SN.Location = new System.Drawing.Point(249, 54);
  1497. this.button_Write_SN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1498. this.button_Write_SN.Name = "button_Write_SN";
  1499. this.button_Write_SN.Size = new System.Drawing.Size(58, 30);
  1500. this.button_Write_SN.TabIndex = 5;
  1501. this.button_Write_SN.Text = "写入";
  1502. this.button_Write_SN.UseVisualStyleBackColor = true;
  1503. this.button_Write_SN.Click += new System.EventHandler(this.button_Write_SN_Click);
  1504. //
  1505. // label109
  1506. //
  1507. this.label109.AutoSize = true;
  1508. this.label109.Location = new System.Drawing.Point(7, 181);
  1509. this.label109.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1510. this.label109.Name = "label109";
  1511. this.label109.Size = new System.Drawing.Size(25, 20);
  1512. this.label109.TabIndex = 2;
  1513. this.label109.Text = "TE";
  1514. //
  1515. // label134
  1516. //
  1517. this.label134.AutoSize = true;
  1518. this.label134.Location = new System.Drawing.Point(7, 155);
  1519. this.label134.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1520. this.label134.Name = "label134";
  1521. this.label134.Size = new System.Drawing.Size(37, 20);
  1522. this.label134.TabIndex = 2;
  1523. this.label134.Text = "编译";
  1524. //
  1525. // label120
  1526. //
  1527. this.label120.AutoSize = true;
  1528. this.label120.Location = new System.Drawing.Point(7, 128);
  1529. this.label120.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1530. this.label120.Name = "label120";
  1531. this.label120.Size = new System.Drawing.Size(37, 20);
  1532. this.label120.TabIndex = 2;
  1533. this.label120.Text = "描述";
  1534. //
  1535. // label8
  1536. //
  1537. this.label8.AutoSize = true;
  1538. this.label8.Location = new System.Drawing.Point(7, 103);
  1539. this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1540. this.label8.Name = "label8";
  1541. this.label8.Size = new System.Drawing.Size(37, 20);
  1542. this.label8.TabIndex = 2;
  1543. this.label8.Text = "软件";
  1544. //
  1545. // textBox_BuildTime
  1546. //
  1547. this.textBox_BuildTime.Location = new System.Drawing.Point(63, 152);
  1548. this.textBox_BuildTime.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1549. this.textBox_BuildTime.Name = "textBox_BuildTime";
  1550. this.textBox_BuildTime.ReadOnly = true;
  1551. this.textBox_BuildTime.Size = new System.Drawing.Size(180, 26);
  1552. this.textBox_BuildTime.TabIndex = 2;
  1553. this.textBox_BuildTime.Text = "---";
  1554. //
  1555. // label7
  1556. //
  1557. this.label7.AutoSize = true;
  1558. this.label7.Location = new System.Drawing.Point(7, 77);
  1559. this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1560. this.label7.Name = "label7";
  1561. this.label7.Size = new System.Drawing.Size(37, 20);
  1562. this.label7.TabIndex = 2;
  1563. this.label7.Text = "硬件";
  1564. //
  1565. // textBox_Firmware_Special
  1566. //
  1567. this.textBox_Firmware_Special.Location = new System.Drawing.Point(63, 126);
  1568. this.textBox_Firmware_Special.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1569. this.textBox_Firmware_Special.Name = "textBox_Firmware_Special";
  1570. this.textBox_Firmware_Special.ReadOnly = true;
  1571. this.textBox_Firmware_Special.Size = new System.Drawing.Size(180, 26);
  1572. this.textBox_Firmware_Special.TabIndex = 2;
  1573. this.textBox_Firmware_Special.Text = "---";
  1574. //
  1575. // textBox_TE_FW
  1576. //
  1577. this.textBox_TE_FW.Location = new System.Drawing.Point(63, 178);
  1578. this.textBox_TE_FW.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1579. this.textBox_TE_FW.Name = "textBox_TE_FW";
  1580. this.textBox_TE_FW.ReadOnly = true;
  1581. this.textBox_TE_FW.Size = new System.Drawing.Size(180, 26);
  1582. this.textBox_TE_FW.TabIndex = 2;
  1583. this.textBox_TE_FW.Text = "---";
  1584. //
  1585. // textBox_FW
  1586. //
  1587. this.textBox_FW.Location = new System.Drawing.Point(63, 100);
  1588. this.textBox_FW.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1589. this.textBox_FW.Name = "textBox_FW";
  1590. this.textBox_FW.ReadOnly = true;
  1591. this.textBox_FW.Size = new System.Drawing.Size(180, 26);
  1592. this.textBox_FW.TabIndex = 2;
  1593. this.textBox_FW.Text = "---";
  1594. //
  1595. // textBox_HW
  1596. //
  1597. this.textBox_HW.Location = new System.Drawing.Point(63, 74);
  1598. this.textBox_HW.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1599. this.textBox_HW.Name = "textBox_HW";
  1600. this.textBox_HW.ReadOnly = true;
  1601. this.textBox_HW.Size = new System.Drawing.Size(180, 26);
  1602. this.textBox_HW.TabIndex = 2;
  1603. this.textBox_HW.Text = "---";
  1604. //
  1605. // textBox_SN
  1606. //
  1607. this.textBox_SN.Location = new System.Drawing.Point(63, 48);
  1608. this.textBox_SN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1609. this.textBox_SN.Name = "textBox_SN";
  1610. this.textBox_SN.Size = new System.Drawing.Size(180, 26);
  1611. this.textBox_SN.TabIndex = 2;
  1612. this.textBox_SN.Text = "---";
  1613. //
  1614. // textBox_Mode
  1615. //
  1616. this.textBox_Mode.Location = new System.Drawing.Point(63, 22);
  1617. this.textBox_Mode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1618. this.textBox_Mode.Name = "textBox_Mode";
  1619. this.textBox_Mode.Size = new System.Drawing.Size(180, 26);
  1620. this.textBox_Mode.TabIndex = 2;
  1621. this.textBox_Mode.Text = "---";
  1622. //
  1623. // label6
  1624. //
  1625. this.label6.AutoSize = true;
  1626. this.label6.Location = new System.Drawing.Point(7, 51);
  1627. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1628. this.label6.Name = "label6";
  1629. this.label6.Size = new System.Drawing.Size(37, 20);
  1630. this.label6.TabIndex = 2;
  1631. this.label6.Text = "序列";
  1632. //
  1633. // groupBox10
  1634. //
  1635. this.groupBox10.Controls.Add(this.comboBox_SpeedSing);
  1636. this.groupBox10.Controls.Add(this.comboBox_SerNum);
  1637. this.groupBox10.Controls.Add(this.comboBox_NoWatch);
  1638. this.groupBox10.Controls.Add(this.comboBox_DownDec);
  1639. this.groupBox10.Controls.Add(this.comboBox_StartMode);
  1640. this.groupBox10.Controls.Add(this.button_Write_Config);
  1641. this.groupBox10.Controls.Add(this.button_Read_Config);
  1642. this.groupBox10.Controls.Add(this.label27);
  1643. this.groupBox10.Controls.Add(this.label26);
  1644. this.groupBox10.Controls.Add(this.textBox_Config_SPORT_K);
  1645. this.groupBox10.Controls.Add(this.textBox_Config_SMART_K);
  1646. this.groupBox10.Controls.Add(this.textBox_Config_NORM_Acc);
  1647. this.groupBox10.Controls.Add(this.textBox_Config_TURBO_Acc);
  1648. this.groupBox10.Controls.Add(this.textBox_Config_TURBO_K);
  1649. this.groupBox10.Controls.Add(this.textBox_Config_SPORT_Acc);
  1650. this.groupBox10.Controls.Add(this.textBox_Config_SMART_Acc);
  1651. this.groupBox10.Controls.Add(this.label25);
  1652. this.groupBox10.Controls.Add(this.textBox_Config_NORM_K);
  1653. this.groupBox10.Controls.Add(this.textBox_Config_ECO_Acc);
  1654. this.groupBox10.Controls.Add(this.label31);
  1655. this.groupBox10.Controls.Add(this.label30);
  1656. this.groupBox10.Controls.Add(this.label34);
  1657. this.groupBox10.Controls.Add(this.textBox_Config_GasMode);
  1658. this.groupBox10.Controls.Add(this.textBox_Config_ECO_K);
  1659. this.groupBox10.Controls.Add(this.textBox_Config_WalkMotorSpeed);
  1660. this.groupBox10.Controls.Add(this.textBox_Config_WheelAdj);
  1661. this.groupBox10.Controls.Add(this.textBox_Config_WalkSpeedLimit);
  1662. this.groupBox10.Controls.Add(this.textBox_Config_UV_Protect);
  1663. this.groupBox10.Controls.Add(this.label29);
  1664. this.groupBox10.Controls.Add(this.label33);
  1665. this.groupBox10.Controls.Add(this.textBox_Config_CadenceNum);
  1666. this.groupBox10.Controls.Add(this.textBox_Config_WheelSize);
  1667. this.groupBox10.Controls.Add(this.textBox_Config_MaxSpeed);
  1668. this.groupBox10.Controls.Add(this.label28);
  1669. this.groupBox10.Controls.Add(this.label32);
  1670. this.groupBox10.Controls.Add(this.textBox_Config_T_Alarm);
  1671. this.groupBox10.Controls.Add(this.textBox_Config_StopTime);
  1672. this.groupBox10.Controls.Add(this.label126);
  1673. this.groupBox10.Controls.Add(this.label63);
  1674. this.groupBox10.Controls.Add(this.label62);
  1675. this.groupBox10.Controls.Add(this.label125);
  1676. this.groupBox10.Controls.Add(this.label124);
  1677. this.groupBox10.Controls.Add(this.label21);
  1678. this.groupBox10.Controls.Add(this.textBox_Config_MaxCurrent);
  1679. this.groupBox10.Controls.Add(this.textBox_Config_SpeedNum);
  1680. this.groupBox10.Controls.Add(this.label61);
  1681. this.groupBox10.Controls.Add(this.label20);
  1682. this.groupBox10.Controls.Add(this.textBox_Config_Teeth_B);
  1683. this.groupBox10.Controls.Add(this.textBox_Config_T_Protect);
  1684. this.groupBox10.Controls.Add(this.label60);
  1685. this.groupBox10.Controls.Add(this.label19);
  1686. this.groupBox10.Controls.Add(this.label11);
  1687. this.groupBox10.Controls.Add(this.label18);
  1688. this.groupBox10.Controls.Add(this.label13);
  1689. this.groupBox10.Controls.Add(this.label17);
  1690. this.groupBox10.Controls.Add(this.label14);
  1691. this.groupBox10.Controls.Add(this.label16);
  1692. this.groupBox10.Controls.Add(this.label15);
  1693. this.groupBox10.Controls.Add(this.label12);
  1694. this.groupBox10.Controls.Add(this.label59);
  1695. this.groupBox10.Controls.Add(this.label10);
  1696. this.groupBox10.Controls.Add(this.textBox_Config_Teeth_F);
  1697. this.groupBox10.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1698. this.groupBox10.Location = new System.Drawing.Point(251, 343);
  1699. this.groupBox10.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1700. this.groupBox10.Name = "groupBox10";
  1701. this.groupBox10.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1702. this.groupBox10.Size = new System.Drawing.Size(325, 442);
  1703. this.groupBox10.TabIndex = 9;
  1704. this.groupBox10.TabStop = false;
  1705. this.groupBox10.Text = "用户参数1";
  1706. this.groupBox10.Visible = false;
  1707. //
  1708. // comboBox_SpeedSing
  1709. //
  1710. this.comboBox_SpeedSing.FormattingEnabled = true;
  1711. this.comboBox_SpeedSing.Items.AddRange(new object[] {
  1712. "传感器",
  1713. "踏频",
  1714. "通信"});
  1715. this.comboBox_SpeedSing.Location = new System.Drawing.Point(251, 336);
  1716. this.comboBox_SpeedSing.Name = "comboBox_SpeedSing";
  1717. this.comboBox_SpeedSing.Size = new System.Drawing.Size(70, 28);
  1718. this.comboBox_SpeedSing.TabIndex = 7;
  1719. //
  1720. // comboBox_SerNum
  1721. //
  1722. this.comboBox_SerNum.FormattingEnabled = true;
  1723. this.comboBox_SerNum.Items.AddRange(new object[] {
  1724. "0",
  1725. "1",
  1726. "2",
  1727. "3",
  1728. "4",
  1729. "5",
  1730. "6",
  1731. "7",
  1732. "8",
  1733. "9",
  1734. "10",
  1735. "11",
  1736. "12",
  1737. "13",
  1738. "14",
  1739. "15"});
  1740. this.comboBox_SerNum.Location = new System.Drawing.Point(80, 336);
  1741. this.comboBox_SerNum.Name = "comboBox_SerNum";
  1742. this.comboBox_SerNum.Size = new System.Drawing.Size(70, 28);
  1743. this.comboBox_SerNum.TabIndex = 6;
  1744. //
  1745. // comboBox_NoWatch
  1746. //
  1747. this.comboBox_NoWatch.FormattingEnabled = true;
  1748. this.comboBox_NoWatch.Items.AddRange(new object[] {
  1749. "有",
  1750. "无"});
  1751. this.comboBox_NoWatch.Location = new System.Drawing.Point(80, 282);
  1752. this.comboBox_NoWatch.Name = "comboBox_NoWatch";
  1753. this.comboBox_NoWatch.Size = new System.Drawing.Size(70, 28);
  1754. this.comboBox_NoWatch.TabIndex = 5;
  1755. //
  1756. // comboBox_DownDec
  1757. //
  1758. this.comboBox_DownDec.FormattingEnabled = true;
  1759. this.comboBox_DownDec.Items.AddRange(new object[] {
  1760. "超慢",
  1761. "慢",
  1762. "正常",
  1763. "快",
  1764. "超快"});
  1765. this.comboBox_DownDec.Location = new System.Drawing.Point(80, 124);
  1766. this.comboBox_DownDec.Name = "comboBox_DownDec";
  1767. this.comboBox_DownDec.Size = new System.Drawing.Size(70, 28);
  1768. this.comboBox_DownDec.TabIndex = 4;
  1769. //
  1770. // comboBox_StartMode
  1771. //
  1772. this.comboBox_StartMode.FormattingEnabled = true;
  1773. this.comboBox_StartMode.Items.AddRange(new object[] {
  1774. "柔和",
  1775. "正常",
  1776. "强劲"});
  1777. this.comboBox_StartMode.Location = new System.Drawing.Point(80, 44);
  1778. this.comboBox_StartMode.Name = "comboBox_StartMode";
  1779. this.comboBox_StartMode.Size = new System.Drawing.Size(70, 28);
  1780. this.comboBox_StartMode.TabIndex = 4;
  1781. //
  1782. // button_Write_Config
  1783. //
  1784. this.button_Write_Config.Enabled = false;
  1785. this.button_Write_Config.Location = new System.Drawing.Point(157, 414);
  1786. this.button_Write_Config.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1787. this.button_Write_Config.Name = "button_Write_Config";
  1788. this.button_Write_Config.Size = new System.Drawing.Size(67, 26);
  1789. this.button_Write_Config.TabIndex = 2;
  1790. this.button_Write_Config.Text = "写入";
  1791. this.button_Write_Config.UseVisualStyleBackColor = true;
  1792. this.button_Write_Config.Click += new System.EventHandler(this.button_Write_Config_Click);
  1793. //
  1794. // button_Read_Config
  1795. //
  1796. this.button_Read_Config.Location = new System.Drawing.Point(11, 414);
  1797. this.button_Read_Config.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1798. this.button_Read_Config.Name = "button_Read_Config";
  1799. this.button_Read_Config.Size = new System.Drawing.Size(67, 26);
  1800. this.button_Read_Config.TabIndex = 2;
  1801. this.button_Read_Config.Text = "查询";
  1802. this.button_Read_Config.UseVisualStyleBackColor = true;
  1803. this.button_Read_Config.Click += new System.EventHandler(this.button_Read_Config_Click);
  1804. //
  1805. // label27
  1806. //
  1807. this.label27.AutoSize = true;
  1808. this.label27.Location = new System.Drawing.Point(153, 75);
  1809. this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1810. this.label27.Name = "label27";
  1811. this.label27.Size = new System.Drawing.Size(82, 20);
  1812. this.label27.TabIndex = 3;
  1813. this.label27.Text = "NORM增益";
  1814. //
  1815. // label26
  1816. //
  1817. this.label26.AutoSize = true;
  1818. this.label26.Location = new System.Drawing.Point(153, 48);
  1819. this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1820. this.label26.Name = "label26";
  1821. this.label26.Size = new System.Drawing.Size(65, 20);
  1822. this.label26.TabIndex = 2;
  1823. this.label26.Text = "ECO加速";
  1824. //
  1825. // textBox_Config_SPORT_K
  1826. //
  1827. this.textBox_Config_SPORT_K.Location = new System.Drawing.Point(251, 125);
  1828. this.textBox_Config_SPORT_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1829. this.textBox_Config_SPORT_K.Name = "textBox_Config_SPORT_K";
  1830. this.textBox_Config_SPORT_K.Size = new System.Drawing.Size(70, 26);
  1831. this.textBox_Config_SPORT_K.TabIndex = 2;
  1832. //
  1833. // textBox_Config_SMART_K
  1834. //
  1835. this.textBox_Config_SMART_K.Location = new System.Drawing.Point(251, 230);
  1836. this.textBox_Config_SMART_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1837. this.textBox_Config_SMART_K.Name = "textBox_Config_SMART_K";
  1838. this.textBox_Config_SMART_K.Size = new System.Drawing.Size(70, 26);
  1839. this.textBox_Config_SMART_K.TabIndex = 2;
  1840. //
  1841. // textBox_Config_NORM_Acc
  1842. //
  1843. this.textBox_Config_NORM_Acc.Location = new System.Drawing.Point(251, 98);
  1844. this.textBox_Config_NORM_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1845. this.textBox_Config_NORM_Acc.Name = "textBox_Config_NORM_Acc";
  1846. this.textBox_Config_NORM_Acc.Size = new System.Drawing.Size(70, 26);
  1847. this.textBox_Config_NORM_Acc.TabIndex = 2;
  1848. //
  1849. // textBox_Config_TURBO_Acc
  1850. //
  1851. this.textBox_Config_TURBO_Acc.Location = new System.Drawing.Point(251, 204);
  1852. this.textBox_Config_TURBO_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1853. this.textBox_Config_TURBO_Acc.Name = "textBox_Config_TURBO_Acc";
  1854. this.textBox_Config_TURBO_Acc.Size = new System.Drawing.Size(70, 26);
  1855. this.textBox_Config_TURBO_Acc.TabIndex = 2;
  1856. //
  1857. // textBox_Config_TURBO_K
  1858. //
  1859. this.textBox_Config_TURBO_K.Location = new System.Drawing.Point(251, 178);
  1860. this.textBox_Config_TURBO_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1861. this.textBox_Config_TURBO_K.Name = "textBox_Config_TURBO_K";
  1862. this.textBox_Config_TURBO_K.Size = new System.Drawing.Size(70, 26);
  1863. this.textBox_Config_TURBO_K.TabIndex = 2;
  1864. //
  1865. // textBox_Config_SPORT_Acc
  1866. //
  1867. this.textBox_Config_SPORT_Acc.Location = new System.Drawing.Point(251, 152);
  1868. this.textBox_Config_SPORT_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1869. this.textBox_Config_SPORT_Acc.Name = "textBox_Config_SPORT_Acc";
  1870. this.textBox_Config_SPORT_Acc.Size = new System.Drawing.Size(70, 26);
  1871. this.textBox_Config_SPORT_Acc.TabIndex = 2;
  1872. //
  1873. // textBox_Config_SMART_Acc
  1874. //
  1875. this.textBox_Config_SMART_Acc.Location = new System.Drawing.Point(251, 256);
  1876. this.textBox_Config_SMART_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1877. this.textBox_Config_SMART_Acc.Name = "textBox_Config_SMART_Acc";
  1878. this.textBox_Config_SMART_Acc.Size = new System.Drawing.Size(70, 26);
  1879. this.textBox_Config_SMART_Acc.TabIndex = 2;
  1880. //
  1881. // label25
  1882. //
  1883. this.label25.AutoSize = true;
  1884. this.label25.Location = new System.Drawing.Point(153, 20);
  1885. this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1886. this.label25.Name = "label25";
  1887. this.label25.Size = new System.Drawing.Size(65, 20);
  1888. this.label25.TabIndex = 2;
  1889. this.label25.Text = "ECO增益";
  1890. //
  1891. // textBox_Config_NORM_K
  1892. //
  1893. this.textBox_Config_NORM_K.Location = new System.Drawing.Point(251, 72);
  1894. this.textBox_Config_NORM_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1895. this.textBox_Config_NORM_K.Name = "textBox_Config_NORM_K";
  1896. this.textBox_Config_NORM_K.Size = new System.Drawing.Size(70, 26);
  1897. this.textBox_Config_NORM_K.TabIndex = 2;
  1898. //
  1899. // textBox_Config_ECO_Acc
  1900. //
  1901. this.textBox_Config_ECO_Acc.Location = new System.Drawing.Point(251, 45);
  1902. this.textBox_Config_ECO_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1903. this.textBox_Config_ECO_Acc.Name = "textBox_Config_ECO_Acc";
  1904. this.textBox_Config_ECO_Acc.Size = new System.Drawing.Size(70, 26);
  1905. this.textBox_Config_ECO_Acc.TabIndex = 2;
  1906. //
  1907. // label31
  1908. //
  1909. this.label31.AutoSize = true;
  1910. this.label31.Location = new System.Drawing.Point(153, 181);
  1911. this.label31.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1912. this.label31.Name = "label31";
  1913. this.label31.Size = new System.Drawing.Size(84, 20);
  1914. this.label31.TabIndex = 2;
  1915. this.label31.Text = "TURBO增益";
  1916. //
  1917. // label30
  1918. //
  1919. this.label30.AutoSize = true;
  1920. this.label30.Location = new System.Drawing.Point(153, 155);
  1921. this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1922. this.label30.Name = "label30";
  1923. this.label30.Size = new System.Drawing.Size(82, 20);
  1924. this.label30.TabIndex = 2;
  1925. this.label30.Text = "SPORT加速";
  1926. //
  1927. // label34
  1928. //
  1929. this.label34.AutoSize = true;
  1930. this.label34.Location = new System.Drawing.Point(153, 259);
  1931. this.label34.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1932. this.label34.Name = "label34";
  1933. this.label34.Size = new System.Drawing.Size(86, 20);
  1934. this.label34.TabIndex = 2;
  1935. this.label34.Text = "SMART加速";
  1936. //
  1937. // textBox_Config_GasMode
  1938. //
  1939. this.textBox_Config_GasMode.Location = new System.Drawing.Point(80, 17);
  1940. this.textBox_Config_GasMode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1941. this.textBox_Config_GasMode.Name = "textBox_Config_GasMode";
  1942. this.textBox_Config_GasMode.Size = new System.Drawing.Size(70, 26);
  1943. this.textBox_Config_GasMode.TabIndex = 2;
  1944. //
  1945. // textBox_Config_ECO_K
  1946. //
  1947. this.textBox_Config_ECO_K.Location = new System.Drawing.Point(251, 17);
  1948. this.textBox_Config_ECO_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1949. this.textBox_Config_ECO_K.Name = "textBox_Config_ECO_K";
  1950. this.textBox_Config_ECO_K.Size = new System.Drawing.Size(70, 26);
  1951. this.textBox_Config_ECO_K.TabIndex = 2;
  1952. //
  1953. // textBox_Config_WalkMotorSpeed
  1954. //
  1955. this.textBox_Config_WalkMotorSpeed.Location = new System.Drawing.Point(251, 390);
  1956. this.textBox_Config_WalkMotorSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1957. this.textBox_Config_WalkMotorSpeed.Name = "textBox_Config_WalkMotorSpeed";
  1958. this.textBox_Config_WalkMotorSpeed.Size = new System.Drawing.Size(70, 26);
  1959. this.textBox_Config_WalkMotorSpeed.TabIndex = 2;
  1960. //
  1961. // textBox_Config_WheelAdj
  1962. //
  1963. this.textBox_Config_WheelAdj.Location = new System.Drawing.Point(251, 364);
  1964. this.textBox_Config_WheelAdj.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1965. this.textBox_Config_WheelAdj.Name = "textBox_Config_WheelAdj";
  1966. this.textBox_Config_WheelAdj.Size = new System.Drawing.Size(70, 26);
  1967. this.textBox_Config_WheelAdj.TabIndex = 2;
  1968. //
  1969. // textBox_Config_WalkSpeedLimit
  1970. //
  1971. this.textBox_Config_WalkSpeedLimit.Location = new System.Drawing.Point(80, 390);
  1972. this.textBox_Config_WalkSpeedLimit.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1973. this.textBox_Config_WalkSpeedLimit.Name = "textBox_Config_WalkSpeedLimit";
  1974. this.textBox_Config_WalkSpeedLimit.Size = new System.Drawing.Size(70, 26);
  1975. this.textBox_Config_WalkSpeedLimit.TabIndex = 2;
  1976. //
  1977. // textBox_Config_UV_Protect
  1978. //
  1979. this.textBox_Config_UV_Protect.Location = new System.Drawing.Point(80, 364);
  1980. this.textBox_Config_UV_Protect.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1981. this.textBox_Config_UV_Protect.Name = "textBox_Config_UV_Protect";
  1982. this.textBox_Config_UV_Protect.Size = new System.Drawing.Size(70, 26);
  1983. this.textBox_Config_UV_Protect.TabIndex = 2;
  1984. //
  1985. // label29
  1986. //
  1987. this.label29.AutoSize = true;
  1988. this.label29.Location = new System.Drawing.Point(153, 128);
  1989. this.label29.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1990. this.label29.Name = "label29";
  1991. this.label29.Size = new System.Drawing.Size(82, 20);
  1992. this.label29.TabIndex = 2;
  1993. this.label29.Text = "SPORT增益";
  1994. //
  1995. // label33
  1996. //
  1997. this.label33.AutoSize = true;
  1998. this.label33.Location = new System.Drawing.Point(153, 233);
  1999. this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2000. this.label33.Name = "label33";
  2001. this.label33.Size = new System.Drawing.Size(86, 20);
  2002. this.label33.TabIndex = 2;
  2003. this.label33.Text = "SMART增益";
  2004. //
  2005. // textBox_Config_CadenceNum
  2006. //
  2007. this.textBox_Config_CadenceNum.Location = new System.Drawing.Point(251, 310);
  2008. this.textBox_Config_CadenceNum.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2009. this.textBox_Config_CadenceNum.Name = "textBox_Config_CadenceNum";
  2010. this.textBox_Config_CadenceNum.Size = new System.Drawing.Size(70, 26);
  2011. this.textBox_Config_CadenceNum.TabIndex = 2;
  2012. //
  2013. // textBox_Config_WheelSize
  2014. //
  2015. this.textBox_Config_WheelSize.Location = new System.Drawing.Point(80, 310);
  2016. this.textBox_Config_WheelSize.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2017. this.textBox_Config_WheelSize.Name = "textBox_Config_WheelSize";
  2018. this.textBox_Config_WheelSize.Size = new System.Drawing.Size(70, 26);
  2019. this.textBox_Config_WheelSize.TabIndex = 2;
  2020. //
  2021. // textBox_Config_MaxSpeed
  2022. //
  2023. this.textBox_Config_MaxSpeed.Location = new System.Drawing.Point(80, 98);
  2024. this.textBox_Config_MaxSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2025. this.textBox_Config_MaxSpeed.Name = "textBox_Config_MaxSpeed";
  2026. this.textBox_Config_MaxSpeed.Size = new System.Drawing.Size(70, 26);
  2027. this.textBox_Config_MaxSpeed.TabIndex = 2;
  2028. //
  2029. // label28
  2030. //
  2031. this.label28.AutoSize = true;
  2032. this.label28.Location = new System.Drawing.Point(153, 101);
  2033. this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2034. this.label28.Name = "label28";
  2035. this.label28.Size = new System.Drawing.Size(82, 20);
  2036. this.label28.TabIndex = 2;
  2037. this.label28.Text = "NORM加速";
  2038. //
  2039. // label32
  2040. //
  2041. this.label32.AutoSize = true;
  2042. this.label32.Location = new System.Drawing.Point(153, 207);
  2043. this.label32.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2044. this.label32.Name = "label32";
  2045. this.label32.Size = new System.Drawing.Size(84, 20);
  2046. this.label32.TabIndex = 2;
  2047. this.label32.Text = "TURBO加速";
  2048. //
  2049. // textBox_Config_T_Alarm
  2050. //
  2051. this.textBox_Config_T_Alarm.Location = new System.Drawing.Point(80, 230);
  2052. this.textBox_Config_T_Alarm.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2053. this.textBox_Config_T_Alarm.Name = "textBox_Config_T_Alarm";
  2054. this.textBox_Config_T_Alarm.Size = new System.Drawing.Size(70, 26);
  2055. this.textBox_Config_T_Alarm.TabIndex = 2;
  2056. //
  2057. // textBox_Config_StopTime
  2058. //
  2059. this.textBox_Config_StopTime.Location = new System.Drawing.Point(80, 72);
  2060. this.textBox_Config_StopTime.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2061. this.textBox_Config_StopTime.Name = "textBox_Config_StopTime";
  2062. this.textBox_Config_StopTime.Size = new System.Drawing.Size(70, 26);
  2063. this.textBox_Config_StopTime.TabIndex = 2;
  2064. //
  2065. // label126
  2066. //
  2067. this.label126.AutoSize = true;
  2068. this.label126.Location = new System.Drawing.Point(153, 393);
  2069. this.label126.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2070. this.label126.Name = "label126";
  2071. this.label126.Size = new System.Drawing.Size(65, 20);
  2072. this.label126.TabIndex = 2;
  2073. this.label126.Text = "推行转速";
  2074. //
  2075. // label63
  2076. //
  2077. this.label63.AutoSize = true;
  2078. this.label63.Location = new System.Drawing.Point(153, 367);
  2079. this.label63.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2080. this.label63.Name = "label63";
  2081. this.label63.Size = new System.Drawing.Size(79, 20);
  2082. this.label63.TabIndex = 2;
  2083. this.label63.Text = "轮胎微调值";
  2084. //
  2085. // label62
  2086. //
  2087. this.label62.AutoSize = true;
  2088. this.label62.Location = new System.Drawing.Point(153, 340);
  2089. this.label62.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2090. this.label62.Name = "label62";
  2091. this.label62.Size = new System.Drawing.Size(93, 20);
  2092. this.label62.TabIndex = 2;
  2093. this.label62.Text = "无速度传感器";
  2094. //
  2095. // label125
  2096. //
  2097. this.label125.AutoSize = true;
  2098. this.label125.Location = new System.Drawing.Point(9, 393);
  2099. this.label125.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2100. this.label125.Name = "label125";
  2101. this.label125.Size = new System.Drawing.Size(65, 20);
  2102. this.label125.TabIndex = 2;
  2103. this.label125.Text = "推行限速";
  2104. //
  2105. // label124
  2106. //
  2107. this.label124.AutoSize = true;
  2108. this.label124.Location = new System.Drawing.Point(9, 367);
  2109. this.label124.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2110. this.label124.Name = "label124";
  2111. this.label124.Size = new System.Drawing.Size(65, 20);
  2112. this.label124.TabIndex = 2;
  2113. this.label124.Text = "低压保护";
  2114. //
  2115. // label21
  2116. //
  2117. this.label21.AutoSize = true;
  2118. this.label21.Location = new System.Drawing.Point(9, 340);
  2119. this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2120. this.label21.Name = "label21";
  2121. this.label21.Size = new System.Drawing.Size(65, 20);
  2122. this.label21.TabIndex = 2;
  2123. this.label21.Text = "电机系列";
  2124. //
  2125. // textBox_Config_MaxCurrent
  2126. //
  2127. this.textBox_Config_MaxCurrent.Location = new System.Drawing.Point(80, 204);
  2128. this.textBox_Config_MaxCurrent.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2129. this.textBox_Config_MaxCurrent.Name = "textBox_Config_MaxCurrent";
  2130. this.textBox_Config_MaxCurrent.Size = new System.Drawing.Size(70, 26);
  2131. this.textBox_Config_MaxCurrent.TabIndex = 2;
  2132. //
  2133. // textBox_Config_SpeedNum
  2134. //
  2135. this.textBox_Config_SpeedNum.Location = new System.Drawing.Point(251, 283);
  2136. this.textBox_Config_SpeedNum.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2137. this.textBox_Config_SpeedNum.Name = "textBox_Config_SpeedNum";
  2138. this.textBox_Config_SpeedNum.Size = new System.Drawing.Size(70, 26);
  2139. this.textBox_Config_SpeedNum.TabIndex = 2;
  2140. //
  2141. // label61
  2142. //
  2143. this.label61.AutoSize = true;
  2144. this.label61.Location = new System.Drawing.Point(153, 313);
  2145. this.label61.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2146. this.label61.Name = "label61";
  2147. this.label61.Size = new System.Drawing.Size(93, 20);
  2148. this.label61.TabIndex = 2;
  2149. this.label61.Text = "踏频启动个数";
  2150. //
  2151. // label20
  2152. //
  2153. this.label20.AutoSize = true;
  2154. this.label20.Location = new System.Drawing.Point(9, 313);
  2155. this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2156. this.label20.Name = "label20";
  2157. this.label20.Size = new System.Drawing.Size(65, 20);
  2158. this.label20.TabIndex = 2;
  2159. this.label20.Text = "轮胎周长";
  2160. //
  2161. // textBox_Config_Teeth_B
  2162. //
  2163. this.textBox_Config_Teeth_B.Location = new System.Drawing.Point(80, 178);
  2164. this.textBox_Config_Teeth_B.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2165. this.textBox_Config_Teeth_B.Name = "textBox_Config_Teeth_B";
  2166. this.textBox_Config_Teeth_B.Size = new System.Drawing.Size(70, 26);
  2167. this.textBox_Config_Teeth_B.TabIndex = 2;
  2168. //
  2169. // textBox_Config_T_Protect
  2170. //
  2171. this.textBox_Config_T_Protect.Location = new System.Drawing.Point(80, 256);
  2172. this.textBox_Config_T_Protect.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2173. this.textBox_Config_T_Protect.Name = "textBox_Config_T_Protect";
  2174. this.textBox_Config_T_Protect.Size = new System.Drawing.Size(70, 26);
  2175. this.textBox_Config_T_Protect.TabIndex = 2;
  2176. //
  2177. // label60
  2178. //
  2179. this.label60.AutoSize = true;
  2180. this.label60.Location = new System.Drawing.Point(153, 286);
  2181. this.label60.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2182. this.label60.Name = "label60";
  2183. this.label60.Size = new System.Drawing.Size(93, 20);
  2184. this.label60.TabIndex = 2;
  2185. this.label60.Text = "速度信号个数";
  2186. //
  2187. // label19
  2188. //
  2189. this.label19.AutoSize = true;
  2190. this.label19.Location = new System.Drawing.Point(9, 286);
  2191. this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2192. this.label19.Name = "label19";
  2193. this.label19.Size = new System.Drawing.Size(51, 20);
  2194. this.label19.TabIndex = 2;
  2195. this.label19.Text = "无码表";
  2196. //
  2197. // label11
  2198. //
  2199. this.label11.AutoSize = true;
  2200. this.label11.Location = new System.Drawing.Point(9, 75);
  2201. this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2202. this.label11.Name = "label11";
  2203. this.label11.Size = new System.Drawing.Size(65, 20);
  2204. this.label11.TabIndex = 2;
  2205. this.label11.Text = "停机时间";
  2206. //
  2207. // label18
  2208. //
  2209. this.label18.AutoSize = true;
  2210. this.label18.Location = new System.Drawing.Point(9, 259);
  2211. this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2212. this.label18.Name = "label18";
  2213. this.label18.Size = new System.Drawing.Size(65, 20);
  2214. this.label18.TabIndex = 2;
  2215. this.label18.Text = "温度保护";
  2216. //
  2217. // label13
  2218. //
  2219. this.label13.AutoSize = true;
  2220. this.label13.Location = new System.Drawing.Point(9, 128);
  2221. this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2222. this.label13.Name = "label13";
  2223. this.label13.Size = new System.Drawing.Size(65, 20);
  2224. this.label13.TabIndex = 2;
  2225. this.label13.Text = "下降速度";
  2226. //
  2227. // label17
  2228. //
  2229. this.label17.AutoSize = true;
  2230. this.label17.Location = new System.Drawing.Point(9, 233);
  2231. this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2232. this.label17.Name = "label17";
  2233. this.label17.Size = new System.Drawing.Size(65, 20);
  2234. this.label17.TabIndex = 2;
  2235. this.label17.Text = "温度预警";
  2236. //
  2237. // label14
  2238. //
  2239. this.label14.AutoSize = true;
  2240. this.label14.Location = new System.Drawing.Point(9, 155);
  2241. this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2242. this.label14.Name = "label14";
  2243. this.label14.Size = new System.Drawing.Size(65, 20);
  2244. this.label14.TabIndex = 2;
  2245. this.label14.Text = "前飞齿数";
  2246. //
  2247. // label16
  2248. //
  2249. this.label16.AutoSize = true;
  2250. this.label16.Location = new System.Drawing.Point(9, 207);
  2251. this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2252. this.label16.Name = "label16";
  2253. this.label16.Size = new System.Drawing.Size(51, 20);
  2254. this.label16.TabIndex = 2;
  2255. this.label16.Text = "限流值";
  2256. //
  2257. // label15
  2258. //
  2259. this.label15.AutoSize = true;
  2260. this.label15.Location = new System.Drawing.Point(9, 181);
  2261. this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2262. this.label15.Name = "label15";
  2263. this.label15.Size = new System.Drawing.Size(65, 20);
  2264. this.label15.TabIndex = 2;
  2265. this.label15.Text = "后飞齿数";
  2266. //
  2267. // label12
  2268. //
  2269. this.label12.AutoSize = true;
  2270. this.label12.Location = new System.Drawing.Point(9, 101);
  2271. this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2272. this.label12.Name = "label12";
  2273. this.label12.Size = new System.Drawing.Size(51, 20);
  2274. this.label12.TabIndex = 2;
  2275. this.label12.Text = "限速值";
  2276. //
  2277. // label59
  2278. //
  2279. this.label59.AutoSize = true;
  2280. this.label59.Location = new System.Drawing.Point(9, 20);
  2281. this.label59.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2282. this.label59.Name = "label59";
  2283. this.label59.Size = new System.Drawing.Size(65, 20);
  2284. this.label59.TabIndex = 2;
  2285. this.label59.Text = "指拨模式";
  2286. //
  2287. // label10
  2288. //
  2289. this.label10.AutoSize = true;
  2290. this.label10.Location = new System.Drawing.Point(9, 48);
  2291. this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2292. this.label10.Name = "label10";
  2293. this.label10.Size = new System.Drawing.Size(65, 20);
  2294. this.label10.TabIndex = 2;
  2295. this.label10.Text = "启动模式";
  2296. //
  2297. // textBox_Config_Teeth_F
  2298. //
  2299. this.textBox_Config_Teeth_F.Location = new System.Drawing.Point(80, 152);
  2300. this.textBox_Config_Teeth_F.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2301. this.textBox_Config_Teeth_F.Name = "textBox_Config_Teeth_F";
  2302. this.textBox_Config_Teeth_F.Size = new System.Drawing.Size(70, 26);
  2303. this.textBox_Config_Teeth_F.TabIndex = 2;
  2304. //
  2305. // groupBox11
  2306. //
  2307. this.groupBox11.Controls.Add(this.button_Write_MotorConfig);
  2308. this.groupBox11.Controls.Add(this.button_Read_MortoConfig);
  2309. this.groupBox11.Controls.Add(this.textBox_Motor_Power);
  2310. this.groupBox11.Controls.Add(this.textBox_Motor_R);
  2311. this.groupBox11.Controls.Add(this.textBox_Motor_Speed);
  2312. this.groupBox11.Controls.Add(this.textBox_Motor_Voltage);
  2313. this.groupBox11.Controls.Add(this.textBox_Motor_E);
  2314. this.groupBox11.Controls.Add(this.textBox_Motor_Lq);
  2315. this.groupBox11.Controls.Add(this.label45);
  2316. this.groupBox11.Controls.Add(this.textBox_Motor_Ld);
  2317. this.groupBox11.Controls.Add(this.label53);
  2318. this.groupBox11.Controls.Add(this.label47);
  2319. this.groupBox11.Controls.Add(this.label51);
  2320. this.groupBox11.Controls.Add(this.label52);
  2321. this.groupBox11.Controls.Add(this.label49);
  2322. this.groupBox11.Controls.Add(this.label50);
  2323. this.groupBox11.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2324. this.groupBox11.Location = new System.Drawing.Point(753, 343);
  2325. this.groupBox11.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2326. this.groupBox11.Name = "groupBox11";
  2327. this.groupBox11.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2328. this.groupBox11.Size = new System.Drawing.Size(313, 137);
  2329. this.groupBox11.TabIndex = 9;
  2330. this.groupBox11.TabStop = false;
  2331. this.groupBox11.Text = "马达参数";
  2332. this.groupBox11.Visible = false;
  2333. //
  2334. // button_Write_MotorConfig
  2335. //
  2336. this.button_Write_MotorConfig.Enabled = false;
  2337. this.button_Write_MotorConfig.Location = new System.Drawing.Point(246, 99);
  2338. this.button_Write_MotorConfig.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2339. this.button_Write_MotorConfig.Name = "button_Write_MotorConfig";
  2340. this.button_Write_MotorConfig.Size = new System.Drawing.Size(55, 28);
  2341. this.button_Write_MotorConfig.TabIndex = 2;
  2342. this.button_Write_MotorConfig.Text = "写入";
  2343. this.button_Write_MotorConfig.UseVisualStyleBackColor = true;
  2344. this.button_Write_MotorConfig.Click += new System.EventHandler(this.button_Write_MotorConfig_Click);
  2345. //
  2346. // button_Read_MortoConfig
  2347. //
  2348. this.button_Read_MortoConfig.Location = new System.Drawing.Point(169, 99);
  2349. this.button_Read_MortoConfig.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2350. this.button_Read_MortoConfig.Name = "button_Read_MortoConfig";
  2351. this.button_Read_MortoConfig.Size = new System.Drawing.Size(55, 28);
  2352. this.button_Read_MortoConfig.TabIndex = 2;
  2353. this.button_Read_MortoConfig.Text = "查询";
  2354. this.button_Read_MortoConfig.UseVisualStyleBackColor = true;
  2355. this.button_Read_MortoConfig.Click += new System.EventHandler(this.button_Read_MortoConfig_Click);
  2356. //
  2357. // textBox_Motor_Power
  2358. //
  2359. this.textBox_Motor_Power.Location = new System.Drawing.Point(82, 22);
  2360. this.textBox_Motor_Power.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2361. this.textBox_Motor_Power.Name = "textBox_Motor_Power";
  2362. this.textBox_Motor_Power.Size = new System.Drawing.Size(70, 26);
  2363. this.textBox_Motor_Power.TabIndex = 2;
  2364. //
  2365. // textBox_Motor_R
  2366. //
  2367. this.textBox_Motor_R.Location = new System.Drawing.Point(246, 22);
  2368. this.textBox_Motor_R.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2369. this.textBox_Motor_R.Name = "textBox_Motor_R";
  2370. this.textBox_Motor_R.Size = new System.Drawing.Size(55, 26);
  2371. this.textBox_Motor_R.TabIndex = 2;
  2372. //
  2373. // textBox_Motor_Speed
  2374. //
  2375. this.textBox_Motor_Speed.Location = new System.Drawing.Point(82, 48);
  2376. this.textBox_Motor_Speed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2377. this.textBox_Motor_Speed.Name = "textBox_Motor_Speed";
  2378. this.textBox_Motor_Speed.Size = new System.Drawing.Size(70, 26);
  2379. this.textBox_Motor_Speed.TabIndex = 2;
  2380. //
  2381. // textBox_Motor_Voltage
  2382. //
  2383. this.textBox_Motor_Voltage.Location = new System.Drawing.Point(246, 74);
  2384. this.textBox_Motor_Voltage.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2385. this.textBox_Motor_Voltage.Name = "textBox_Motor_Voltage";
  2386. this.textBox_Motor_Voltage.Size = new System.Drawing.Size(55, 26);
  2387. this.textBox_Motor_Voltage.TabIndex = 2;
  2388. //
  2389. // textBox_Motor_E
  2390. //
  2391. this.textBox_Motor_E.Location = new System.Drawing.Point(82, 100);
  2392. this.textBox_Motor_E.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2393. this.textBox_Motor_E.Name = "textBox_Motor_E";
  2394. this.textBox_Motor_E.Size = new System.Drawing.Size(70, 26);
  2395. this.textBox_Motor_E.TabIndex = 2;
  2396. //
  2397. // textBox_Motor_Lq
  2398. //
  2399. this.textBox_Motor_Lq.Location = new System.Drawing.Point(246, 48);
  2400. this.textBox_Motor_Lq.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2401. this.textBox_Motor_Lq.Name = "textBox_Motor_Lq";
  2402. this.textBox_Motor_Lq.Size = new System.Drawing.Size(55, 26);
  2403. this.textBox_Motor_Lq.TabIndex = 2;
  2404. //
  2405. // label45
  2406. //
  2407. this.label45.AutoSize = true;
  2408. this.label45.Location = new System.Drawing.Point(9, 51);
  2409. this.label45.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2410. this.label45.Name = "label45";
  2411. this.label45.Size = new System.Drawing.Size(65, 20);
  2412. this.label45.TabIndex = 2;
  2413. this.label45.Text = "额定转速";
  2414. //
  2415. // textBox_Motor_Ld
  2416. //
  2417. this.textBox_Motor_Ld.Location = new System.Drawing.Point(82, 74);
  2418. this.textBox_Motor_Ld.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2419. this.textBox_Motor_Ld.Name = "textBox_Motor_Ld";
  2420. this.textBox_Motor_Ld.Size = new System.Drawing.Size(70, 26);
  2421. this.textBox_Motor_Ld.TabIndex = 2;
  2422. //
  2423. // label53
  2424. //
  2425. this.label53.AutoSize = true;
  2426. this.label53.Location = new System.Drawing.Point(9, 25);
  2427. this.label53.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2428. this.label53.Name = "label53";
  2429. this.label53.Size = new System.Drawing.Size(65, 20);
  2430. this.label53.TabIndex = 2;
  2431. this.label53.Text = "额定功率";
  2432. //
  2433. // label47
  2434. //
  2435. this.label47.AutoSize = true;
  2436. this.label47.Location = new System.Drawing.Point(169, 51);
  2437. this.label47.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2438. this.label47.Name = "label47";
  2439. this.label47.Size = new System.Drawing.Size(53, 20);
  2440. this.label47.TabIndex = 2;
  2441. this.label47.Text = "定子Lq";
  2442. //
  2443. // label51
  2444. //
  2445. this.label51.AutoSize = true;
  2446. this.label51.Location = new System.Drawing.Point(9, 103);
  2447. this.label51.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2448. this.label51.Name = "label51";
  2449. this.label51.Size = new System.Drawing.Size(65, 20);
  2450. this.label51.TabIndex = 2;
  2451. this.label51.Text = "反电动势";
  2452. //
  2453. // label52
  2454. //
  2455. this.label52.AutoSize = true;
  2456. this.label52.Location = new System.Drawing.Point(169, 25);
  2457. this.label52.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2458. this.label52.Name = "label52";
  2459. this.label52.Size = new System.Drawing.Size(65, 20);
  2460. this.label52.TabIndex = 2;
  2461. this.label52.Text = "定子电阻";
  2462. //
  2463. // label49
  2464. //
  2465. this.label49.AutoSize = true;
  2466. this.label49.Location = new System.Drawing.Point(9, 77);
  2467. this.label49.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2468. this.label49.Name = "label49";
  2469. this.label49.Size = new System.Drawing.Size(53, 20);
  2470. this.label49.TabIndex = 2;
  2471. this.label49.Text = "定子Ld";
  2472. //
  2473. // label50
  2474. //
  2475. this.label50.AutoSize = true;
  2476. this.label50.Location = new System.Drawing.Point(169, 77);
  2477. this.label50.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2478. this.label50.Name = "label50";
  2479. this.label50.Size = new System.Drawing.Size(65, 20);
  2480. this.label50.TabIndex = 2;
  2481. this.label50.Text = "额定电压";
  2482. //
  2483. // timer1
  2484. //
  2485. this.timer1.Enabled = true;
  2486. this.timer1.Interval = 20;
  2487. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  2488. //
  2489. // groupBox4
  2490. //
  2491. this.groupBox4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(193)))), ((int)(((byte)(144)))));
  2492. this.groupBox4.Controls.Add(this.textBox_Config_SpeedlimitAdj);
  2493. this.groupBox4.Controls.Add(this.label133);
  2494. this.groupBox4.Controls.Add(this.textBox_Config_SpeedlimitStop);
  2495. this.groupBox4.Controls.Add(this.label128);
  2496. this.groupBox4.Controls.Add(this.textBox_Config_SpeedlimitStart);
  2497. this.groupBox4.Controls.Add(this.label129);
  2498. this.groupBox4.Controls.Add(this.textBox_Config_Period);
  2499. this.groupBox4.Controls.Add(this.label130);
  2500. this.groupBox4.Controls.Add(this.textBox_Config_Pulse);
  2501. this.groupBox4.Controls.Add(this.label131);
  2502. this.groupBox4.Controls.Add(this.textBox_Config_SpeedAlarm);
  2503. this.groupBox4.Controls.Add(this.label132);
  2504. this.groupBox4.Controls.Add(this.comboBox_TailLightVol);
  2505. this.groupBox4.Controls.Add(this.comboBox_AttiSensor);
  2506. this.groupBox4.Controls.Add(this.comboBox_FrontLigthVol);
  2507. this.groupBox4.Controls.Add(this.comboBox_FrontLightMode);
  2508. this.groupBox4.Controls.Add(this.comboBox_TailLightMode);
  2509. this.groupBox4.Controls.Add(this.button_Write_Config_Ext);
  2510. this.groupBox4.Controls.Add(this.button_Read_Config_Ext);
  2511. this.groupBox4.Controls.Add(this.label123);
  2512. this.groupBox4.Controls.Add(this.label66);
  2513. this.groupBox4.Controls.Add(this.label122);
  2514. this.groupBox4.Controls.Add(this.label65);
  2515. this.groupBox4.Controls.Add(this.textBox_Config_Angle_Roll);
  2516. this.groupBox4.Controls.Add(this.label135);
  2517. this.groupBox4.Controls.Add(this.label121);
  2518. this.groupBox4.Controls.Add(this.label64);
  2519. this.groupBox4.Controls.Add(this.textBox_Config_Angle_Pitch);
  2520. this.groupBox4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2521. this.groupBox4.Location = new System.Drawing.Point(581, 343);
  2522. this.groupBox4.Name = "groupBox4";
  2523. this.groupBox4.Size = new System.Drawing.Size(168, 443);
  2524. this.groupBox4.TabIndex = 10;
  2525. this.groupBox4.TabStop = false;
  2526. this.groupBox4.Text = "用户参数2";
  2527. this.groupBox4.Visible = false;
  2528. //
  2529. // textBox_Config_SpeedlimitAdj
  2530. //
  2531. this.textBox_Config_SpeedlimitAdj.Location = new System.Drawing.Point(94, 344);
  2532. this.textBox_Config_SpeedlimitAdj.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2533. this.textBox_Config_SpeedlimitAdj.Name = "textBox_Config_SpeedlimitAdj";
  2534. this.textBox_Config_SpeedlimitAdj.Size = new System.Drawing.Size(70, 26);
  2535. this.textBox_Config_SpeedlimitAdj.TabIndex = 29;
  2536. //
  2537. // label133
  2538. //
  2539. this.label133.AutoSize = true;
  2540. this.label133.Location = new System.Drawing.Point(9, 347);
  2541. this.label133.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2542. this.label133.Name = "label133";
  2543. this.label133.Size = new System.Drawing.Size(65, 20);
  2544. this.label133.TabIndex = 28;
  2545. this.label133.Text = "限速微调";
  2546. //
  2547. // textBox_Config_SpeedlimitStop
  2548. //
  2549. this.textBox_Config_SpeedlimitStop.Location = new System.Drawing.Point(94, 318);
  2550. this.textBox_Config_SpeedlimitStop.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2551. this.textBox_Config_SpeedlimitStop.Name = "textBox_Config_SpeedlimitStop";
  2552. this.textBox_Config_SpeedlimitStop.Size = new System.Drawing.Size(70, 26);
  2553. this.textBox_Config_SpeedlimitStop.TabIndex = 27;
  2554. //
  2555. // label128
  2556. //
  2557. this.label128.AutoSize = true;
  2558. this.label128.Location = new System.Drawing.Point(9, 321);
  2559. this.label128.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2560. this.label128.Name = "label128";
  2561. this.label128.Size = new System.Drawing.Size(65, 20);
  2562. this.label128.TabIndex = 26;
  2563. this.label128.Text = "结束限速";
  2564. //
  2565. // textBox_Config_SpeedlimitStart
  2566. //
  2567. this.textBox_Config_SpeedlimitStart.Location = new System.Drawing.Point(94, 292);
  2568. this.textBox_Config_SpeedlimitStart.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2569. this.textBox_Config_SpeedlimitStart.Name = "textBox_Config_SpeedlimitStart";
  2570. this.textBox_Config_SpeedlimitStart.Size = new System.Drawing.Size(70, 26);
  2571. this.textBox_Config_SpeedlimitStart.TabIndex = 25;
  2572. //
  2573. // label129
  2574. //
  2575. this.label129.AutoSize = true;
  2576. this.label129.Location = new System.Drawing.Point(9, 295);
  2577. this.label129.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2578. this.label129.Name = "label129";
  2579. this.label129.Size = new System.Drawing.Size(65, 20);
  2580. this.label129.TabIndex = 24;
  2581. this.label129.Text = "起始限速";
  2582. //
  2583. // textBox_Config_Period
  2584. //
  2585. this.textBox_Config_Period.Location = new System.Drawing.Point(94, 266);
  2586. this.textBox_Config_Period.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2587. this.textBox_Config_Period.Name = "textBox_Config_Period";
  2588. this.textBox_Config_Period.Size = new System.Drawing.Size(70, 26);
  2589. this.textBox_Config_Period.TabIndex = 23;
  2590. //
  2591. // label130
  2592. //
  2593. this.label130.AutoSize = true;
  2594. this.label130.Location = new System.Drawing.Point(9, 269);
  2595. this.label130.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2596. this.label130.Name = "label130";
  2597. this.label130.Size = new System.Drawing.Size(65, 20);
  2598. this.label130.TabIndex = 22;
  2599. this.label130.Text = "尾灯周期";
  2600. //
  2601. // textBox_Config_Pulse
  2602. //
  2603. this.textBox_Config_Pulse.Location = new System.Drawing.Point(94, 240);
  2604. this.textBox_Config_Pulse.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2605. this.textBox_Config_Pulse.Name = "textBox_Config_Pulse";
  2606. this.textBox_Config_Pulse.Size = new System.Drawing.Size(70, 26);
  2607. this.textBox_Config_Pulse.TabIndex = 21;
  2608. //
  2609. // label131
  2610. //
  2611. this.label131.AutoSize = true;
  2612. this.label131.Location = new System.Drawing.Point(9, 243);
  2613. this.label131.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2614. this.label131.Name = "label131";
  2615. this.label131.Size = new System.Drawing.Size(65, 20);
  2616. this.label131.TabIndex = 20;
  2617. this.label131.Text = "尾灯脉宽";
  2618. //
  2619. // textBox_Config_SpeedAlarm
  2620. //
  2621. this.textBox_Config_SpeedAlarm.Location = new System.Drawing.Point(94, 214);
  2622. this.textBox_Config_SpeedAlarm.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2623. this.textBox_Config_SpeedAlarm.Name = "textBox_Config_SpeedAlarm";
  2624. this.textBox_Config_SpeedAlarm.Size = new System.Drawing.Size(70, 26);
  2625. this.textBox_Config_SpeedAlarm.TabIndex = 19;
  2626. //
  2627. // label132
  2628. //
  2629. this.label132.AutoSize = true;
  2630. this.label132.Location = new System.Drawing.Point(9, 217);
  2631. this.label132.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2632. this.label132.Name = "label132";
  2633. this.label132.Size = new System.Drawing.Size(65, 20);
  2634. this.label132.TabIndex = 18;
  2635. this.label132.Text = "报警阈值";
  2636. //
  2637. // comboBox_TailLightVol
  2638. //
  2639. this.comboBox_TailLightVol.FormattingEnabled = true;
  2640. this.comboBox_TailLightVol.Items.AddRange(new object[] {
  2641. "6V",
  2642. "12V",
  2643. "随电池",
  2644. "硬件"});
  2645. this.comboBox_TailLightVol.Location = new System.Drawing.Point(94, 186);
  2646. this.comboBox_TailLightVol.Name = "comboBox_TailLightVol";
  2647. this.comboBox_TailLightVol.Size = new System.Drawing.Size(70, 28);
  2648. this.comboBox_TailLightVol.TabIndex = 12;
  2649. //
  2650. // comboBox_AttiSensor
  2651. //
  2652. this.comboBox_AttiSensor.FormattingEnabled = true;
  2653. this.comboBox_AttiSensor.Items.AddRange(new object[] {
  2654. "不支持",
  2655. "支持"});
  2656. this.comboBox_AttiSensor.Location = new System.Drawing.Point(94, 74);
  2657. this.comboBox_AttiSensor.Name = "comboBox_AttiSensor";
  2658. this.comboBox_AttiSensor.Size = new System.Drawing.Size(70, 28);
  2659. this.comboBox_AttiSensor.TabIndex = 11;
  2660. //
  2661. // comboBox_FrontLigthVol
  2662. //
  2663. this.comboBox_FrontLigthVol.FormattingEnabled = true;
  2664. this.comboBox_FrontLigthVol.Items.AddRange(new object[] {
  2665. "6V",
  2666. "12V",
  2667. "随电池",
  2668. "硬件"});
  2669. this.comboBox_FrontLigthVol.Location = new System.Drawing.Point(94, 158);
  2670. this.comboBox_FrontLigthVol.Name = "comboBox_FrontLigthVol";
  2671. this.comboBox_FrontLigthVol.Size = new System.Drawing.Size(70, 28);
  2672. this.comboBox_FrontLigthVol.TabIndex = 9;
  2673. //
  2674. // comboBox_FrontLightMode
  2675. //
  2676. this.comboBox_FrontLightMode.FormattingEnabled = true;
  2677. this.comboBox_FrontLightMode.Items.AddRange(new object[] {
  2678. "模式1",
  2679. "模式2"});
  2680. this.comboBox_FrontLightMode.Location = new System.Drawing.Point(94, 102);
  2681. this.comboBox_FrontLightMode.Name = "comboBox_FrontLightMode";
  2682. this.comboBox_FrontLightMode.Size = new System.Drawing.Size(70, 28);
  2683. this.comboBox_FrontLightMode.TabIndex = 8;
  2684. //
  2685. // comboBox_TailLightMode
  2686. //
  2687. this.comboBox_TailLightMode.FormattingEnabled = true;
  2688. this.comboBox_TailLightMode.Items.AddRange(new object[] {
  2689. "模式1",
  2690. "模式2",
  2691. "模式3",
  2692. "模式4",
  2693. "模式5",
  2694. "模式6"});
  2695. this.comboBox_TailLightMode.Location = new System.Drawing.Point(94, 130);
  2696. this.comboBox_TailLightMode.Name = "comboBox_TailLightMode";
  2697. this.comboBox_TailLightMode.Size = new System.Drawing.Size(70, 28);
  2698. this.comboBox_TailLightMode.TabIndex = 8;
  2699. //
  2700. // button_Write_Config_Ext
  2701. //
  2702. this.button_Write_Config_Ext.Enabled = false;
  2703. this.button_Write_Config_Ext.Location = new System.Drawing.Point(99, 414);
  2704. this.button_Write_Config_Ext.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2705. this.button_Write_Config_Ext.Name = "button_Write_Config_Ext";
  2706. this.button_Write_Config_Ext.Size = new System.Drawing.Size(67, 26);
  2707. this.button_Write_Config_Ext.TabIndex = 2;
  2708. this.button_Write_Config_Ext.Text = "写入";
  2709. this.button_Write_Config_Ext.UseVisualStyleBackColor = true;
  2710. this.button_Write_Config_Ext.Click += new System.EventHandler(this.button_Write_Config_Ext_Click);
  2711. //
  2712. // button_Read_Config_Ext
  2713. //
  2714. this.button_Read_Config_Ext.Location = new System.Drawing.Point(10, 414);
  2715. this.button_Read_Config_Ext.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2716. this.button_Read_Config_Ext.Name = "button_Read_Config_Ext";
  2717. this.button_Read_Config_Ext.Size = new System.Drawing.Size(67, 26);
  2718. this.button_Read_Config_Ext.TabIndex = 2;
  2719. this.button_Read_Config_Ext.Text = "查询";
  2720. this.button_Read_Config_Ext.UseVisualStyleBackColor = true;
  2721. this.button_Read_Config_Ext.Click += new System.EventHandler(this.button_Read_Config_Ext_Click);
  2722. //
  2723. // label123
  2724. //
  2725. this.label123.AutoSize = true;
  2726. this.label123.Location = new System.Drawing.Point(9, 190);
  2727. this.label123.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2728. this.label123.Name = "label123";
  2729. this.label123.Size = new System.Drawing.Size(65, 20);
  2730. this.label123.TabIndex = 2;
  2731. this.label123.Text = "尾灯电压";
  2732. //
  2733. // label66
  2734. //
  2735. this.label66.AutoSize = true;
  2736. this.label66.Location = new System.Drawing.Point(9, 77);
  2737. this.label66.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2738. this.label66.Name = "label66";
  2739. this.label66.Size = new System.Drawing.Size(79, 20);
  2740. this.label66.TabIndex = 2;
  2741. this.label66.Text = "姿态传感器";
  2742. //
  2743. // label122
  2744. //
  2745. this.label122.AutoSize = true;
  2746. this.label122.Location = new System.Drawing.Point(9, 162);
  2747. this.label122.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2748. this.label122.Name = "label122";
  2749. this.label122.Size = new System.Drawing.Size(65, 20);
  2750. this.label122.TabIndex = 2;
  2751. this.label122.Text = "前灯电压";
  2752. //
  2753. // label65
  2754. //
  2755. this.label65.AutoSize = true;
  2756. this.label65.Location = new System.Drawing.Point(9, 51);
  2757. this.label65.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2758. this.label65.Name = "label65";
  2759. this.label65.Size = new System.Drawing.Size(79, 20);
  2760. this.label65.TabIndex = 2;
  2761. this.label65.Text = "横滚角零偏";
  2762. //
  2763. // textBox_Config_Angle_Roll
  2764. //
  2765. this.textBox_Config_Angle_Roll.Location = new System.Drawing.Point(94, 48);
  2766. this.textBox_Config_Angle_Roll.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2767. this.textBox_Config_Angle_Roll.Name = "textBox_Config_Angle_Roll";
  2768. this.textBox_Config_Angle_Roll.Size = new System.Drawing.Size(70, 26);
  2769. this.textBox_Config_Angle_Roll.TabIndex = 2;
  2770. //
  2771. // label135
  2772. //
  2773. this.label135.AutoSize = true;
  2774. this.label135.Location = new System.Drawing.Point(9, 106);
  2775. this.label135.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2776. this.label135.Name = "label135";
  2777. this.label135.Size = new System.Drawing.Size(65, 20);
  2778. this.label135.TabIndex = 2;
  2779. this.label135.Text = "前灯模式";
  2780. //
  2781. // label121
  2782. //
  2783. this.label121.AutoSize = true;
  2784. this.label121.Location = new System.Drawing.Point(9, 134);
  2785. this.label121.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2786. this.label121.Name = "label121";
  2787. this.label121.Size = new System.Drawing.Size(65, 20);
  2788. this.label121.TabIndex = 2;
  2789. this.label121.Text = "尾灯模式";
  2790. //
  2791. // label64
  2792. //
  2793. this.label64.AutoSize = true;
  2794. this.label64.Location = new System.Drawing.Point(9, 25);
  2795. this.label64.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2796. this.label64.Name = "label64";
  2797. this.label64.Size = new System.Drawing.Size(79, 20);
  2798. this.label64.TabIndex = 2;
  2799. this.label64.Text = "俯仰角零偏";
  2800. //
  2801. // textBox_Config_Angle_Pitch
  2802. //
  2803. this.textBox_Config_Angle_Pitch.Location = new System.Drawing.Point(94, 22);
  2804. this.textBox_Config_Angle_Pitch.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2805. this.textBox_Config_Angle_Pitch.Name = "textBox_Config_Angle_Pitch";
  2806. this.textBox_Config_Angle_Pitch.Size = new System.Drawing.Size(70, 26);
  2807. this.textBox_Config_Angle_Pitch.TabIndex = 2;
  2808. //
  2809. // groupBox12
  2810. //
  2811. this.groupBox12.Controls.Add(this.checkBox_ReadRideInfo);
  2812. this.groupBox12.Controls.Add(this.button_Read_RidedInfo);
  2813. this.groupBox12.Controls.Add(this.label71);
  2814. this.groupBox12.Controls.Add(this.label67);
  2815. this.groupBox12.Controls.Add(this.textBox_RideInfo_Trip_Time);
  2816. this.groupBox12.Controls.Add(this.textBox_RideInfo_Trip_Km);
  2817. this.groupBox12.Controls.Add(this.label68);
  2818. this.groupBox12.Controls.Add(this.textBox_RideInfo_ODO_Time);
  2819. this.groupBox12.Controls.Add(this.label69);
  2820. this.groupBox12.Controls.Add(this.textBox_RideInfo_ODO_Km);
  2821. this.groupBox12.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2822. this.groupBox12.Location = new System.Drawing.Point(896, 13);
  2823. this.groupBox12.Name = "groupBox12";
  2824. this.groupBox12.Size = new System.Drawing.Size(170, 191);
  2825. this.groupBox12.TabIndex = 11;
  2826. this.groupBox12.TabStop = false;
  2827. this.groupBox12.Text = "骑行信息";
  2828. this.groupBox12.Visible = false;
  2829. //
  2830. // checkBox_ReadRideInfo
  2831. //
  2832. this.checkBox_ReadRideInfo.AutoSize = true;
  2833. this.checkBox_ReadRideInfo.Checked = true;
  2834. this.checkBox_ReadRideInfo.CheckState = System.Windows.Forms.CheckState.Checked;
  2835. this.checkBox_ReadRideInfo.Location = new System.Drawing.Point(102, 155);
  2836. this.checkBox_ReadRideInfo.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2837. this.checkBox_ReadRideInfo.Name = "checkBox_ReadRideInfo";
  2838. this.checkBox_ReadRideInfo.Size = new System.Drawing.Size(56, 24);
  2839. this.checkBox_ReadRideInfo.TabIndex = 8;
  2840. this.checkBox_ReadRideInfo.Text = "自动";
  2841. this.checkBox_ReadRideInfo.UseVisualStyleBackColor = true;
  2842. //
  2843. // button_Read_RidedInfo
  2844. //
  2845. this.button_Read_RidedInfo.Location = new System.Drawing.Point(17, 151);
  2846. this.button_Read_RidedInfo.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2847. this.button_Read_RidedInfo.Name = "button_Read_RidedInfo";
  2848. this.button_Read_RidedInfo.Size = new System.Drawing.Size(67, 35);
  2849. this.button_Read_RidedInfo.TabIndex = 2;
  2850. this.button_Read_RidedInfo.Text = "查询";
  2851. this.button_Read_RidedInfo.UseVisualStyleBackColor = true;
  2852. this.button_Read_RidedInfo.Click += new System.EventHandler(this.button_Read_RidedInfo_Click);
  2853. //
  2854. // label71
  2855. //
  2856. this.label71.AutoSize = true;
  2857. this.label71.Location = new System.Drawing.Point(6, 118);
  2858. this.label71.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2859. this.label71.Name = "label71";
  2860. this.label71.Size = new System.Drawing.Size(67, 20);
  2861. this.label71.TabIndex = 2;
  2862. this.label71.Text = "TRIP时间";
  2863. //
  2864. // label67
  2865. //
  2866. this.label67.AutoSize = true;
  2867. this.label67.Location = new System.Drawing.Point(6, 88);
  2868. this.label67.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2869. this.label67.Name = "label67";
  2870. this.label67.Size = new System.Drawing.Size(67, 20);
  2871. this.label67.TabIndex = 2;
  2872. this.label67.Text = "TRIP里程";
  2873. //
  2874. // textBox_RideInfo_Trip_Time
  2875. //
  2876. this.textBox_RideInfo_Trip_Time.Location = new System.Drawing.Point(79, 114);
  2877. this.textBox_RideInfo_Trip_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2878. this.textBox_RideInfo_Trip_Time.Name = "textBox_RideInfo_Trip_Time";
  2879. this.textBox_RideInfo_Trip_Time.ReadOnly = true;
  2880. this.textBox_RideInfo_Trip_Time.Size = new System.Drawing.Size(85, 26);
  2881. this.textBox_RideInfo_Trip_Time.TabIndex = 2;
  2882. //
  2883. // textBox_RideInfo_Trip_Km
  2884. //
  2885. this.textBox_RideInfo_Trip_Km.Location = new System.Drawing.Point(79, 84);
  2886. this.textBox_RideInfo_Trip_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2887. this.textBox_RideInfo_Trip_Km.Name = "textBox_RideInfo_Trip_Km";
  2888. this.textBox_RideInfo_Trip_Km.ReadOnly = true;
  2889. this.textBox_RideInfo_Trip_Km.Size = new System.Drawing.Size(85, 26);
  2890. this.textBox_RideInfo_Trip_Km.TabIndex = 2;
  2891. //
  2892. // label68
  2893. //
  2894. this.label68.AutoSize = true;
  2895. this.label68.Location = new System.Drawing.Point(6, 59);
  2896. this.label68.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2897. this.label68.Name = "label68";
  2898. this.label68.Size = new System.Drawing.Size(70, 20);
  2899. this.label68.TabIndex = 2;
  2900. this.label68.Text = "ODO时间";
  2901. //
  2902. // textBox_RideInfo_ODO_Time
  2903. //
  2904. this.textBox_RideInfo_ODO_Time.Location = new System.Drawing.Point(79, 55);
  2905. this.textBox_RideInfo_ODO_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2906. this.textBox_RideInfo_ODO_Time.Name = "textBox_RideInfo_ODO_Time";
  2907. this.textBox_RideInfo_ODO_Time.ReadOnly = true;
  2908. this.textBox_RideInfo_ODO_Time.Size = new System.Drawing.Size(85, 26);
  2909. this.textBox_RideInfo_ODO_Time.TabIndex = 2;
  2910. //
  2911. // label69
  2912. //
  2913. this.label69.AutoSize = true;
  2914. this.label69.Location = new System.Drawing.Point(6, 30);
  2915. this.label69.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2916. this.label69.Name = "label69";
  2917. this.label69.Size = new System.Drawing.Size(70, 20);
  2918. this.label69.TabIndex = 2;
  2919. this.label69.Text = "ODO里程";
  2920. //
  2921. // textBox_RideInfo_ODO_Km
  2922. //
  2923. this.textBox_RideInfo_ODO_Km.Location = new System.Drawing.Point(79, 26);
  2924. this.textBox_RideInfo_ODO_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2925. this.textBox_RideInfo_ODO_Km.Name = "textBox_RideInfo_ODO_Km";
  2926. this.textBox_RideInfo_ODO_Km.ReadOnly = true;
  2927. this.textBox_RideInfo_ODO_Km.Size = new System.Drawing.Size(85, 26);
  2928. this.textBox_RideInfo_ODO_Km.TabIndex = 2;
  2929. //
  2930. // groupBox13
  2931. //
  2932. this.groupBox13.Controls.Add(this.checkBox_ReadAttitudeAngleAutoSend);
  2933. this.groupBox13.Controls.Add(this.button_Read_AttitudeAngle);
  2934. this.groupBox13.Controls.Add(this.label72);
  2935. this.groupBox13.Controls.Add(this.label73);
  2936. this.groupBox13.Controls.Add(this.textBox_Attitude_RollAngle_Rel);
  2937. this.groupBox13.Controls.Add(this.textBox_Attitude_RollAngle_Abs);
  2938. this.groupBox13.Controls.Add(this.label74);
  2939. this.groupBox13.Controls.Add(this.textBox_Attitude_PitchAngle_Rel);
  2940. this.groupBox13.Controls.Add(this.label75);
  2941. this.groupBox13.Controls.Add(this.textBox_Attitude_PitchAngle_Abs);
  2942. this.groupBox13.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2943. this.groupBox13.Location = new System.Drawing.Point(753, 206);
  2944. this.groupBox13.Name = "groupBox13";
  2945. this.groupBox13.Size = new System.Drawing.Size(313, 133);
  2946. this.groupBox13.TabIndex = 11;
  2947. this.groupBox13.TabStop = false;
  2948. this.groupBox13.Text = "姿态信息";
  2949. this.groupBox13.Visible = false;
  2950. //
  2951. // checkBox_ReadAttitudeAngleAutoSend
  2952. //
  2953. this.checkBox_ReadAttitudeAngleAutoSend.AutoSize = true;
  2954. this.checkBox_ReadAttitudeAngleAutoSend.Location = new System.Drawing.Point(243, 93);
  2955. this.checkBox_ReadAttitudeAngleAutoSend.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2956. this.checkBox_ReadAttitudeAngleAutoSend.Name = "checkBox_ReadAttitudeAngleAutoSend";
  2957. this.checkBox_ReadAttitudeAngleAutoSend.Size = new System.Drawing.Size(56, 24);
  2958. this.checkBox_ReadAttitudeAngleAutoSend.TabIndex = 8;
  2959. this.checkBox_ReadAttitudeAngleAutoSend.Text = "自动";
  2960. this.checkBox_ReadAttitudeAngleAutoSend.UseVisualStyleBackColor = true;
  2961. //
  2962. // button_Read_AttitudeAngle
  2963. //
  2964. this.button_Read_AttitudeAngle.Location = new System.Drawing.Point(242, 40);
  2965. this.button_Read_AttitudeAngle.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2966. this.button_Read_AttitudeAngle.Name = "button_Read_AttitudeAngle";
  2967. this.button_Read_AttitudeAngle.Size = new System.Drawing.Size(55, 35);
  2968. this.button_Read_AttitudeAngle.TabIndex = 2;
  2969. this.button_Read_AttitudeAngle.Text = "查询";
  2970. this.button_Read_AttitudeAngle.UseVisualStyleBackColor = true;
  2971. this.button_Read_AttitudeAngle.Click += new System.EventHandler(this.button_Read_AttitudeAngle_Click);
  2972. //
  2973. // label72
  2974. //
  2975. this.label72.AutoSize = true;
  2976. this.label72.Location = new System.Drawing.Point(121, 94);
  2977. this.label72.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2978. this.label72.Name = "label72";
  2979. this.label72.Size = new System.Drawing.Size(65, 20);
  2980. this.label72.TabIndex = 2;
  2981. this.label72.Text = "横滚相对";
  2982. //
  2983. // label73
  2984. //
  2985. this.label73.AutoSize = true;
  2986. this.label73.Location = new System.Drawing.Point(121, 47);
  2987. this.label73.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2988. this.label73.Name = "label73";
  2989. this.label73.Size = new System.Drawing.Size(69, 20);
  2990. this.label73.TabIndex = 2;
  2991. this.label73.Text = "横滚绝对 ";
  2992. //
  2993. // textBox_Attitude_RollAngle_Rel
  2994. //
  2995. this.textBox_Attitude_RollAngle_Rel.Location = new System.Drawing.Point(194, 91);
  2996. this.textBox_Attitude_RollAngle_Rel.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2997. this.textBox_Attitude_RollAngle_Rel.Name = "textBox_Attitude_RollAngle_Rel";
  2998. this.textBox_Attitude_RollAngle_Rel.ReadOnly = true;
  2999. this.textBox_Attitude_RollAngle_Rel.Size = new System.Drawing.Size(45, 26);
  3000. this.textBox_Attitude_RollAngle_Rel.TabIndex = 2;
  3001. //
  3002. // textBox_Attitude_RollAngle_Abs
  3003. //
  3004. this.textBox_Attitude_RollAngle_Abs.Location = new System.Drawing.Point(194, 44);
  3005. this.textBox_Attitude_RollAngle_Abs.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3006. this.textBox_Attitude_RollAngle_Abs.Name = "textBox_Attitude_RollAngle_Abs";
  3007. this.textBox_Attitude_RollAngle_Abs.ReadOnly = true;
  3008. this.textBox_Attitude_RollAngle_Abs.Size = new System.Drawing.Size(45, 26);
  3009. this.textBox_Attitude_RollAngle_Abs.TabIndex = 2;
  3010. //
  3011. // label74
  3012. //
  3013. this.label74.AutoSize = true;
  3014. this.label74.Location = new System.Drawing.Point(6, 93);
  3015. this.label74.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3016. this.label74.Name = "label74";
  3017. this.label74.Size = new System.Drawing.Size(65, 20);
  3018. this.label74.TabIndex = 2;
  3019. this.label74.Text = "俯仰相对";
  3020. //
  3021. // textBox_Attitude_PitchAngle_Rel
  3022. //
  3023. this.textBox_Attitude_PitchAngle_Rel.Location = new System.Drawing.Point(74, 90);
  3024. this.textBox_Attitude_PitchAngle_Rel.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3025. this.textBox_Attitude_PitchAngle_Rel.Name = "textBox_Attitude_PitchAngle_Rel";
  3026. this.textBox_Attitude_PitchAngle_Rel.ReadOnly = true;
  3027. this.textBox_Attitude_PitchAngle_Rel.Size = new System.Drawing.Size(45, 26);
  3028. this.textBox_Attitude_PitchAngle_Rel.TabIndex = 2;
  3029. //
  3030. // label75
  3031. //
  3032. this.label75.AutoSize = true;
  3033. this.label75.Location = new System.Drawing.Point(6, 47);
  3034. this.label75.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3035. this.label75.Name = "label75";
  3036. this.label75.Size = new System.Drawing.Size(65, 20);
  3037. this.label75.TabIndex = 2;
  3038. this.label75.Text = "俯仰绝对";
  3039. //
  3040. // textBox_Attitude_PitchAngle_Abs
  3041. //
  3042. this.textBox_Attitude_PitchAngle_Abs.Location = new System.Drawing.Point(74, 44);
  3043. this.textBox_Attitude_PitchAngle_Abs.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3044. this.textBox_Attitude_PitchAngle_Abs.Name = "textBox_Attitude_PitchAngle_Abs";
  3045. this.textBox_Attitude_PitchAngle_Abs.ReadOnly = true;
  3046. this.textBox_Attitude_PitchAngle_Abs.Size = new System.Drawing.Size(45, 26);
  3047. this.textBox_Attitude_PitchAngle_Abs.TabIndex = 2;
  3048. //
  3049. // label78
  3050. //
  3051. this.label78.AutoSize = true;
  3052. this.label78.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3053. this.label78.ForeColor = System.Drawing.SystemColors.ControlText;
  3054. this.label78.Location = new System.Drawing.Point(3, 740);
  3055. this.label78.Name = "label78";
  3056. this.label78.Size = new System.Drawing.Size(79, 20);
  3057. this.label78.TabIndex = 12;
  3058. this.label78.Text = "编译时间:";
  3059. //
  3060. // label_BiuldTime
  3061. //
  3062. this.label_BiuldTime.AutoSize = true;
  3063. this.label_BiuldTime.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3064. this.label_BiuldTime.ForeColor = System.Drawing.SystemColors.ControlText;
  3065. this.label_BiuldTime.Location = new System.Drawing.Point(73, 741);
  3066. this.label_BiuldTime.Name = "label_BiuldTime";
  3067. this.label_BiuldTime.Size = new System.Drawing.Size(18, 20);
  3068. this.label_BiuldTime.TabIndex = 13;
  3069. this.label_BiuldTime.Text = "V";
  3070. //
  3071. // label77
  3072. //
  3073. this.label77.AutoSize = true;
  3074. this.label77.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3075. this.label77.ForeColor = System.Drawing.SystemColors.ControlText;
  3076. this.label77.Location = new System.Drawing.Point(3, 763);
  3077. this.label77.Name = "label77";
  3078. this.label77.Size = new System.Drawing.Size(247, 20);
  3079. this.label77.TabIndex = 12;
  3080. this.label77.Text = "版权所有:武汉天腾动力科技有限公司";
  3081. //
  3082. // groupBox14
  3083. //
  3084. this.groupBox14.Controls.Add(this.label99);
  3085. this.groupBox14.Controls.Add(this.button_ReadErrorLog);
  3086. this.groupBox14.Controls.Add(this.button_ReadRunLog);
  3087. this.groupBox14.Controls.Add(this.label96);
  3088. this.groupBox14.Controls.Add(this.textBox_Runlog1_MCU_MIN);
  3089. this.groupBox14.Controls.Add(this.textBox_Runlog1_Coil_MIN);
  3090. this.groupBox14.Controls.Add(this.label139);
  3091. this.groupBox14.Controls.Add(this.textBox_ODO_Time);
  3092. this.groupBox14.Controls.Add(this.label98);
  3093. this.groupBox14.Controls.Add(this.label136);
  3094. this.groupBox14.Controls.Add(this.textBox_Runlog1_MCU_MAX);
  3095. this.groupBox14.Controls.Add(this.textBox_ODO_Km);
  3096. this.groupBox14.Controls.Add(this.label97);
  3097. this.groupBox14.Controls.Add(this.textBox_Runlog1_Coil_MAX);
  3098. this.groupBox14.Controls.Add(this.label95);
  3099. this.groupBox14.Controls.Add(this.textBox_Runlog1_PCB_MIN);
  3100. this.groupBox14.Controls.Add(this.label94);
  3101. this.groupBox14.Controls.Add(this.textBox_Runlog1_PCB_MAX);
  3102. this.groupBox14.Controls.Add(this.label93);
  3103. this.groupBox14.Controls.Add(this.textBox_Runlog1_PBUFault);
  3104. this.groupBox14.Controls.Add(this.label92);
  3105. this.groupBox14.Controls.Add(this.textBox_Runlog1_HMIFault);
  3106. this.groupBox14.Controls.Add(this.label91);
  3107. this.groupBox14.Controls.Add(this.textBox_Runlog1_BMSFault);
  3108. this.groupBox14.Controls.Add(this.label90);
  3109. this.groupBox14.Controls.Add(this.textBox_Runlog1_NTCFault);
  3110. this.groupBox14.Controls.Add(this.label89);
  3111. this.groupBox14.Controls.Add(this.textBox_Runlog1_Phase);
  3112. this.groupBox14.Controls.Add(this.label88);
  3113. this.groupBox14.Controls.Add(this.textBox_Runlog1_HallFault);
  3114. this.groupBox14.Controls.Add(this.label87);
  3115. this.groupBox14.Controls.Add(this.textBox_Runlog1_TQSFault);
  3116. this.groupBox14.Controls.Add(this.label86);
  3117. this.groupBox14.Controls.Add(this.textBox_Runlog1_SPSFault);
  3118. this.groupBox14.Controls.Add(this.label85);
  3119. this.groupBox14.Controls.Add(this.textBox_Runlog1_OT);
  3120. this.groupBox14.Controls.Add(this.label84);
  3121. this.groupBox14.Controls.Add(this.textBox_Runlog1_Lock);
  3122. this.groupBox14.Controls.Add(this.label83);
  3123. this.groupBox14.Controls.Add(this.textBox_Runlog1_OV);
  3124. this.groupBox14.Controls.Add(this.label82);
  3125. this.groupBox14.Controls.Add(this.textBox_Runlog1_UV);
  3126. this.groupBox14.Controls.Add(this.label81);
  3127. this.groupBox14.Controls.Add(this.textBox_Runlog1_OC);
  3128. this.groupBox14.Controls.Add(this.label80);
  3129. this.groupBox14.Controls.Add(this.textBox_Runlog1_RunTime);
  3130. this.groupBox14.Controls.Add(this.label107);
  3131. this.groupBox14.Controls.Add(this.textBox_Runlog2_TE_CircuitFault);
  3132. this.groupBox14.Controls.Add(this.label106);
  3133. this.groupBox14.Controls.Add(this.textBox_Runlog2_TE_MCUFault);
  3134. this.groupBox14.Controls.Add(this.label105);
  3135. this.groupBox14.Controls.Add(this.textBox_Runlog2_CircuitFault);
  3136. this.groupBox14.Controls.Add(this.label104);
  3137. this.groupBox14.Controls.Add(this.textBox_Runlog2_VolFault);
  3138. this.groupBox14.Controls.Add(this.label103);
  3139. this.groupBox14.Controls.Add(this.textBox_Runlog2_MOS_SC);
  3140. this.groupBox14.Controls.Add(this.label102);
  3141. this.groupBox14.Controls.Add(this.textBox_Runlog2_GasFault);
  3142. this.groupBox14.Controls.Add(this.label101);
  3143. this.groupBox14.Controls.Add(this.textBox_Runlog2_CDSFault);
  3144. this.groupBox14.Controls.Add(this.label100);
  3145. this.groupBox14.Controls.Add(this.textBox_Runlog2_MCUFault);
  3146. this.groupBox14.Controls.Add(this.label79);
  3147. this.groupBox14.Controls.Add(this.textBox_Runlog1_PowerCount);
  3148. this.groupBox14.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3149. this.groupBox14.Location = new System.Drawing.Point(1070, 13);
  3150. this.groupBox14.Name = "groupBox14";
  3151. this.groupBox14.Size = new System.Drawing.Size(318, 506);
  3152. this.groupBox14.TabIndex = 14;
  3153. this.groupBox14.TabStop = false;
  3154. this.groupBox14.Text = "历史信息";
  3155. this.groupBox14.Visible = false;
  3156. //
  3157. // label99
  3158. //
  3159. this.label99.AutoSize = true;
  3160. this.label99.Location = new System.Drawing.Point(152, 373);
  3161. this.label99.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3162. this.label99.Name = "label99";
  3163. this.label99.Size = new System.Drawing.Size(84, 20);
  3164. this.label99.TabIndex = 3;
  3165. this.label99.Text = "MOS最低温";
  3166. //
  3167. // button_ReadErrorLog
  3168. //
  3169. this.button_ReadErrorLog.Location = new System.Drawing.Point(230, 464);
  3170. this.button_ReadErrorLog.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3171. this.button_ReadErrorLog.Name = "button_ReadErrorLog";
  3172. this.button_ReadErrorLog.Size = new System.Drawing.Size(80, 35);
  3173. this.button_ReadErrorLog.TabIndex = 2;
  3174. this.button_ReadErrorLog.Text = "记录导出";
  3175. this.button_ReadErrorLog.UseVisualStyleBackColor = true;
  3176. this.button_ReadErrorLog.Click += new System.EventHandler(this.button_ReadErrorLog_Click);
  3177. this.button_ReadErrorLog.MouseHover += new System.EventHandler(this.button_ReadErrorLog_MouseHover);
  3178. //
  3179. // button_ReadRunLog
  3180. //
  3181. this.button_ReadRunLog.Location = new System.Drawing.Point(156, 464);
  3182. this.button_ReadRunLog.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3183. this.button_ReadRunLog.Name = "button_ReadRunLog";
  3184. this.button_ReadRunLog.Size = new System.Drawing.Size(70, 35);
  3185. this.button_ReadRunLog.TabIndex = 2;
  3186. this.button_ReadRunLog.Text = "查询";
  3187. this.button_ReadRunLog.UseVisualStyleBackColor = true;
  3188. this.button_ReadRunLog.Click += new System.EventHandler(this.button_ReadRunLog_Click);
  3189. //
  3190. // label96
  3191. //
  3192. this.label96.AutoSize = true;
  3193. this.label96.Location = new System.Drawing.Point(152, 321);
  3194. this.label96.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3195. this.label96.Name = "label96";
  3196. this.label96.Size = new System.Drawing.Size(79, 20);
  3197. this.label96.TabIndex = 3;
  3198. this.label96.Text = "绕组最低温";
  3199. //
  3200. // textBox_Runlog1_MCU_MIN
  3201. //
  3202. this.textBox_Runlog1_MCU_MIN.Location = new System.Drawing.Point(247, 370);
  3203. this.textBox_Runlog1_MCU_MIN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3204. this.textBox_Runlog1_MCU_MIN.Name = "textBox_Runlog1_MCU_MIN";
  3205. this.textBox_Runlog1_MCU_MIN.ReadOnly = true;
  3206. this.textBox_Runlog1_MCU_MIN.Size = new System.Drawing.Size(60, 26);
  3207. this.textBox_Runlog1_MCU_MIN.TabIndex = 4;
  3208. //
  3209. // textBox_Runlog1_Coil_MIN
  3210. //
  3211. this.textBox_Runlog1_Coil_MIN.Location = new System.Drawing.Point(247, 318);
  3212. this.textBox_Runlog1_Coil_MIN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3213. this.textBox_Runlog1_Coil_MIN.Name = "textBox_Runlog1_Coil_MIN";
  3214. this.textBox_Runlog1_Coil_MIN.ReadOnly = true;
  3215. this.textBox_Runlog1_Coil_MIN.Size = new System.Drawing.Size(60, 26);
  3216. this.textBox_Runlog1_Coil_MIN.TabIndex = 4;
  3217. //
  3218. // label139
  3219. //
  3220. this.label139.AutoSize = true;
  3221. this.label139.Location = new System.Drawing.Point(6, 425);
  3222. this.label139.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3223. this.label139.Name = "label139";
  3224. this.label139.Size = new System.Drawing.Size(70, 20);
  3225. this.label139.TabIndex = 2;
  3226. this.label139.Text = "ODO时间";
  3227. //
  3228. // textBox_ODO_Time
  3229. //
  3230. this.textBox_ODO_Time.Location = new System.Drawing.Point(90, 422);
  3231. this.textBox_ODO_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3232. this.textBox_ODO_Time.Name = "textBox_ODO_Time";
  3233. this.textBox_ODO_Time.ReadOnly = true;
  3234. this.textBox_ODO_Time.Size = new System.Drawing.Size(60, 26);
  3235. this.textBox_ODO_Time.TabIndex = 2;
  3236. //
  3237. // label98
  3238. //
  3239. this.label98.AutoSize = true;
  3240. this.label98.Location = new System.Drawing.Point(152, 347);
  3241. this.label98.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3242. this.label98.Name = "label98";
  3243. this.label98.Size = new System.Drawing.Size(84, 20);
  3244. this.label98.TabIndex = 5;
  3245. this.label98.Text = "MOS最高温";
  3246. //
  3247. // label136
  3248. //
  3249. this.label136.AutoSize = true;
  3250. this.label136.Location = new System.Drawing.Point(152, 399);
  3251. this.label136.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3252. this.label136.Name = "label136";
  3253. this.label136.Size = new System.Drawing.Size(70, 20);
  3254. this.label136.TabIndex = 2;
  3255. this.label136.Text = "ODO里程";
  3256. //
  3257. // textBox_Runlog1_MCU_MAX
  3258. //
  3259. this.textBox_Runlog1_MCU_MAX.Location = new System.Drawing.Point(247, 344);
  3260. this.textBox_Runlog1_MCU_MAX.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3261. this.textBox_Runlog1_MCU_MAX.Name = "textBox_Runlog1_MCU_MAX";
  3262. this.textBox_Runlog1_MCU_MAX.ReadOnly = true;
  3263. this.textBox_Runlog1_MCU_MAX.Size = new System.Drawing.Size(60, 26);
  3264. this.textBox_Runlog1_MCU_MAX.TabIndex = 6;
  3265. //
  3266. // textBox_ODO_Km
  3267. //
  3268. this.textBox_ODO_Km.Location = new System.Drawing.Point(247, 396);
  3269. this.textBox_ODO_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3270. this.textBox_ODO_Km.Name = "textBox_ODO_Km";
  3271. this.textBox_ODO_Km.ReadOnly = true;
  3272. this.textBox_ODO_Km.Size = new System.Drawing.Size(60, 26);
  3273. this.textBox_ODO_Km.TabIndex = 2;
  3274. //
  3275. // label97
  3276. //
  3277. this.label97.AutoSize = true;
  3278. this.label97.Location = new System.Drawing.Point(152, 295);
  3279. this.label97.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3280. this.label97.Name = "label97";
  3281. this.label97.Size = new System.Drawing.Size(79, 20);
  3282. this.label97.TabIndex = 5;
  3283. this.label97.Text = "绕组最高温";
  3284. //
  3285. // textBox_Runlog1_Coil_MAX
  3286. //
  3287. this.textBox_Runlog1_Coil_MAX.Location = new System.Drawing.Point(247, 292);
  3288. this.textBox_Runlog1_Coil_MAX.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3289. this.textBox_Runlog1_Coil_MAX.Name = "textBox_Runlog1_Coil_MAX";
  3290. this.textBox_Runlog1_Coil_MAX.ReadOnly = true;
  3291. this.textBox_Runlog1_Coil_MAX.Size = new System.Drawing.Size(60, 26);
  3292. this.textBox_Runlog1_Coil_MAX.TabIndex = 6;
  3293. //
  3294. // label95
  3295. //
  3296. this.label95.AutoSize = true;
  3297. this.label95.Location = new System.Drawing.Point(152, 269);
  3298. this.label95.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3299. this.label95.Name = "label95";
  3300. this.label95.Size = new System.Drawing.Size(78, 20);
  3301. this.label95.TabIndex = 2;
  3302. this.label95.Text = "PCB最低温";
  3303. //
  3304. // textBox_Runlog1_PCB_MIN
  3305. //
  3306. this.textBox_Runlog1_PCB_MIN.Location = new System.Drawing.Point(247, 266);
  3307. this.textBox_Runlog1_PCB_MIN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3308. this.textBox_Runlog1_PCB_MIN.Name = "textBox_Runlog1_PCB_MIN";
  3309. this.textBox_Runlog1_PCB_MIN.ReadOnly = true;
  3310. this.textBox_Runlog1_PCB_MIN.Size = new System.Drawing.Size(60, 26);
  3311. this.textBox_Runlog1_PCB_MIN.TabIndex = 2;
  3312. //
  3313. // label94
  3314. //
  3315. this.label94.AutoSize = true;
  3316. this.label94.Location = new System.Drawing.Point(152, 243);
  3317. this.label94.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3318. this.label94.Name = "label94";
  3319. this.label94.Size = new System.Drawing.Size(78, 20);
  3320. this.label94.TabIndex = 2;
  3321. this.label94.Text = "PCB最高温";
  3322. //
  3323. // textBox_Runlog1_PCB_MAX
  3324. //
  3325. this.textBox_Runlog1_PCB_MAX.Location = new System.Drawing.Point(247, 240);
  3326. this.textBox_Runlog1_PCB_MAX.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3327. this.textBox_Runlog1_PCB_MAX.Name = "textBox_Runlog1_PCB_MAX";
  3328. this.textBox_Runlog1_PCB_MAX.ReadOnly = true;
  3329. this.textBox_Runlog1_PCB_MAX.Size = new System.Drawing.Size(60, 26);
  3330. this.textBox_Runlog1_PCB_MAX.TabIndex = 2;
  3331. //
  3332. // label93
  3333. //
  3334. this.label93.AutoSize = true;
  3335. this.label93.Location = new System.Drawing.Point(6, 399);
  3336. this.label93.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3337. this.label93.Name = "label93";
  3338. this.label93.Size = new System.Drawing.Size(79, 20);
  3339. this.label93.TabIndex = 2;
  3340. this.label93.Text = "PBU未授权";
  3341. //
  3342. // textBox_Runlog1_PBUFault
  3343. //
  3344. this.textBox_Runlog1_PBUFault.Location = new System.Drawing.Point(90, 396);
  3345. this.textBox_Runlog1_PBUFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3346. this.textBox_Runlog1_PBUFault.Name = "textBox_Runlog1_PBUFault";
  3347. this.textBox_Runlog1_PBUFault.ReadOnly = true;
  3348. this.textBox_Runlog1_PBUFault.Size = new System.Drawing.Size(60, 26);
  3349. this.textBox_Runlog1_PBUFault.TabIndex = 2;
  3350. //
  3351. // label92
  3352. //
  3353. this.label92.AutoSize = true;
  3354. this.label92.Location = new System.Drawing.Point(6, 373);
  3355. this.label92.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3356. this.label92.Name = "label92";
  3357. this.label92.Size = new System.Drawing.Size(80, 20);
  3358. this.label92.TabIndex = 2;
  3359. this.label92.Text = "HMI未授权";
  3360. //
  3361. // textBox_Runlog1_HMIFault
  3362. //
  3363. this.textBox_Runlog1_HMIFault.Location = new System.Drawing.Point(90, 370);
  3364. this.textBox_Runlog1_HMIFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3365. this.textBox_Runlog1_HMIFault.Name = "textBox_Runlog1_HMIFault";
  3366. this.textBox_Runlog1_HMIFault.ReadOnly = true;
  3367. this.textBox_Runlog1_HMIFault.Size = new System.Drawing.Size(60, 26);
  3368. this.textBox_Runlog1_HMIFault.TabIndex = 2;
  3369. //
  3370. // label91
  3371. //
  3372. this.label91.AutoSize = true;
  3373. this.label91.Location = new System.Drawing.Point(6, 347);
  3374. this.label91.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3375. this.label91.Name = "label91";
  3376. this.label91.Size = new System.Drawing.Size(82, 20);
  3377. this.label91.TabIndex = 2;
  3378. this.label91.Text = "BMS未授权";
  3379. //
  3380. // textBox_Runlog1_BMSFault
  3381. //
  3382. this.textBox_Runlog1_BMSFault.Location = new System.Drawing.Point(90, 344);
  3383. this.textBox_Runlog1_BMSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3384. this.textBox_Runlog1_BMSFault.Name = "textBox_Runlog1_BMSFault";
  3385. this.textBox_Runlog1_BMSFault.ReadOnly = true;
  3386. this.textBox_Runlog1_BMSFault.Size = new System.Drawing.Size(60, 26);
  3387. this.textBox_Runlog1_BMSFault.TabIndex = 2;
  3388. //
  3389. // label90
  3390. //
  3391. this.label90.AutoSize = true;
  3392. this.label90.Location = new System.Drawing.Point(5, 321);
  3393. this.label90.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3394. this.label90.Name = "label90";
  3395. this.label90.Size = new System.Drawing.Size(65, 20);
  3396. this.label90.TabIndex = 2;
  3397. this.label90.Text = "NTC故障";
  3398. //
  3399. // textBox_Runlog1_NTCFault
  3400. //
  3401. this.textBox_Runlog1_NTCFault.Location = new System.Drawing.Point(90, 318);
  3402. this.textBox_Runlog1_NTCFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3403. this.textBox_Runlog1_NTCFault.Name = "textBox_Runlog1_NTCFault";
  3404. this.textBox_Runlog1_NTCFault.ReadOnly = true;
  3405. this.textBox_Runlog1_NTCFault.Size = new System.Drawing.Size(60, 26);
  3406. this.textBox_Runlog1_NTCFault.TabIndex = 2;
  3407. //
  3408. // label89
  3409. //
  3410. this.label89.AutoSize = true;
  3411. this.label89.Location = new System.Drawing.Point(5, 295);
  3412. this.label89.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3413. this.label89.Name = "label89";
  3414. this.label89.Size = new System.Drawing.Size(65, 20);
  3415. this.label89.TabIndex = 2;
  3416. this.label89.Text = "马达缺相";
  3417. //
  3418. // textBox_Runlog1_Phase
  3419. //
  3420. this.textBox_Runlog1_Phase.Location = new System.Drawing.Point(90, 292);
  3421. this.textBox_Runlog1_Phase.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3422. this.textBox_Runlog1_Phase.Name = "textBox_Runlog1_Phase";
  3423. this.textBox_Runlog1_Phase.ReadOnly = true;
  3424. this.textBox_Runlog1_Phase.Size = new System.Drawing.Size(60, 26);
  3425. this.textBox_Runlog1_Phase.TabIndex = 2;
  3426. //
  3427. // label88
  3428. //
  3429. this.label88.AutoSize = true;
  3430. this.label88.Location = new System.Drawing.Point(5, 269);
  3431. this.label88.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3432. this.label88.Name = "label88";
  3433. this.label88.Size = new System.Drawing.Size(65, 20);
  3434. this.label88.TabIndex = 2;
  3435. this.label88.Text = "霍尔故障";
  3436. //
  3437. // textBox_Runlog1_HallFault
  3438. //
  3439. this.textBox_Runlog1_HallFault.Location = new System.Drawing.Point(90, 266);
  3440. this.textBox_Runlog1_HallFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3441. this.textBox_Runlog1_HallFault.Name = "textBox_Runlog1_HallFault";
  3442. this.textBox_Runlog1_HallFault.ReadOnly = true;
  3443. this.textBox_Runlog1_HallFault.Size = new System.Drawing.Size(60, 26);
  3444. this.textBox_Runlog1_HallFault.TabIndex = 2;
  3445. //
  3446. // label87
  3447. //
  3448. this.label87.AutoSize = true;
  3449. this.label87.Location = new System.Drawing.Point(5, 243);
  3450. this.label87.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3451. this.label87.Name = "label87";
  3452. this.label87.Size = new System.Drawing.Size(64, 20);
  3453. this.label87.TabIndex = 2;
  3454. this.label87.Text = "TQS故障";
  3455. //
  3456. // textBox_Runlog1_TQSFault
  3457. //
  3458. this.textBox_Runlog1_TQSFault.Location = new System.Drawing.Point(90, 240);
  3459. this.textBox_Runlog1_TQSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3460. this.textBox_Runlog1_TQSFault.Name = "textBox_Runlog1_TQSFault";
  3461. this.textBox_Runlog1_TQSFault.ReadOnly = true;
  3462. this.textBox_Runlog1_TQSFault.Size = new System.Drawing.Size(60, 26);
  3463. this.textBox_Runlog1_TQSFault.TabIndex = 2;
  3464. //
  3465. // label86
  3466. //
  3467. this.label86.AutoSize = true;
  3468. this.label86.Location = new System.Drawing.Point(5, 217);
  3469. this.label86.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3470. this.label86.Name = "label86";
  3471. this.label86.Size = new System.Drawing.Size(62, 20);
  3472. this.label86.TabIndex = 2;
  3473. this.label86.Text = "SPS故障";
  3474. //
  3475. // textBox_Runlog1_SPSFault
  3476. //
  3477. this.textBox_Runlog1_SPSFault.Location = new System.Drawing.Point(90, 214);
  3478. this.textBox_Runlog1_SPSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3479. this.textBox_Runlog1_SPSFault.Name = "textBox_Runlog1_SPSFault";
  3480. this.textBox_Runlog1_SPSFault.ReadOnly = true;
  3481. this.textBox_Runlog1_SPSFault.Size = new System.Drawing.Size(60, 26);
  3482. this.textBox_Runlog1_SPSFault.TabIndex = 2;
  3483. //
  3484. // label85
  3485. //
  3486. this.label85.AutoSize = true;
  3487. this.label85.Location = new System.Drawing.Point(5, 191);
  3488. this.label85.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3489. this.label85.Name = "label85";
  3490. this.label85.Size = new System.Drawing.Size(65, 20);
  3491. this.label85.TabIndex = 2;
  3492. this.label85.Text = "过热保护";
  3493. //
  3494. // textBox_Runlog1_OT
  3495. //
  3496. this.textBox_Runlog1_OT.Location = new System.Drawing.Point(90, 188);
  3497. this.textBox_Runlog1_OT.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3498. this.textBox_Runlog1_OT.Name = "textBox_Runlog1_OT";
  3499. this.textBox_Runlog1_OT.ReadOnly = true;
  3500. this.textBox_Runlog1_OT.Size = new System.Drawing.Size(60, 26);
  3501. this.textBox_Runlog1_OT.TabIndex = 2;
  3502. //
  3503. // label84
  3504. //
  3505. this.label84.AutoSize = true;
  3506. this.label84.Location = new System.Drawing.Point(5, 166);
  3507. this.label84.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3508. this.label84.Name = "label84";
  3509. this.label84.Size = new System.Drawing.Size(65, 20);
  3510. this.label84.TabIndex = 2;
  3511. this.label84.Text = "堵转保护";
  3512. //
  3513. // textBox_Runlog1_Lock
  3514. //
  3515. this.textBox_Runlog1_Lock.Location = new System.Drawing.Point(90, 162);
  3516. this.textBox_Runlog1_Lock.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3517. this.textBox_Runlog1_Lock.Name = "textBox_Runlog1_Lock";
  3518. this.textBox_Runlog1_Lock.ReadOnly = true;
  3519. this.textBox_Runlog1_Lock.Size = new System.Drawing.Size(60, 26);
  3520. this.textBox_Runlog1_Lock.TabIndex = 2;
  3521. //
  3522. // label83
  3523. //
  3524. this.label83.AutoSize = true;
  3525. this.label83.Location = new System.Drawing.Point(5, 139);
  3526. this.label83.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3527. this.label83.Name = "label83";
  3528. this.label83.Size = new System.Drawing.Size(65, 20);
  3529. this.label83.TabIndex = 2;
  3530. this.label83.Text = "过压保护";
  3531. //
  3532. // textBox_Runlog1_OV
  3533. //
  3534. this.textBox_Runlog1_OV.Location = new System.Drawing.Point(90, 136);
  3535. this.textBox_Runlog1_OV.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3536. this.textBox_Runlog1_OV.Name = "textBox_Runlog1_OV";
  3537. this.textBox_Runlog1_OV.ReadOnly = true;
  3538. this.textBox_Runlog1_OV.Size = new System.Drawing.Size(60, 26);
  3539. this.textBox_Runlog1_OV.TabIndex = 2;
  3540. //
  3541. // label82
  3542. //
  3543. this.label82.AutoSize = true;
  3544. this.label82.Location = new System.Drawing.Point(5, 113);
  3545. this.label82.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3546. this.label82.Name = "label82";
  3547. this.label82.Size = new System.Drawing.Size(65, 20);
  3548. this.label82.TabIndex = 2;
  3549. this.label82.Text = "低压保护";
  3550. //
  3551. // textBox_Runlog1_UV
  3552. //
  3553. this.textBox_Runlog1_UV.Location = new System.Drawing.Point(90, 110);
  3554. this.textBox_Runlog1_UV.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3555. this.textBox_Runlog1_UV.Name = "textBox_Runlog1_UV";
  3556. this.textBox_Runlog1_UV.ReadOnly = true;
  3557. this.textBox_Runlog1_UV.Size = new System.Drawing.Size(60, 26);
  3558. this.textBox_Runlog1_UV.TabIndex = 2;
  3559. //
  3560. // label81
  3561. //
  3562. this.label81.AutoSize = true;
  3563. this.label81.Location = new System.Drawing.Point(5, 87);
  3564. this.label81.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3565. this.label81.Name = "label81";
  3566. this.label81.Size = new System.Drawing.Size(65, 20);
  3567. this.label81.TabIndex = 2;
  3568. this.label81.Text = "过流保护";
  3569. //
  3570. // textBox_Runlog1_OC
  3571. //
  3572. this.textBox_Runlog1_OC.Location = new System.Drawing.Point(90, 84);
  3573. this.textBox_Runlog1_OC.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3574. this.textBox_Runlog1_OC.Name = "textBox_Runlog1_OC";
  3575. this.textBox_Runlog1_OC.ReadOnly = true;
  3576. this.textBox_Runlog1_OC.Size = new System.Drawing.Size(60, 26);
  3577. this.textBox_Runlog1_OC.TabIndex = 2;
  3578. //
  3579. // label80
  3580. //
  3581. this.label80.AutoSize = true;
  3582. this.label80.Location = new System.Drawing.Point(5, 61);
  3583. this.label80.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3584. this.label80.Name = "label80";
  3585. this.label80.Size = new System.Drawing.Size(65, 20);
  3586. this.label80.TabIndex = 2;
  3587. this.label80.Text = "使用时间";
  3588. //
  3589. // textBox_Runlog1_RunTime
  3590. //
  3591. this.textBox_Runlog1_RunTime.Location = new System.Drawing.Point(90, 58);
  3592. this.textBox_Runlog1_RunTime.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3593. this.textBox_Runlog1_RunTime.Name = "textBox_Runlog1_RunTime";
  3594. this.textBox_Runlog1_RunTime.ReadOnly = true;
  3595. this.textBox_Runlog1_RunTime.Size = new System.Drawing.Size(60, 26);
  3596. this.textBox_Runlog1_RunTime.TabIndex = 2;
  3597. //
  3598. // label107
  3599. //
  3600. this.label107.AutoSize = true;
  3601. this.label107.Location = new System.Drawing.Point(152, 217);
  3602. this.label107.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3603. this.label107.Name = "label107";
  3604. this.label107.Size = new System.Drawing.Size(81, 20);
  3605. this.label107.TabIndex = 2;
  3606. this.label107.Text = "TE电路故障";
  3607. //
  3608. // textBox_Runlog2_TE_CircuitFault
  3609. //
  3610. this.textBox_Runlog2_TE_CircuitFault.Location = new System.Drawing.Point(247, 214);
  3611. this.textBox_Runlog2_TE_CircuitFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3612. this.textBox_Runlog2_TE_CircuitFault.Name = "textBox_Runlog2_TE_CircuitFault";
  3613. this.textBox_Runlog2_TE_CircuitFault.ReadOnly = true;
  3614. this.textBox_Runlog2_TE_CircuitFault.Size = new System.Drawing.Size(60, 26);
  3615. this.textBox_Runlog2_TE_CircuitFault.TabIndex = 2;
  3616. //
  3617. // label106
  3618. //
  3619. this.label106.AutoSize = true;
  3620. this.label106.Location = new System.Drawing.Point(152, 191);
  3621. this.label106.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3622. this.label106.Name = "label106";
  3623. this.label106.Size = new System.Drawing.Size(92, 20);
  3624. this.label106.TabIndex = 2;
  3625. this.label106.Text = "TE_MCU故障";
  3626. //
  3627. // textBox_Runlog2_TE_MCUFault
  3628. //
  3629. this.textBox_Runlog2_TE_MCUFault.Location = new System.Drawing.Point(247, 188);
  3630. this.textBox_Runlog2_TE_MCUFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3631. this.textBox_Runlog2_TE_MCUFault.Name = "textBox_Runlog2_TE_MCUFault";
  3632. this.textBox_Runlog2_TE_MCUFault.ReadOnly = true;
  3633. this.textBox_Runlog2_TE_MCUFault.Size = new System.Drawing.Size(60, 26);
  3634. this.textBox_Runlog2_TE_MCUFault.TabIndex = 2;
  3635. //
  3636. // label105
  3637. //
  3638. this.label105.AutoSize = true;
  3639. this.label105.Location = new System.Drawing.Point(152, 165);
  3640. this.label105.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3641. this.label105.Name = "label105";
  3642. this.label105.Size = new System.Drawing.Size(65, 20);
  3643. this.label105.TabIndex = 2;
  3644. this.label105.Text = "电路故障";
  3645. //
  3646. // textBox_Runlog2_CircuitFault
  3647. //
  3648. this.textBox_Runlog2_CircuitFault.Location = new System.Drawing.Point(247, 162);
  3649. this.textBox_Runlog2_CircuitFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3650. this.textBox_Runlog2_CircuitFault.Name = "textBox_Runlog2_CircuitFault";
  3651. this.textBox_Runlog2_CircuitFault.ReadOnly = true;
  3652. this.textBox_Runlog2_CircuitFault.Size = new System.Drawing.Size(60, 26);
  3653. this.textBox_Runlog2_CircuitFault.TabIndex = 2;
  3654. //
  3655. // label104
  3656. //
  3657. this.label104.AutoSize = true;
  3658. this.label104.Location = new System.Drawing.Point(152, 139);
  3659. this.label104.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3660. this.label104.Name = "label104";
  3661. this.label104.Size = new System.Drawing.Size(65, 20);
  3662. this.label104.TabIndex = 2;
  3663. this.label104.Text = "电压异常";
  3664. //
  3665. // textBox_Runlog2_VolFault
  3666. //
  3667. this.textBox_Runlog2_VolFault.Location = new System.Drawing.Point(247, 136);
  3668. this.textBox_Runlog2_VolFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3669. this.textBox_Runlog2_VolFault.Name = "textBox_Runlog2_VolFault";
  3670. this.textBox_Runlog2_VolFault.ReadOnly = true;
  3671. this.textBox_Runlog2_VolFault.Size = new System.Drawing.Size(60, 26);
  3672. this.textBox_Runlog2_VolFault.TabIndex = 2;
  3673. //
  3674. // label103
  3675. //
  3676. this.label103.AutoSize = true;
  3677. this.label103.Location = new System.Drawing.Point(152, 113);
  3678. this.label103.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3679. this.label103.Name = "label103";
  3680. this.label103.Size = new System.Drawing.Size(70, 20);
  3681. this.label103.TabIndex = 2;
  3682. this.label103.Text = "MOS短路";
  3683. //
  3684. // textBox_Runlog2_MOS_SC
  3685. //
  3686. this.textBox_Runlog2_MOS_SC.Location = new System.Drawing.Point(247, 110);
  3687. this.textBox_Runlog2_MOS_SC.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3688. this.textBox_Runlog2_MOS_SC.Name = "textBox_Runlog2_MOS_SC";
  3689. this.textBox_Runlog2_MOS_SC.ReadOnly = true;
  3690. this.textBox_Runlog2_MOS_SC.Size = new System.Drawing.Size(60, 26);
  3691. this.textBox_Runlog2_MOS_SC.TabIndex = 2;
  3692. //
  3693. // label102
  3694. //
  3695. this.label102.AutoSize = true;
  3696. this.label102.Location = new System.Drawing.Point(152, 87);
  3697. this.label102.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3698. this.label102.Name = "label102";
  3699. this.label102.Size = new System.Drawing.Size(65, 20);
  3700. this.label102.TabIndex = 2;
  3701. this.label102.Text = "GAS故障";
  3702. //
  3703. // textBox_Runlog2_GasFault
  3704. //
  3705. this.textBox_Runlog2_GasFault.Location = new System.Drawing.Point(247, 84);
  3706. this.textBox_Runlog2_GasFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3707. this.textBox_Runlog2_GasFault.Name = "textBox_Runlog2_GasFault";
  3708. this.textBox_Runlog2_GasFault.ReadOnly = true;
  3709. this.textBox_Runlog2_GasFault.Size = new System.Drawing.Size(60, 26);
  3710. this.textBox_Runlog2_GasFault.TabIndex = 2;
  3711. //
  3712. // label101
  3713. //
  3714. this.label101.AutoSize = true;
  3715. this.label101.Location = new System.Drawing.Point(152, 61);
  3716. this.label101.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3717. this.label101.Name = "label101";
  3718. this.label101.Size = new System.Drawing.Size(65, 20);
  3719. this.label101.TabIndex = 2;
  3720. this.label101.Text = "CDS故障";
  3721. //
  3722. // textBox_Runlog2_CDSFault
  3723. //
  3724. this.textBox_Runlog2_CDSFault.Location = new System.Drawing.Point(247, 58);
  3725. this.textBox_Runlog2_CDSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3726. this.textBox_Runlog2_CDSFault.Name = "textBox_Runlog2_CDSFault";
  3727. this.textBox_Runlog2_CDSFault.ReadOnly = true;
  3728. this.textBox_Runlog2_CDSFault.Size = new System.Drawing.Size(60, 26);
  3729. this.textBox_Runlog2_CDSFault.TabIndex = 2;
  3730. //
  3731. // label100
  3732. //
  3733. this.label100.AutoSize = true;
  3734. this.label100.Location = new System.Drawing.Point(152, 37);
  3735. this.label100.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3736. this.label100.Name = "label100";
  3737. this.label100.Size = new System.Drawing.Size(70, 20);
  3738. this.label100.TabIndex = 2;
  3739. this.label100.Text = "MCU故障";
  3740. //
  3741. // textBox_Runlog2_MCUFault
  3742. //
  3743. this.textBox_Runlog2_MCUFault.Location = new System.Drawing.Point(247, 32);
  3744. this.textBox_Runlog2_MCUFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3745. this.textBox_Runlog2_MCUFault.Name = "textBox_Runlog2_MCUFault";
  3746. this.textBox_Runlog2_MCUFault.ReadOnly = true;
  3747. this.textBox_Runlog2_MCUFault.Size = new System.Drawing.Size(60, 26);
  3748. this.textBox_Runlog2_MCUFault.TabIndex = 2;
  3749. //
  3750. // label79
  3751. //
  3752. this.label79.AutoSize = true;
  3753. this.label79.Location = new System.Drawing.Point(5, 35);
  3754. this.label79.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3755. this.label79.Name = "label79";
  3756. this.label79.Size = new System.Drawing.Size(65, 20);
  3757. this.label79.TabIndex = 2;
  3758. this.label79.Text = "开机次数";
  3759. //
  3760. // textBox_Runlog1_PowerCount
  3761. //
  3762. this.textBox_Runlog1_PowerCount.Location = new System.Drawing.Point(90, 32);
  3763. this.textBox_Runlog1_PowerCount.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3764. this.textBox_Runlog1_PowerCount.Name = "textBox_Runlog1_PowerCount";
  3765. this.textBox_Runlog1_PowerCount.ReadOnly = true;
  3766. this.textBox_Runlog1_PowerCount.Size = new System.Drawing.Size(60, 26);
  3767. this.textBox_Runlog1_PowerCount.TabIndex = 2;
  3768. //
  3769. // label108
  3770. //
  3771. this.label108.AutoSize = true;
  3772. this.label108.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3773. this.label108.ForeColor = System.Drawing.SystemColors.ControlText;
  3774. this.label108.Location = new System.Drawing.Point(3, 717);
  3775. this.label108.Name = "label108";
  3776. this.label108.Size = new System.Drawing.Size(79, 20);
  3777. this.label108.TabIndex = 12;
  3778. this.label108.Text = "系统时钟:";
  3779. //
  3780. // label_DateTime
  3781. //
  3782. this.label_DateTime.AutoSize = true;
  3783. this.label_DateTime.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3784. this.label_DateTime.ForeColor = System.Drawing.SystemColors.ControlText;
  3785. this.label_DateTime.Location = new System.Drawing.Point(74, 718);
  3786. this.label_DateTime.Name = "label_DateTime";
  3787. this.label_DateTime.Size = new System.Drawing.Size(18, 20);
  3788. this.label_DateTime.TabIndex = 13;
  3789. this.label_DateTime.Text = "V";
  3790. //
  3791. // timer2
  3792. //
  3793. this.timer2.Enabled = true;
  3794. this.timer2.Interval = 200;
  3795. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  3796. //
  3797. // button_DataExport
  3798. //
  3799. this.button_DataExport.BackColor = System.Drawing.Color.Yellow;
  3800. this.button_DataExport.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3801. this.button_DataExport.ForeColor = System.Drawing.SystemColors.ControlText;
  3802. this.button_DataExport.Location = new System.Drawing.Point(134, 20);
  3803. this.button_DataExport.Name = "button_DataExport";
  3804. this.button_DataExport.Size = new System.Drawing.Size(96, 43);
  3805. this.button_DataExport.TabIndex = 15;
  3806. this.button_DataExport.Text = "页面存储";
  3807. this.button_DataExport.UseVisualStyleBackColor = false;
  3808. this.button_DataExport.Click += new System.EventHandler(this.button_DataExport_Click);
  3809. this.button_DataExport.MouseHover += new System.EventHandler(this.button_DataExport_MouseHover);
  3810. //
  3811. // groupBox15
  3812. //
  3813. this.groupBox15.Controls.Add(this.button_DataExport);
  3814. this.groupBox15.Controls.Add(this.checkBox_ReadTorqueData);
  3815. this.groupBox15.Controls.Add(this.checkBox_Savedata);
  3816. this.groupBox15.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3817. this.groupBox15.Location = new System.Drawing.Point(7, 131);
  3818. this.groupBox15.Name = "groupBox15";
  3819. this.groupBox15.Size = new System.Drawing.Size(239, 73);
  3820. this.groupBox15.TabIndex = 16;
  3821. this.groupBox15.TabStop = false;
  3822. this.groupBox15.Text = "测试记录";
  3823. this.groupBox15.Visible = false;
  3824. //
  3825. // groupBox16
  3826. //
  3827. this.groupBox16.Controls.Add(this.trackBar_MotorSpeedSet);
  3828. this.groupBox16.Controls.Add(this.label_MotorSpeedSet);
  3829. this.groupBox16.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3830. this.groupBox16.Location = new System.Drawing.Point(753, 486);
  3831. this.groupBox16.Name = "groupBox16";
  3832. this.groupBox16.Size = new System.Drawing.Size(313, 76);
  3833. this.groupBox16.TabIndex = 17;
  3834. this.groupBox16.TabStop = false;
  3835. this.groupBox16.Text = "马达转速调节";
  3836. this.groupBox16.Visible = false;
  3837. //
  3838. // trackBar_MotorSpeedSet
  3839. //
  3840. this.trackBar_MotorSpeedSet.LargeChange = 1;
  3841. this.trackBar_MotorSpeedSet.Location = new System.Drawing.Point(6, 25);
  3842. this.trackBar_MotorSpeedSet.Maximum = 100;
  3843. this.trackBar_MotorSpeedSet.Minimum = 5;
  3844. this.trackBar_MotorSpeedSet.Name = "trackBar_MotorSpeedSet";
  3845. this.trackBar_MotorSpeedSet.Size = new System.Drawing.Size(237, 45);
  3846. this.trackBar_MotorSpeedSet.TabIndex = 0;
  3847. this.trackBar_MotorSpeedSet.Value = 100;
  3848. this.trackBar_MotorSpeedSet.Scroll += new System.EventHandler(this.trackBar_MotorSpeedSet_Scroll);
  3849. //
  3850. // label_MotorSpeedSet
  3851. //
  3852. this.label_MotorSpeedSet.AutoSize = true;
  3853. this.label_MotorSpeedSet.Location = new System.Drawing.Point(262, 33);
  3854. this.label_MotorSpeedSet.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3855. this.label_MotorSpeedSet.Name = "label_MotorSpeedSet";
  3856. this.label_MotorSpeedSet.Size = new System.Drawing.Size(45, 20);
  3857. this.label_MotorSpeedSet.TabIndex = 2;
  3858. this.label_MotorSpeedSet.Text = "100%";
  3859. //
  3860. // groupBox17
  3861. //
  3862. this.groupBox17.Controls.Add(this.checkBox_Sensor3);
  3863. this.groupBox17.Controls.Add(this.checkBox_Sensor2);
  3864. this.groupBox17.Controls.Add(this.checkBox_Sensor1);
  3865. this.groupBox17.Controls.Add(this.radioButton_ThreeSensor);
  3866. this.groupBox17.Controls.Add(this.radioButton_SingleSensor);
  3867. this.groupBox17.Controls.Add(this.label115);
  3868. this.groupBox17.Controls.Add(this.button_WriteK);
  3869. this.groupBox17.Controls.Add(this.button_ReadZero);
  3870. this.groupBox17.Controls.Add(this.label5);
  3871. this.groupBox17.Controls.Add(this.textBox_Sensor3_K);
  3872. this.groupBox17.Controls.Add(this.textBox_Sensor2_K);
  3873. this.groupBox17.Controls.Add(this.label119);
  3874. this.groupBox17.Controls.Add(this.label118);
  3875. this.groupBox17.Controls.Add(this.label117);
  3876. this.groupBox17.Controls.Add(this.label116);
  3877. this.groupBox17.Controls.Add(this.textBox_Sensor1_K);
  3878. this.groupBox17.Controls.Add(this.textBox_Sensor3_Zero);
  3879. this.groupBox17.Controls.Add(this.textBox_Sensor2_Zero);
  3880. this.groupBox17.Controls.Add(this.textBox_Sensor1_Zero);
  3881. this.groupBox17.Controls.Add(this.textBox_Sensor3_Std);
  3882. this.groupBox17.Controls.Add(this.textBox_Sensor2_Std);
  3883. this.groupBox17.Controls.Add(this.textBox_Sensor1_Std);
  3884. this.groupBox17.Controls.Add(this.textBox_Sensor3_Avg);
  3885. this.groupBox17.Controls.Add(this.label3);
  3886. this.groupBox17.Controls.Add(this.textBox_Sensor2_Avg);
  3887. this.groupBox17.Controls.Add(this.textBox_Sensor1_Avg);
  3888. this.groupBox17.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3889. this.groupBox17.Location = new System.Drawing.Point(251, 207);
  3890. this.groupBox17.Name = "groupBox17";
  3891. this.groupBox17.Size = new System.Drawing.Size(497, 133);
  3892. this.groupBox17.TabIndex = 18;
  3893. this.groupBox17.TabStop = false;
  3894. this.groupBox17.Text = "传感器采集";
  3895. this.groupBox17.Visible = false;
  3896. //
  3897. // checkBox_Sensor3
  3898. //
  3899. this.checkBox_Sensor3.AutoSize = true;
  3900. this.checkBox_Sensor3.Location = new System.Drawing.Point(315, 100);
  3901. this.checkBox_Sensor3.Name = "checkBox_Sensor3";
  3902. this.checkBox_Sensor3.Size = new System.Drawing.Size(56, 24);
  3903. this.checkBox_Sensor3.TabIndex = 5;
  3904. this.checkBox_Sensor3.Text = "选择";
  3905. this.checkBox_Sensor3.UseVisualStyleBackColor = true;
  3906. //
  3907. // checkBox_Sensor2
  3908. //
  3909. this.checkBox_Sensor2.AutoSize = true;
  3910. this.checkBox_Sensor2.Location = new System.Drawing.Point(315, 71);
  3911. this.checkBox_Sensor2.Name = "checkBox_Sensor2";
  3912. this.checkBox_Sensor2.Size = new System.Drawing.Size(56, 24);
  3913. this.checkBox_Sensor2.TabIndex = 5;
  3914. this.checkBox_Sensor2.Text = "选择";
  3915. this.checkBox_Sensor2.UseVisualStyleBackColor = true;
  3916. //
  3917. // checkBox_Sensor1
  3918. //
  3919. this.checkBox_Sensor1.AutoSize = true;
  3920. this.checkBox_Sensor1.Location = new System.Drawing.Point(315, 42);
  3921. this.checkBox_Sensor1.Name = "checkBox_Sensor1";
  3922. this.checkBox_Sensor1.Size = new System.Drawing.Size(56, 24);
  3923. this.checkBox_Sensor1.TabIndex = 5;
  3924. this.checkBox_Sensor1.Text = "选择";
  3925. this.checkBox_Sensor1.UseVisualStyleBackColor = true;
  3926. //
  3927. // radioButton_ThreeSensor
  3928. //
  3929. this.radioButton_ThreeSensor.AutoSize = true;
  3930. this.radioButton_ThreeSensor.Checked = true;
  3931. this.radioButton_ThreeSensor.Location = new System.Drawing.Point(423, 14);
  3932. this.radioButton_ThreeSensor.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3933. this.radioButton_ThreeSensor.Name = "radioButton_ThreeSensor";
  3934. this.radioButton_ThreeSensor.Size = new System.Drawing.Size(69, 24);
  3935. this.radioButton_ThreeSensor.TabIndex = 6;
  3936. this.radioButton_ThreeSensor.TabStop = true;
  3937. this.radioButton_ThreeSensor.Text = "三力矩";
  3938. this.radioButton_ThreeSensor.UseVisualStyleBackColor = true;
  3939. this.radioButton_ThreeSensor.CheckedChanged += new System.EventHandler(this.radioButton_ThreeSensor_CheckedChanged);
  3940. this.radioButton_ThreeSensor.Click += new System.EventHandler(this.radioButton_Gear_TURBO_Click);
  3941. //
  3942. // radioButton_SingleSensor
  3943. //
  3944. this.radioButton_SingleSensor.AutoSize = true;
  3945. this.radioButton_SingleSensor.Location = new System.Drawing.Point(342, 14);
  3946. this.radioButton_SingleSensor.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3947. this.radioButton_SingleSensor.Name = "radioButton_SingleSensor";
  3948. this.radioButton_SingleSensor.Size = new System.Drawing.Size(69, 24);
  3949. this.radioButton_SingleSensor.TabIndex = 6;
  3950. this.radioButton_SingleSensor.Text = "单力矩";
  3951. this.radioButton_SingleSensor.UseVisualStyleBackColor = true;
  3952. this.radioButton_SingleSensor.CheckedChanged += new System.EventHandler(this.radioButton_SingleSensor_CheckedChanged);
  3953. this.radioButton_SingleSensor.Click += new System.EventHandler(this.radioButton_Gear_TURBO_Click);
  3954. //
  3955. // label115
  3956. //
  3957. this.label115.AutoSize = true;
  3958. this.label115.Location = new System.Drawing.Point(7, 101);
  3959. this.label115.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3960. this.label115.Name = "label115";
  3961. this.label115.Size = new System.Drawing.Size(59, 20);
  3962. this.label115.TabIndex = 2;
  3963. this.label115.Text = "传感器3";
  3964. //
  3965. // button_WriteK
  3966. //
  3967. this.button_WriteK.Location = new System.Drawing.Point(385, 89);
  3968. this.button_WriteK.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3969. this.button_WriteK.Name = "button_WriteK";
  3970. this.button_WriteK.Size = new System.Drawing.Size(90, 35);
  3971. this.button_WriteK.TabIndex = 4;
  3972. this.button_WriteK.Text = "写入系数";
  3973. this.button_WriteK.UseVisualStyleBackColor = true;
  3974. this.button_WriteK.Click += new System.EventHandler(this.button_WriteK_Click);
  3975. //
  3976. // button_ReadZero
  3977. //
  3978. this.button_ReadZero.Location = new System.Drawing.Point(385, 40);
  3979. this.button_ReadZero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3980. this.button_ReadZero.Name = "button_ReadZero";
  3981. this.button_ReadZero.Size = new System.Drawing.Size(90, 35);
  3982. this.button_ReadZero.TabIndex = 4;
  3983. this.button_ReadZero.Text = "查询";
  3984. this.button_ReadZero.UseVisualStyleBackColor = true;
  3985. this.button_ReadZero.Click += new System.EventHandler(this.button_ReadZero_Click);
  3986. //
  3987. // label5
  3988. //
  3989. this.label5.AutoSize = true;
  3990. this.label5.Location = new System.Drawing.Point(7, 74);
  3991. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3992. this.label5.Name = "label5";
  3993. this.label5.Size = new System.Drawing.Size(59, 20);
  3994. this.label5.TabIndex = 2;
  3995. this.label5.Text = "传感器2";
  3996. //
  3997. // textBox_Sensor3_K
  3998. //
  3999. this.textBox_Sensor3_K.Location = new System.Drawing.Point(260, 98);
  4000. this.textBox_Sensor3_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4001. this.textBox_Sensor3_K.Name = "textBox_Sensor3_K";
  4002. this.textBox_Sensor3_K.Size = new System.Drawing.Size(50, 26);
  4003. this.textBox_Sensor3_K.TabIndex = 2;
  4004. //
  4005. // textBox_Sensor2_K
  4006. //
  4007. this.textBox_Sensor2_K.Location = new System.Drawing.Point(260, 71);
  4008. this.textBox_Sensor2_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4009. this.textBox_Sensor2_K.Name = "textBox_Sensor2_K";
  4010. this.textBox_Sensor2_K.Size = new System.Drawing.Size(50, 26);
  4011. this.textBox_Sensor2_K.TabIndex = 2;
  4012. //
  4013. // label119
  4014. //
  4015. this.label119.AutoSize = true;
  4016. this.label119.Location = new System.Drawing.Point(253, 21);
  4017. this.label119.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4018. this.label119.Name = "label119";
  4019. this.label119.Size = new System.Drawing.Size(65, 20);
  4020. this.label119.TabIndex = 2;
  4021. this.label119.Text = "校正系数";
  4022. this.label119.DoubleClick += new System.EventHandler(this.label119_DoubleClick);
  4023. this.label119.MouseHover += new System.EventHandler(this.label119_MouseHover);
  4024. //
  4025. // label118
  4026. //
  4027. this.label118.AutoSize = true;
  4028. this.label118.Location = new System.Drawing.Point(198, 21);
  4029. this.label118.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4030. this.label118.Name = "label118";
  4031. this.label118.Size = new System.Drawing.Size(51, 20);
  4032. this.label118.TabIndex = 2;
  4033. this.label118.Text = "零点值";
  4034. //
  4035. // label117
  4036. //
  4037. this.label117.AutoSize = true;
  4038. this.label117.Location = new System.Drawing.Point(138, 21);
  4039. this.label117.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4040. this.label117.Name = "label117";
  4041. this.label117.Size = new System.Drawing.Size(51, 20);
  4042. this.label117.TabIndex = 2;
  4043. this.label117.Text = "标准差";
  4044. //
  4045. // label116
  4046. //
  4047. this.label116.AutoSize = true;
  4048. this.label116.Location = new System.Drawing.Point(76, 21);
  4049. this.label116.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4050. this.label116.Name = "label116";
  4051. this.label116.Size = new System.Drawing.Size(51, 20);
  4052. this.label116.TabIndex = 2;
  4053. this.label116.Text = "平均值";
  4054. //
  4055. // textBox_Sensor1_K
  4056. //
  4057. this.textBox_Sensor1_K.Location = new System.Drawing.Point(260, 44);
  4058. this.textBox_Sensor1_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4059. this.textBox_Sensor1_K.Name = "textBox_Sensor1_K";
  4060. this.textBox_Sensor1_K.Size = new System.Drawing.Size(50, 26);
  4061. this.textBox_Sensor1_K.TabIndex = 2;
  4062. //
  4063. // textBox_Sensor3_Zero
  4064. //
  4065. this.textBox_Sensor3_Zero.Location = new System.Drawing.Point(199, 98);
  4066. this.textBox_Sensor3_Zero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4067. this.textBox_Sensor3_Zero.Name = "textBox_Sensor3_Zero";
  4068. this.textBox_Sensor3_Zero.ReadOnly = true;
  4069. this.textBox_Sensor3_Zero.Size = new System.Drawing.Size(50, 26);
  4070. this.textBox_Sensor3_Zero.TabIndex = 2;
  4071. //
  4072. // textBox_Sensor2_Zero
  4073. //
  4074. this.textBox_Sensor2_Zero.Location = new System.Drawing.Point(199, 71);
  4075. this.textBox_Sensor2_Zero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4076. this.textBox_Sensor2_Zero.Name = "textBox_Sensor2_Zero";
  4077. this.textBox_Sensor2_Zero.ReadOnly = true;
  4078. this.textBox_Sensor2_Zero.Size = new System.Drawing.Size(50, 26);
  4079. this.textBox_Sensor2_Zero.TabIndex = 2;
  4080. //
  4081. // textBox_Sensor1_Zero
  4082. //
  4083. this.textBox_Sensor1_Zero.Location = new System.Drawing.Point(199, 44);
  4084. this.textBox_Sensor1_Zero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4085. this.textBox_Sensor1_Zero.Name = "textBox_Sensor1_Zero";
  4086. this.textBox_Sensor1_Zero.ReadOnly = true;
  4087. this.textBox_Sensor1_Zero.Size = new System.Drawing.Size(50, 26);
  4088. this.textBox_Sensor1_Zero.TabIndex = 2;
  4089. //
  4090. // textBox_Sensor3_Std
  4091. //
  4092. this.textBox_Sensor3_Std.Location = new System.Drawing.Point(138, 98);
  4093. this.textBox_Sensor3_Std.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4094. this.textBox_Sensor3_Std.Name = "textBox_Sensor3_Std";
  4095. this.textBox_Sensor3_Std.ReadOnly = true;
  4096. this.textBox_Sensor3_Std.Size = new System.Drawing.Size(50, 26);
  4097. this.textBox_Sensor3_Std.TabIndex = 2;
  4098. //
  4099. // textBox_Sensor2_Std
  4100. //
  4101. this.textBox_Sensor2_Std.Location = new System.Drawing.Point(138, 71);
  4102. this.textBox_Sensor2_Std.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4103. this.textBox_Sensor2_Std.Name = "textBox_Sensor2_Std";
  4104. this.textBox_Sensor2_Std.ReadOnly = true;
  4105. this.textBox_Sensor2_Std.Size = new System.Drawing.Size(50, 26);
  4106. this.textBox_Sensor2_Std.TabIndex = 2;
  4107. //
  4108. // textBox_Sensor1_Std
  4109. //
  4110. this.textBox_Sensor1_Std.Location = new System.Drawing.Point(138, 44);
  4111. this.textBox_Sensor1_Std.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4112. this.textBox_Sensor1_Std.Name = "textBox_Sensor1_Std";
  4113. this.textBox_Sensor1_Std.ReadOnly = true;
  4114. this.textBox_Sensor1_Std.Size = new System.Drawing.Size(50, 26);
  4115. this.textBox_Sensor1_Std.TabIndex = 2;
  4116. //
  4117. // textBox_Sensor3_Avg
  4118. //
  4119. this.textBox_Sensor3_Avg.Location = new System.Drawing.Point(77, 98);
  4120. this.textBox_Sensor3_Avg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4121. this.textBox_Sensor3_Avg.Name = "textBox_Sensor3_Avg";
  4122. this.textBox_Sensor3_Avg.ReadOnly = true;
  4123. this.textBox_Sensor3_Avg.Size = new System.Drawing.Size(50, 26);
  4124. this.textBox_Sensor3_Avg.TabIndex = 2;
  4125. //
  4126. // label3
  4127. //
  4128. this.label3.AutoSize = true;
  4129. this.label3.Location = new System.Drawing.Point(7, 47);
  4130. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4131. this.label3.Name = "label3";
  4132. this.label3.Size = new System.Drawing.Size(59, 20);
  4133. this.label3.TabIndex = 2;
  4134. this.label3.Text = "传感器1";
  4135. //
  4136. // textBox_Sensor2_Avg
  4137. //
  4138. this.textBox_Sensor2_Avg.Location = new System.Drawing.Point(77, 71);
  4139. this.textBox_Sensor2_Avg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4140. this.textBox_Sensor2_Avg.Name = "textBox_Sensor2_Avg";
  4141. this.textBox_Sensor2_Avg.ReadOnly = true;
  4142. this.textBox_Sensor2_Avg.Size = new System.Drawing.Size(50, 26);
  4143. this.textBox_Sensor2_Avg.TabIndex = 2;
  4144. //
  4145. // textBox_Sensor1_Avg
  4146. //
  4147. this.textBox_Sensor1_Avg.Location = new System.Drawing.Point(77, 44);
  4148. this.textBox_Sensor1_Avg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4149. this.textBox_Sensor1_Avg.Name = "textBox_Sensor1_Avg";
  4150. this.textBox_Sensor1_Avg.ReadOnly = true;
  4151. this.textBox_Sensor1_Avg.Size = new System.Drawing.Size(50, 26);
  4152. this.textBox_Sensor1_Avg.TabIndex = 2;
  4153. //
  4154. // label127
  4155. //
  4156. this.label127.AutoSize = true;
  4157. this.label127.Font = new System.Drawing.Font("微软雅黑", 18F);
  4158. this.label127.ForeColor = System.Drawing.Color.Red;
  4159. this.label127.Location = new System.Drawing.Point(1158, 743);
  4160. this.label127.Name = "label127";
  4161. this.label127.Size = new System.Drawing.Size(230, 31);
  4162. this.label127.TabIndex = 19;
  4163. this.label127.Text = "内部使用,严禁外传";
  4164. this.label127.DoubleClick += new System.EventHandler(this.label127_DoubleClick);
  4165. //
  4166. // label1_Welcom
  4167. //
  4168. this.label1_Welcom.AutoSize = true;
  4169. this.label1_Welcom.Font = new System.Drawing.Font("隶书", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4170. this.label1_Welcom.ForeColor = System.Drawing.Color.Black;
  4171. this.label1_Welcom.Location = new System.Drawing.Point(450, 300);
  4172. this.label1_Welcom.Name = "label1_Welcom";
  4173. this.label1_Welcom.Size = new System.Drawing.Size(500, 96);
  4174. this.label1_Welcom.TabIndex = 18;
  4175. this.label1_Welcom.Text = "选择正确端口号,\r\n连接成功后开始使用!";
  4176. this.label1_Welcom.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4177. this.label1_Welcom.DoubleClick += new System.EventHandler(this.label1_Welcom_DoubleClick);
  4178. //
  4179. // button_ReadAll
  4180. //
  4181. this.button_ReadAll.BackColor = System.Drawing.Color.Yellow;
  4182. this.button_ReadAll.Font = new System.Drawing.Font("微软雅黑", 10.5F);
  4183. this.button_ReadAll.Location = new System.Drawing.Point(1070, 736);
  4184. this.button_ReadAll.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4185. this.button_ReadAll.Name = "button_ReadAll";
  4186. this.button_ReadAll.Size = new System.Drawing.Size(80, 44);
  4187. this.button_ReadAll.TabIndex = 20;
  4188. this.button_ReadAll.Text = "一键查询";
  4189. this.button_ReadAll.UseVisualStyleBackColor = false;
  4190. this.button_ReadAll.Visible = false;
  4191. this.button_ReadAll.Click += new System.EventHandler(this.button_ReadAll_Click);
  4192. //
  4193. // groupBox18
  4194. //
  4195. this.groupBox18.Controls.Add(this.richTextBox_DebugInfo);
  4196. this.groupBox18.Controls.Add(this.radioButton_DebugHex);
  4197. this.groupBox18.Controls.Add(this.radioButton_DebugDec);
  4198. this.groupBox18.Controls.Add(this.checkBox_DebugReset);
  4199. this.groupBox18.Controls.Add(this.checkBox_DebugAuto);
  4200. this.groupBox18.Controls.Add(this.button_DebugRead);
  4201. this.groupBox18.Controls.Add(this.textBox_DebugAddrEnd);
  4202. this.groupBox18.Controls.Add(this.textBox_DebugAddrBegin);
  4203. this.groupBox18.Controls.Add(this.label137);
  4204. this.groupBox18.Controls.Add(this.label138);
  4205. this.groupBox18.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4206. this.groupBox18.Location = new System.Drawing.Point(1070, 523);
  4207. this.groupBox18.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4208. this.groupBox18.Name = "groupBox18";
  4209. this.groupBox18.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4210. this.groupBox18.Size = new System.Drawing.Size(318, 206);
  4211. this.groupBox18.TabIndex = 9;
  4212. this.groupBox18.TabStop = false;
  4213. this.groupBox18.Text = "内部存储器";
  4214. this.groupBox18.Visible = false;
  4215. //
  4216. // richTextBox_DebugInfo
  4217. //
  4218. this.richTextBox_DebugInfo.Location = new System.Drawing.Point(10, 51);
  4219. this.richTextBox_DebugInfo.Name = "richTextBox_DebugInfo";
  4220. this.richTextBox_DebugInfo.ReadOnly = true;
  4221. this.richTextBox_DebugInfo.Size = new System.Drawing.Size(234, 146);
  4222. this.richTextBox_DebugInfo.TabIndex = 8;
  4223. this.richTextBox_DebugInfo.Text = "";
  4224. //
  4225. // radioButton_DebugHex
  4226. //
  4227. this.radioButton_DebugHex.AutoSize = true;
  4228. this.radioButton_DebugHex.Location = new System.Drawing.Point(252, 81);
  4229. this.radioButton_DebugHex.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4230. this.radioButton_DebugHex.Name = "radioButton_DebugHex";
  4231. this.radioButton_DebugHex.Size = new System.Drawing.Size(55, 24);
  4232. this.radioButton_DebugHex.TabIndex = 7;
  4233. this.radioButton_DebugHex.Text = "HEX";
  4234. this.radioButton_DebugHex.UseVisualStyleBackColor = true;
  4235. //
  4236. // radioButton_DebugDec
  4237. //
  4238. this.radioButton_DebugDec.AutoSize = true;
  4239. this.radioButton_DebugDec.Checked = true;
  4240. this.radioButton_DebugDec.Location = new System.Drawing.Point(252, 52);
  4241. this.radioButton_DebugDec.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4242. this.radioButton_DebugDec.Name = "radioButton_DebugDec";
  4243. this.radioButton_DebugDec.Size = new System.Drawing.Size(55, 24);
  4244. this.radioButton_DebugDec.TabIndex = 6;
  4245. this.radioButton_DebugDec.TabStop = true;
  4246. this.radioButton_DebugDec.Text = "DEC";
  4247. this.radioButton_DebugDec.UseVisualStyleBackColor = true;
  4248. //
  4249. // checkBox_DebugReset
  4250. //
  4251. this.checkBox_DebugReset.AutoSize = true;
  4252. this.checkBox_DebugReset.Location = new System.Drawing.Point(252, 110);
  4253. this.checkBox_DebugReset.Name = "checkBox_DebugReset";
  4254. this.checkBox_DebugReset.Size = new System.Drawing.Size(56, 24);
  4255. this.checkBox_DebugReset.TabIndex = 6;
  4256. this.checkBox_DebugReset.Text = "清除";
  4257. this.checkBox_DebugReset.UseVisualStyleBackColor = true;
  4258. //
  4259. // checkBox_DebugAuto
  4260. //
  4261. this.checkBox_DebugAuto.AutoSize = true;
  4262. this.checkBox_DebugAuto.Location = new System.Drawing.Point(252, 139);
  4263. this.checkBox_DebugAuto.Name = "checkBox_DebugAuto";
  4264. this.checkBox_DebugAuto.Size = new System.Drawing.Size(56, 24);
  4265. this.checkBox_DebugAuto.TabIndex = 6;
  4266. this.checkBox_DebugAuto.Text = "自动";
  4267. this.checkBox_DebugAuto.UseVisualStyleBackColor = true;
  4268. //
  4269. // button_DebugRead
  4270. //
  4271. this.button_DebugRead.Location = new System.Drawing.Point(252, 168);
  4272. this.button_DebugRead.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4273. this.button_DebugRead.Name = "button_DebugRead";
  4274. this.button_DebugRead.Size = new System.Drawing.Size(58, 30);
  4275. this.button_DebugRead.TabIndex = 2;
  4276. this.button_DebugRead.Text = "读取";
  4277. this.button_DebugRead.UseVisualStyleBackColor = true;
  4278. this.button_DebugRead.Click += new System.EventHandler(this.button_DebugRead_Click);
  4279. //
  4280. // textBox_DebugAddrEnd
  4281. //
  4282. this.textBox_DebugAddrEnd.Location = new System.Drawing.Point(229, 22);
  4283. this.textBox_DebugAddrEnd.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4284. this.textBox_DebugAddrEnd.Name = "textBox_DebugAddrEnd";
  4285. this.textBox_DebugAddrEnd.Size = new System.Drawing.Size(80, 26);
  4286. this.textBox_DebugAddrEnd.TabIndex = 2;
  4287. this.textBox_DebugAddrEnd.Text = "08000001";
  4288. //
  4289. // textBox_DebugAddrBegin
  4290. //
  4291. this.textBox_DebugAddrBegin.Location = new System.Drawing.Point(76, 22);
  4292. this.textBox_DebugAddrBegin.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4293. this.textBox_DebugAddrBegin.Name = "textBox_DebugAddrBegin";
  4294. this.textBox_DebugAddrBegin.Size = new System.Drawing.Size(80, 26);
  4295. this.textBox_DebugAddrBegin.TabIndex = 2;
  4296. this.textBox_DebugAddrBegin.Text = "08000000";
  4297. //
  4298. // label137
  4299. //
  4300. this.label137.AutoSize = true;
  4301. this.label137.Location = new System.Drawing.Point(160, 25);
  4302. this.label137.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4303. this.label137.Name = "label137";
  4304. this.label137.Size = new System.Drawing.Size(65, 20);
  4305. this.label137.TabIndex = 2;
  4306. this.label137.Text = "结束地址";
  4307. //
  4308. // label138
  4309. //
  4310. this.label138.AutoSize = true;
  4311. this.label138.Location = new System.Drawing.Point(7, 25);
  4312. this.label138.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  4313. this.label138.Name = "label138";
  4314. this.label138.Size = new System.Drawing.Size(65, 20);
  4315. this.label138.TabIndex = 2;
  4316. this.label138.Text = "起始地址";
  4317. //
  4318. // Form1
  4319. //
  4320. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  4321. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  4322. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(193)))), ((int)(((byte)(144)))));
  4323. this.ClientSize = new System.Drawing.Size(1394, 792);
  4324. this.Controls.Add(this.groupBox18);
  4325. this.Controls.Add(this.button_ReadAll);
  4326. this.Controls.Add(this.label127);
  4327. this.Controls.Add(this.groupBox17);
  4328. this.Controls.Add(this.groupBox16);
  4329. this.Controls.Add(this.groupBox15);
  4330. this.Controls.Add(this.groupBox14);
  4331. this.Controls.Add(this.label_DateTime);
  4332. this.Controls.Add(this.label_BiuldTime);
  4333. this.Controls.Add(this.label77);
  4334. this.Controls.Add(this.label108);
  4335. this.Controls.Add(this.label78);
  4336. this.Controls.Add(this.groupBox13);
  4337. this.Controls.Add(this.groupBox12);
  4338. this.Controls.Add(this.groupBox4);
  4339. this.Controls.Add(this.groupBox11);
  4340. this.Controls.Add(this.groupBox10);
  4341. this.Controls.Add(this.groupBox9);
  4342. this.Controls.Add(this.groupBox8);
  4343. this.Controls.Add(this.groupBox7);
  4344. this.Controls.Add(this.groupBox6);
  4345. this.Controls.Add(this.groupBox5);
  4346. this.Controls.Add(this.groupBox3);
  4347. this.Controls.Add(this.groupBox2);
  4348. this.Controls.Add(this.groupBox1);
  4349. this.Controls.Add(this.label1_Welcom);
  4350. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  4351. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  4352. this.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4353. this.MaximizeBox = false;
  4354. this.Name = "Form1";
  4355. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  4356. this.Text = "MOTINOVA中置电机配置软件V3.0.0(内部使用)";
  4357. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  4358. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
  4359. this.Load += new System.EventHandler(this.Form1_Load);
  4360. this.groupBox1.ResumeLayout(false);
  4361. this.groupBox1.PerformLayout();
  4362. this.groupBox2.ResumeLayout(false);
  4363. this.groupBox2.PerformLayout();
  4364. this.groupBox3.ResumeLayout(false);
  4365. this.groupBox3.PerformLayout();
  4366. this.groupBox5.ResumeLayout(false);
  4367. this.groupBox5.PerformLayout();
  4368. this.groupBox6.ResumeLayout(false);
  4369. this.groupBox6.PerformLayout();
  4370. this.groupBox7.ResumeLayout(false);
  4371. this.groupBox7.PerformLayout();
  4372. this.groupBox8.ResumeLayout(false);
  4373. this.groupBox9.ResumeLayout(false);
  4374. this.groupBox9.PerformLayout();
  4375. this.groupBox10.ResumeLayout(false);
  4376. this.groupBox10.PerformLayout();
  4377. this.groupBox11.ResumeLayout(false);
  4378. this.groupBox11.PerformLayout();
  4379. this.groupBox4.ResumeLayout(false);
  4380. this.groupBox4.PerformLayout();
  4381. this.groupBox12.ResumeLayout(false);
  4382. this.groupBox12.PerformLayout();
  4383. this.groupBox13.ResumeLayout(false);
  4384. this.groupBox13.PerformLayout();
  4385. this.groupBox14.ResumeLayout(false);
  4386. this.groupBox14.PerformLayout();
  4387. this.groupBox15.ResumeLayout(false);
  4388. this.groupBox15.PerformLayout();
  4389. this.groupBox16.ResumeLayout(false);
  4390. this.groupBox16.PerformLayout();
  4391. ((System.ComponentModel.ISupportInitialize)(this.trackBar_MotorSpeedSet)).EndInit();
  4392. this.groupBox17.ResumeLayout(false);
  4393. this.groupBox17.PerformLayout();
  4394. this.groupBox18.ResumeLayout(false);
  4395. this.groupBox18.PerformLayout();
  4396. this.ResumeLayout(false);
  4397. this.PerformLayout();
  4398. }
  4399. #endregion
  4400. private System.Windows.Forms.GroupBox groupBox1;
  4401. private System.Windows.Forms.ComboBox comboBox_Baudrate;
  4402. private System.Windows.Forms.ComboBox comboBox_ComIndex;
  4403. private System.Windows.Forms.Label label2;
  4404. private System.Windows.Forms.Label label1;
  4405. private System.Windows.Forms.Button button_ComOpen;
  4406. private System.IO.Ports.SerialPort serialPort1;
  4407. private System.Windows.Forms.GroupBox groupBox2;
  4408. private System.Windows.Forms.Button button_Write_Torque_Start;
  4409. private System.Windows.Forms.TextBox textBox_Torque_Start;
  4410. private System.Windows.Forms.Label label4;
  4411. private System.Windows.Forms.GroupBox groupBox3;
  4412. private System.Windows.Forms.GroupBox groupBox5;
  4413. private System.Windows.Forms.RadioButton radioButton_WorkMode_Confg;
  4414. private System.Windows.Forms.RadioButton radioButton_WorkMode_Run;
  4415. private System.Windows.Forms.GroupBox groupBox6;
  4416. private System.Windows.Forms.RadioButton radioButton_Gear_WALK;
  4417. private System.Windows.Forms.RadioButton radioButton_Gear_SMART;
  4418. private System.Windows.Forms.RadioButton radioButton_Gear_TURBO;
  4419. private System.Windows.Forms.RadioButton radioButton_Gear_SPORT;
  4420. private System.Windows.Forms.RadioButton radioButton_Gear_NORM;
  4421. private System.Windows.Forms.RadioButton radioButton_Gear_ECO;
  4422. private System.Windows.Forms.RadioButton radioButton_Gear_OFF;
  4423. private System.Windows.Forms.GroupBox groupBox7;
  4424. private System.Windows.Forms.RadioButton radioButton_Light_OFF;
  4425. private System.Windows.Forms.RadioButton radioButton_Light_ON;
  4426. private System.Windows.Forms.GroupBox groupBox8;
  4427. private System.Windows.Forms.Button button_ClearData;
  4428. private System.Windows.Forms.GroupBox groupBox9;
  4429. private System.Windows.Forms.Label label8;
  4430. private System.Windows.Forms.Label label7;
  4431. private System.Windows.Forms.TextBox textBox_FW;
  4432. private System.Windows.Forms.TextBox textBox_HW;
  4433. private System.Windows.Forms.TextBox textBox_SN;
  4434. private System.Windows.Forms.TextBox textBox_Mode;
  4435. private System.Windows.Forms.Label label6;
  4436. private System.Windows.Forms.Label label9;
  4437. private System.Windows.Forms.GroupBox groupBox10;
  4438. private System.Windows.Forms.Button button_Write_Config;
  4439. private System.Windows.Forms.Button button_Read_Config;
  4440. private System.Windows.Forms.Label label27;
  4441. private System.Windows.Forms.Label label26;
  4442. private System.Windows.Forms.TextBox textBox_Config_SPORT_K;
  4443. private System.Windows.Forms.TextBox textBox_Config_SMART_K;
  4444. private System.Windows.Forms.TextBox textBox_Config_NORM_Acc;
  4445. private System.Windows.Forms.TextBox textBox_Config_TURBO_Acc;
  4446. private System.Windows.Forms.TextBox textBox_Config_TURBO_K;
  4447. private System.Windows.Forms.TextBox textBox_Config_SPORT_Acc;
  4448. private System.Windows.Forms.TextBox textBox_Config_SMART_Acc;
  4449. private System.Windows.Forms.Label label25;
  4450. private System.Windows.Forms.TextBox textBox_Config_NORM_K;
  4451. private System.Windows.Forms.TextBox textBox_Config_ECO_Acc;
  4452. private System.Windows.Forms.Label label31;
  4453. private System.Windows.Forms.Label label30;
  4454. private System.Windows.Forms.Label label34;
  4455. private System.Windows.Forms.TextBox textBox_Config_ECO_K;
  4456. private System.Windows.Forms.Label label29;
  4457. private System.Windows.Forms.Label label33;
  4458. private System.Windows.Forms.TextBox textBox_Config_WheelSize;
  4459. private System.Windows.Forms.TextBox textBox_Config_MaxSpeed;
  4460. private System.Windows.Forms.Label label28;
  4461. private System.Windows.Forms.Label label32;
  4462. private System.Windows.Forms.TextBox textBox_Config_T_Alarm;
  4463. private System.Windows.Forms.TextBox textBox_Config_StopTime;
  4464. private System.Windows.Forms.Label label21;
  4465. private System.Windows.Forms.TextBox textBox_Config_MaxCurrent;
  4466. private System.Windows.Forms.Label label20;
  4467. private System.Windows.Forms.TextBox textBox_Config_Teeth_B;
  4468. private System.Windows.Forms.TextBox textBox_Config_T_Protect;
  4469. private System.Windows.Forms.Label label19;
  4470. private System.Windows.Forms.Label label11;
  4471. private System.Windows.Forms.Label label18;
  4472. private System.Windows.Forms.Label label13;
  4473. private System.Windows.Forms.Label label17;
  4474. private System.Windows.Forms.Label label14;
  4475. private System.Windows.Forms.Label label16;
  4476. private System.Windows.Forms.Label label15;
  4477. private System.Windows.Forms.Label label12;
  4478. private System.Windows.Forms.Label label10;
  4479. private System.Windows.Forms.TextBox textBox_Config_Teeth_F;
  4480. private System.Windows.Forms.GroupBox groupBox11;
  4481. private System.Windows.Forms.Button button_Write_MotorConfig;
  4482. private System.Windows.Forms.Button button_Read_MortoConfig;
  4483. private System.Windows.Forms.TextBox textBox_Motor_Power;
  4484. private System.Windows.Forms.TextBox textBox_Motor_R;
  4485. private System.Windows.Forms.TextBox textBox_Motor_Speed;
  4486. private System.Windows.Forms.TextBox textBox_Motor_Voltage;
  4487. private System.Windows.Forms.TextBox textBox_Motor_E;
  4488. private System.Windows.Forms.TextBox textBox_Motor_Lq;
  4489. private System.Windows.Forms.Label label45;
  4490. private System.Windows.Forms.Label label47;
  4491. private System.Windows.Forms.Label label49;
  4492. private System.Windows.Forms.Label label50;
  4493. private System.Windows.Forms.Label label51;
  4494. private System.Windows.Forms.Label label52;
  4495. private System.Windows.Forms.Label label53;
  4496. private System.Windows.Forms.TextBox textBox_Motor_Ld;
  4497. private System.Windows.Forms.Label label46;
  4498. private System.Windows.Forms.Label label56;
  4499. private System.Windows.Forms.Label label55;
  4500. private System.Windows.Forms.Label label43;
  4501. private System.Windows.Forms.Label label42;
  4502. private System.Windows.Forms.Label label40;
  4503. private System.Windows.Forms.Label label39;
  4504. private System.Windows.Forms.Label label44;
  4505. private System.Windows.Forms.Label label54;
  4506. private System.Windows.Forms.Label label37;
  4507. private System.Windows.Forms.Label label41;
  4508. private System.Windows.Forms.Label label36;
  4509. private System.Windows.Forms.Label label38;
  4510. private System.Windows.Forms.TextBox textBox_RunInfo_PowerAvg;
  4511. private System.Windows.Forms.TextBox textBox_RunInfo_T_MCU;
  4512. private System.Windows.Forms.Label label22;
  4513. private System.Windows.Forms.TextBox textBox_RunInfo_SOC;
  4514. private System.Windows.Forms.Label label35;
  4515. private System.Windows.Forms.TextBox textBox_RunInfo_Dir;
  4516. private System.Windows.Forms.TextBox textBox_RunInfo_T_PCB;
  4517. private System.Windows.Forms.TextBox textBox_RunInfo_ErrorCode;
  4518. private System.Windows.Forms.Label label23;
  4519. private System.Windows.Forms.TextBox textBox_RunInfo_Range;
  4520. private System.Windows.Forms.TextBox textBox_RunInfo_Current;
  4521. private System.Windows.Forms.TextBox textBox_RunInfo_Gear;
  4522. private System.Windows.Forms.TextBox textBox_RunInfo_T_Roil;
  4523. private System.Windows.Forms.Label label24;
  4524. private System.Windows.Forms.TextBox textBox_RunInfo_Light;
  4525. private System.Windows.Forms.TextBox textBox_RunInfo_Cadence;
  4526. private System.Windows.Forms.TextBox textBox_RunInfo_Torque;
  4527. private System.Windows.Forms.TextBox textBox_RunInfo_OutSpeed;
  4528. private System.Windows.Forms.TextBox textBox_RunInfo_Voltage;
  4529. private System.Windows.Forms.TextBox textBox_RunInfo_Power;
  4530. private System.Windows.Forms.TextBox textBox_RunInfo_BikeSpeed;
  4531. private System.Windows.Forms.Button button_Read_VerInfo;
  4532. private System.Windows.Forms.TextBox textBox_TorqueData;
  4533. private System.Windows.Forms.Label label57;
  4534. private System.Windows.Forms.Button button_Write_SN;
  4535. private System.Windows.Forms.Button button_Write_Mode;
  4536. private System.Windows.Forms.Timer timer1;
  4537. private System.Windows.Forms.Label label58;
  4538. private System.Windows.Forms.TextBox textBox_RevCnt;
  4539. private System.Windows.Forms.CheckBox checkBox_ReadTorqueData;
  4540. private System.Windows.Forms.Button button_Reset;
  4541. private System.Windows.Forms.CheckBox checkBox_AutoSend;
  4542. private System.Windows.Forms.Button button_RefreshPort;
  4543. private System.Windows.Forms.Label label59;
  4544. private System.Windows.Forms.TextBox textBox_Config_WheelAdj;
  4545. private System.Windows.Forms.TextBox textBox_Config_CadenceNum;
  4546. private System.Windows.Forms.Label label63;
  4547. private System.Windows.Forms.Label label62;
  4548. private System.Windows.Forms.TextBox textBox_Config_SpeedNum;
  4549. private System.Windows.Forms.Label label61;
  4550. private System.Windows.Forms.Label label60;
  4551. private System.Windows.Forms.GroupBox groupBox4;
  4552. private System.Windows.Forms.Label label66;
  4553. private System.Windows.Forms.Label label65;
  4554. private System.Windows.Forms.TextBox textBox_Config_Angle_Roll;
  4555. private System.Windows.Forms.Label label64;
  4556. private System.Windows.Forms.TextBox textBox_Config_Angle_Pitch;
  4557. private System.Windows.Forms.Label label70;
  4558. private System.Windows.Forms.Label label48;
  4559. private System.Windows.Forms.TextBox textBox_RunInfo_Time;
  4560. private System.Windows.Forms.TextBox textBox_RunInfo_Distance;
  4561. private System.Windows.Forms.Button button_Write_Config_Ext;
  4562. private System.Windows.Forms.Button button_Read_Config_Ext;
  4563. private System.Windows.Forms.GroupBox groupBox12;
  4564. private System.Windows.Forms.Button button_Read_RidedInfo;
  4565. private System.Windows.Forms.Label label71;
  4566. private System.Windows.Forms.Label label67;
  4567. private System.Windows.Forms.TextBox textBox_RideInfo_Trip_Time;
  4568. private System.Windows.Forms.TextBox textBox_RideInfo_Trip_Km;
  4569. private System.Windows.Forms.Label label68;
  4570. private System.Windows.Forms.TextBox textBox_RideInfo_ODO_Time;
  4571. private System.Windows.Forms.Label label69;
  4572. private System.Windows.Forms.TextBox textBox_RideInfo_ODO_Km;
  4573. private System.Windows.Forms.GroupBox groupBox13;
  4574. private System.Windows.Forms.Button button_Read_AttitudeAngle;
  4575. private System.Windows.Forms.Label label72;
  4576. private System.Windows.Forms.Label label73;
  4577. private System.Windows.Forms.TextBox textBox_Attitude_RollAngle_Rel;
  4578. private System.Windows.Forms.TextBox textBox_Attitude_RollAngle_Abs;
  4579. private System.Windows.Forms.Label label74;
  4580. private System.Windows.Forms.TextBox textBox_Attitude_PitchAngle_Rel;
  4581. private System.Windows.Forms.Label label75;
  4582. private System.Windows.Forms.TextBox textBox_Attitude_PitchAngle_Abs;
  4583. private System.Windows.Forms.Label label76;
  4584. private System.Windows.Forms.TextBox textBox_RunInfo_ODO_Km;
  4585. private System.Windows.Forms.Label label78;
  4586. private System.Windows.Forms.Label label_BiuldTime;
  4587. private System.Windows.Forms.CheckBox checkBox_ReadAttitudeAngleAutoSend;
  4588. private System.Windows.Forms.CheckBox checkBox_ReadRideInfo;
  4589. private System.Windows.Forms.Label label77;
  4590. private System.Windows.Forms.GroupBox groupBox14;
  4591. private System.Windows.Forms.Label label99;
  4592. private System.Windows.Forms.Button button_ReadRunLog;
  4593. private System.Windows.Forms.Label label96;
  4594. private System.Windows.Forms.TextBox textBox_Runlog1_MCU_MIN;
  4595. private System.Windows.Forms.TextBox textBox_Runlog1_Coil_MIN;
  4596. private System.Windows.Forms.Label label98;
  4597. private System.Windows.Forms.TextBox textBox_Runlog1_MCU_MAX;
  4598. private System.Windows.Forms.Label label97;
  4599. private System.Windows.Forms.TextBox textBox_Runlog1_Coil_MAX;
  4600. private System.Windows.Forms.Label label95;
  4601. private System.Windows.Forms.TextBox textBox_Runlog1_PCB_MIN;
  4602. private System.Windows.Forms.Label label94;
  4603. private System.Windows.Forms.TextBox textBox_Runlog1_PCB_MAX;
  4604. private System.Windows.Forms.Label label93;
  4605. private System.Windows.Forms.TextBox textBox_Runlog1_PBUFault;
  4606. private System.Windows.Forms.Label label92;
  4607. private System.Windows.Forms.TextBox textBox_Runlog1_HMIFault;
  4608. private System.Windows.Forms.Label label91;
  4609. private System.Windows.Forms.TextBox textBox_Runlog1_BMSFault;
  4610. private System.Windows.Forms.Label label90;
  4611. private System.Windows.Forms.TextBox textBox_Runlog1_NTCFault;
  4612. private System.Windows.Forms.Label label89;
  4613. private System.Windows.Forms.TextBox textBox_Runlog1_Phase;
  4614. private System.Windows.Forms.Label label88;
  4615. private System.Windows.Forms.TextBox textBox_Runlog1_HallFault;
  4616. private System.Windows.Forms.Label label87;
  4617. private System.Windows.Forms.TextBox textBox_Runlog1_TQSFault;
  4618. private System.Windows.Forms.Label label86;
  4619. private System.Windows.Forms.TextBox textBox_Runlog1_SPSFault;
  4620. private System.Windows.Forms.Label label85;
  4621. private System.Windows.Forms.TextBox textBox_Runlog1_OT;
  4622. private System.Windows.Forms.Label label84;
  4623. private System.Windows.Forms.TextBox textBox_Runlog1_Lock;
  4624. private System.Windows.Forms.Label label83;
  4625. private System.Windows.Forms.TextBox textBox_Runlog1_OV;
  4626. private System.Windows.Forms.Label label82;
  4627. private System.Windows.Forms.TextBox textBox_Runlog1_UV;
  4628. private System.Windows.Forms.Label label81;
  4629. private System.Windows.Forms.TextBox textBox_Runlog1_OC;
  4630. private System.Windows.Forms.Label label80;
  4631. private System.Windows.Forms.TextBox textBox_Runlog1_RunTime;
  4632. private System.Windows.Forms.Label label107;
  4633. private System.Windows.Forms.TextBox textBox_Runlog2_TE_CircuitFault;
  4634. private System.Windows.Forms.Label label106;
  4635. private System.Windows.Forms.TextBox textBox_Runlog2_TE_MCUFault;
  4636. private System.Windows.Forms.Label label105;
  4637. private System.Windows.Forms.TextBox textBox_Runlog2_CircuitFault;
  4638. private System.Windows.Forms.Label label104;
  4639. private System.Windows.Forms.TextBox textBox_Runlog2_VolFault;
  4640. private System.Windows.Forms.Label label103;
  4641. private System.Windows.Forms.TextBox textBox_Runlog2_MOS_SC;
  4642. private System.Windows.Forms.Label label102;
  4643. private System.Windows.Forms.TextBox textBox_Runlog2_GasFault;
  4644. private System.Windows.Forms.Label label101;
  4645. private System.Windows.Forms.TextBox textBox_Runlog2_CDSFault;
  4646. private System.Windows.Forms.Label label100;
  4647. private System.Windows.Forms.TextBox textBox_Runlog2_MCUFault;
  4648. private System.Windows.Forms.Label label79;
  4649. private System.Windows.Forms.TextBox textBox_Runlog1_PowerCount;
  4650. private System.Windows.Forms.Label label108;
  4651. private System.Windows.Forms.Label label_DateTime;
  4652. private System.Windows.Forms.Timer timer2;
  4653. private System.Windows.Forms.CheckBox checkBox_Savedata;
  4654. private System.Windows.Forms.Label label109;
  4655. private System.Windows.Forms.TextBox textBox_TE_FW;
  4656. private System.Windows.Forms.Button button_DataExport;
  4657. private System.Windows.Forms.GroupBox groupBox15;
  4658. private System.Windows.Forms.GroupBox groupBox16;
  4659. private System.Windows.Forms.TrackBar trackBar_MotorSpeedSet;
  4660. private System.Windows.Forms.Label label_MotorSpeedSet;
  4661. private System.Windows.Forms.Button button_Recovery;
  4662. private System.Windows.Forms.Button button_ReadErrorLog;
  4663. private System.Windows.Forms.TextBox textBox_Torque_Stdev;
  4664. private System.Windows.Forms.Label label110;
  4665. private System.Windows.Forms.Label label111;
  4666. private System.Windows.Forms.Label label114;
  4667. private System.Windows.Forms.Label label113;
  4668. private System.Windows.Forms.Label label112;
  4669. private System.Windows.Forms.TextBox textBox_Sensor1;
  4670. private System.Windows.Forms.TextBox textBox_Sensor2;
  4671. private System.Windows.Forms.TextBox textBox_Sensor3;
  4672. private System.Windows.Forms.Button button_ReadStartData;
  4673. private System.Windows.Forms.GroupBox groupBox17;
  4674. private System.Windows.Forms.TextBox textBox_Sensor3_K;
  4675. private System.Windows.Forms.TextBox textBox_Sensor2_K;
  4676. private System.Windows.Forms.Label label119;
  4677. private System.Windows.Forms.Label label118;
  4678. private System.Windows.Forms.Label label117;
  4679. private System.Windows.Forms.Label label116;
  4680. private System.Windows.Forms.TextBox textBox_Sensor1_K;
  4681. private System.Windows.Forms.TextBox textBox_Sensor3_Zero;
  4682. private System.Windows.Forms.TextBox textBox_Sensor2_Zero;
  4683. private System.Windows.Forms.TextBox textBox_Sensor1_Zero;
  4684. private System.Windows.Forms.TextBox textBox_Sensor3_Std;
  4685. private System.Windows.Forms.TextBox textBox_Sensor2_Std;
  4686. private System.Windows.Forms.TextBox textBox_Sensor1_Std;
  4687. private System.Windows.Forms.TextBox textBox_Sensor3_Avg;
  4688. private System.Windows.Forms.TextBox textBox_Sensor2_Avg;
  4689. private System.Windows.Forms.TextBox textBox_Sensor1_Avg;
  4690. private System.Windows.Forms.Button button_WriteK;
  4691. private System.Windows.Forms.Button button_ReadZero;
  4692. private System.Windows.Forms.Label label115;
  4693. private System.Windows.Forms.Label label5;
  4694. private System.Windows.Forms.Label label3;
  4695. private System.Windows.Forms.CheckBox checkBox_Sensor3;
  4696. private System.Windows.Forms.CheckBox checkBox_Sensor2;
  4697. private System.Windows.Forms.CheckBox checkBox_Sensor1;
  4698. private System.Windows.Forms.Label label120;
  4699. private System.Windows.Forms.TextBox textBox_Firmware_Special;
  4700. private System.Windows.Forms.Label label123;
  4701. private System.Windows.Forms.Label label122;
  4702. private System.Windows.Forms.Label label121;
  4703. private System.Windows.Forms.TextBox textBox_Config_WalkMotorSpeed;
  4704. private System.Windows.Forms.TextBox textBox_Config_WalkSpeedLimit;
  4705. private System.Windows.Forms.TextBox textBox_Config_UV_Protect;
  4706. private System.Windows.Forms.Label label126;
  4707. private System.Windows.Forms.Label label125;
  4708. private System.Windows.Forms.Label label124;
  4709. private System.Windows.Forms.Button button_LogClear;
  4710. private System.Windows.Forms.Label label127;
  4711. private System.Windows.Forms.Label label1_Welcom;
  4712. private System.Windows.Forms.ComboBox comboBox_SpeedSing;
  4713. private System.Windows.Forms.ComboBox comboBox_SerNum;
  4714. private System.Windows.Forms.ComboBox comboBox_NoWatch;
  4715. private System.Windows.Forms.ComboBox comboBox_DownDec;
  4716. private System.Windows.Forms.ComboBox comboBox_StartMode;
  4717. private System.Windows.Forms.ComboBox comboBox_TailLightVol;
  4718. private System.Windows.Forms.ComboBox comboBox_AttiSensor;
  4719. private System.Windows.Forms.ComboBox comboBox_FrontLigthVol;
  4720. private System.Windows.Forms.ComboBox comboBox_TailLightMode;
  4721. private System.Windows.Forms.TextBox textBox_Config_SpeedlimitStop;
  4722. private System.Windows.Forms.Label label128;
  4723. private System.Windows.Forms.TextBox textBox_Config_SpeedlimitStart;
  4724. private System.Windows.Forms.Label label129;
  4725. private System.Windows.Forms.TextBox textBox_Config_Period;
  4726. private System.Windows.Forms.Label label130;
  4727. private System.Windows.Forms.TextBox textBox_Config_Pulse;
  4728. private System.Windows.Forms.Label label131;
  4729. private System.Windows.Forms.TextBox textBox_Config_SpeedAlarm;
  4730. private System.Windows.Forms.Label label132;
  4731. private System.Windows.Forms.Button button_ReadAll;
  4732. private System.Windows.Forms.TextBox textBox_Config_GasMode;
  4733. private System.Windows.Forms.GroupBox groupBox18;
  4734. private System.Windows.Forms.RadioButton radioButton_DebugHex;
  4735. private System.Windows.Forms.RadioButton radioButton_DebugDec;
  4736. private System.Windows.Forms.CheckBox checkBox_DebugReset;
  4737. private System.Windows.Forms.CheckBox checkBox_DebugAuto;
  4738. private System.Windows.Forms.Button button_DebugRead;
  4739. private System.Windows.Forms.TextBox textBox_DebugAddrEnd;
  4740. private System.Windows.Forms.TextBox textBox_DebugAddrBegin;
  4741. private System.Windows.Forms.Label label137;
  4742. private System.Windows.Forms.Label label138;
  4743. private System.Windows.Forms.RichTextBox richTextBox_DebugInfo;
  4744. private System.Windows.Forms.TextBox textBox_Config_SpeedlimitAdj;
  4745. private System.Windows.Forms.Label label133;
  4746. private System.Windows.Forms.Label label134;
  4747. private System.Windows.Forms.TextBox textBox_BuildTime;
  4748. private System.Windows.Forms.ComboBox comboBox_FrontLightMode;
  4749. private System.Windows.Forms.Label label135;
  4750. private System.Windows.Forms.Label label139;
  4751. private System.Windows.Forms.TextBox textBox_ODO_Time;
  4752. private System.Windows.Forms.Label label136;
  4753. private System.Windows.Forms.TextBox textBox_ODO_Km;
  4754. private System.Windows.Forms.RadioButton radioButton_ThreeSensor;
  4755. private System.Windows.Forms.RadioButton radioButton_SingleSensor;
  4756. }
  4757. }