123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756 |
- 2021-11-17 09:39:19.7002 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 09:39:19.7372 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 09:39:19.8362 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 09:39:19.8522 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-17 09:39:25.9572 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype)
- 在 DevicesApp.VisaBus.SearchDevices()
- 2021-11-17 11:40:46.4752 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 11:40:46.5062 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 11:40:46.5922 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 11:40:46.6212 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 11:40:46.6392 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 11:40:46.6452 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 11:40:46.6452 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 11:40:46.6452 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 11:40:46.6452 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 11:40:54.0722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:40:56.1032 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:40:58.1302 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:41:00.1552 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:41:02.1752 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:41:04.1932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:41:06.2122 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:41:08.2382 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:41:10.2712 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:41:12.3062 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:41:12.3062 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 11:41:12.3452 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-17 11:42:31.5092 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 11:42:31.5612 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 11:42:31.6922 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 11:42:31.7162 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 11:42:31.7952 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 11:42:31.7952 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 11:42:31.8012 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 11:42:31.8012 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 11:42:31.8012 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 11:42:38.3222 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:42:40.3452 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:42:42.3682 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:42:44.3892 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:42:46.4052 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:42:48.4302 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:42:49.7932 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-17 11:42:49.7932 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-17 11:42:49.7932 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-17 11:42:49.8042 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-17 11:42:49.8042 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-17 11:44:53.6802 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 11:44:53.7522 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 11:44:53.9432 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 11:44:54.0132 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 11:45:01.5002 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:45:03.5162 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:45:05.5542 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:45:07.5882 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:45:09.6392 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-17 11:50:52.9072 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 11:50:52.9542 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 11:50:53.0532 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 11:50:53.0992 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 11:50:53.1352 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 11:50:53.1352 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 11:50:53.1422 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 11:50:53.1422 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 11:50:53.1422 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 11:51:00.1892 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:51:02.2142 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:51:04.2372 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:51:06.2672 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:51:08.2912 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:51:10.3102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:51:12.3752 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 11:51:13.8572 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-17 11:51:13.8572 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-17 11:51:13.8662 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-17 11:51:13.8662 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-17 11:51:13.8662 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-17 14:04:13.8342 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 14:04:13.8672 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 14:04:13.9562 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 14:04:13.9722 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 14:04:20.4112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:04:22.4372 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:04:25.5992 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:04:28.2422 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:04:30.2822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:04:32.3232 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-17 14:09:01.5532 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 14:09:01.5892 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 14:09:01.6522 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 14:09:01.6682 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 14:09:07.7172 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:09.7532 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:11.8012 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:13.8482 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:15.8822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:17.9232 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:23.1932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:27.9152 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:29.9392 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:31.9722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:09:31.9782 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 14:09:32.0232 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 14:16:39.4742 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-17 14:16:39.4782 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-17 14:16:39.4782 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-17 14:16:39.4782 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-17 14:16:39.4782 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-17 14:17:47.7212 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 14:17:47.7602 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 14:17:47.8322 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 14:17:47.8492 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 14:17:53.8312 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:17:55.8722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:17:57.9112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:17:59.9282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:18:01.9482 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:18:03.9832 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:18:06.0072 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:18:20.2932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:18:22.3202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:18:24.3542 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:18:24.3632 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 14:18:24.3972 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 14:20:56.4872 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 14:20:56.5362 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 14:20:56.6862 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 14:20:56.7192 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 14:21:02.5452 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:21:04.5822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:21:06.6092 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:21:08.6282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:21:10.6752 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:21:12.7042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:21:14.7212 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:21:16.7432 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:22:44.5952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:22:46.6232 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:22:46.6292 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 14:22:46.6532 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 14:23:34.3412 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 14:23:34.3952 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 14:23:34.5432 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 14:23:34.5972 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 14:23:34.6402 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 14:23:34.6402 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 14:23:34.6452 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 14:23:34.6452 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 14:23:34.6452 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 14:23:40.4022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:42.4352 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:44.4742 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:46.5082 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:48.5582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:50.5932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:52.6102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:54.6252 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:56.6442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:58.6892 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:23:58.6892 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 14:23:58.7232 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 14:26:47.8272 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 14:26:47.8802 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 14:26:47.9612 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 14:26:47.9792 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 14:26:55.1192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:26:57.1372 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:26:59.1552 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:27:04.9122 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:28:03.4602 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:28:05.5172 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:28:07.5442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:28:09.5802 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:28:11.6012 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:28:39.5082 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 14:28:41.5092 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 14:29:33.7022 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 15:36:56.9352 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 15:36:56.9752 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 15:36:57.0462 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 15:36:57.0652 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 15:37:02.5872 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:04.6042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:06.6202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:08.6522 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:10.6722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:12.6902 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:14.7112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:16.7312 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:18.7662 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:20.8102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 15:37:20.8162 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 15:37:20.8432 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 17:43:50.5102 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 17:43:50.5512 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 17:43:50.7262 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 17:43:50.8052 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 17:43:50.8352 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 17:43:50.8392 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 17:43:50.8392 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 17:43:50.8392 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 17:43:50.8392 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 17:43:57.0042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:43:59.0282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:44:01.0612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:44:03.0982 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:44:05.1222 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:44:07.1542 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:44:09.1762 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:44:11.1932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:44:13.2142 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:44:15.2442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:44:15.2442 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 17:44:15.2832 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 17:50:42.8572 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 17:50:42.9212 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 17:50:43.0842 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 17:50:43.1622 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 17:50:43.2502 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 17:50:43.2502 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 17:50:43.2632 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 17:50:43.2632 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 17:50:43.2632 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 17:50:49.7322 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:50:51.7732 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:50:53.7952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:50:55.8172 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:50:57.8562 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:50:59.8952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:51:01.9132 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:51:03.9442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:51:05.9662 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:51:07.9842 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:51:07.9882 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 17:51:08.0142 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 17:53:30.7872 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 17:53:30.8332 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 17:53:30.9362 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 17:53:30.9682 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 17:53:31.0352 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 17:53:31.0392 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 17:53:31.0392 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 17:53:31.0392 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 17:53:31.0392 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 17:53:37.0022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:39.0192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:41.0352 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:43.0662 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:45.0842 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:47.1132 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:49.1362 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:51.1622 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:53.1892 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:55.2262 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:53:55.2352 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 17:53:55.2592 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 17:55:52.1482 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 17:55:52.1942 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 17:55:52.2872 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 17:55:52.3042 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 17:55:52.3372 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 17:55:52.3372 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 17:55:52.3372 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 17:55:52.3442 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 17:55:52.3442 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 17:55:57.8522 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:55:59.8952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:56:01.9262 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:56:03.9442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:56:05.9632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:56:07.9972 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:56:10.0342 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:56:12.0812 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:56:14.1052 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:56:16.1582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:56:16.1582 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 17:56:16.1972 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 17:56:52.9472 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 17:56:53.0002 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 17:56:53.1902 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 17:56:53.2242 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 17:56:53.2712 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 17:56:53.2712 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 17:56:53.2782 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 17:56:53.2782 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 17:56:53.2782 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 17:56:58.9842 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:01.0092 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:03.0392 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:05.0672 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:07.0882 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:09.1282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:11.1502 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:13.1982 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:15.2632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:17.2972 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:17.3032 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 17:57:17.3332 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 17:57:38.0622 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 17:57:38.1222 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 17:57:38.2852 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 17:57:38.3052 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 17:57:38.3432 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 17:57:38.3482 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 17:57:38.3482 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 17:57:38.3482 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 17:57:38.3482 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 17:57:44.1112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:46.1522 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:48.2102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:50.2422 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:52.2612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:54.3112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:56.3292 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:57:58.3732 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:58:00.3922 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:58:02.4072 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 17:58:02.4072 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 17:58:02.4542 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 18:00:53.4762 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 18:00:53.5352 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 18:00:53.6472 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 18:00:53.6742 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 18:01:00.3022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:02.3192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:04.3352 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:06.3632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:08.3822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:10.4022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:12.4202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:14.4592 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:16.5012 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:18.5292 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:18.5292 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 18:01:18.5602 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 18:01:33.7512 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 18:01:33.7912 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 18:01:33.8652 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 18:01:33.8802 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 18:01:33.9072 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 18:01:33.9112 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 18:01:33.9112 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 18:01:33.9112 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 18:01:33.9112 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 18:01:40.2102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:42.2532 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:44.3222 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:46.3392 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:48.3732 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:50.3942 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:52.4452 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:54.4782 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:56.5042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:58.5202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:01:58.5202 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 18:01:58.5482 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 18:34:22.0352 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 18:34:22.0742 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 18:34:22.2032 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 18:34:22.2272 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 18:34:27.7302 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:29.7722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:31.7942 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:33.8112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:35.8332 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:37.8722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:39.9112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:41.9492 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:43.9962 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:46.0582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:34:46.0582 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 18:34:46.1152 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 18:42:45.1642 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 18:42:45.1982 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 18:42:45.2692 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 18:42:45.2912 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 18:42:51.3632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:42:53.3792 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:42:55.3992 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:42:57.4212 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:42:59.4422 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:43:01.4632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:43:03.4792 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:43:05.4972 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:43:07.5202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:43:09.5522 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 18:43:09.5522 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 18:43:09.6512 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 20:16:03.0912 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 20:16:03.1512 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 20:16:03.3132 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 20:16:03.4502 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 20:16:03.5232 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 20:16:03.5282 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 20:16:03.5282 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 20:16:03.5282 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 20:16:03.5282 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 20:16:09.6432 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:11.6802 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:13.7202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:15.7542 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:17.8032 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:19.8232 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:21.8612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:23.8882 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:25.9112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:27.9312 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:16:27.9312 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 20:16:27.9652 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 20:17:29.2752 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 20:17:29.3282 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 20:17:29.6002 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 20:17:29.6832 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 20:17:36.0932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:38.1812 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:40.2192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:42.2502 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:44.2672 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:46.3092 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:48.3492 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:50.3762 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:52.4202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:54.4802 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:17:54.4802 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 20:17:54.5132 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 20:18:25.5272 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 20:18:25.5752 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 20:18:25.7582 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 20:18:25.7752 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 20:18:25.8102 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 20:18:25.8102 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 20:18:25.8102 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 20:18:25.8172 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 20:18:25.8172 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 20:18:31.7082 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:33.7252 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:35.7492 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:37.7712 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:39.7972 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:41.8192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:43.8832 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:45.9002 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:47.9352 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:49.9612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:18:49.9662 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 20:18:49.9872 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-17 20:24:26.4112 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-17 20:24:26.4502 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-17 20:24:26.5582 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-17 20:24:26.5832 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-17 20:24:26.6422 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-17 20:24:26.6462 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-17 20:24:26.6462 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-17 20:24:26.6462 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-17 20:24:26.6462 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-17 20:24:32.8302 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:24:34.8622 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:24:36.8952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:24:38.9462 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:24:40.9702 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:24:42.9862 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:24:45.0292 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:24:48.9642 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:24:52.1282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:25:07.2112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-17 20:25:07.2112 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-17 20:25:08.8392 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-18 09:13:31.0474 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-18 09:13:31.0864 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-18 09:13:31.1894 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-18 09:13:31.2104 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-18 09:13:31.2474 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-18 09:13:31.2514 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-18 09:13:31.2514 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-18 09:13:31.2514 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-18 09:13:31.2514 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-18 09:13:37.8174 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:13:39.8394 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:13:41.8604 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:13:43.8984 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:13:45.9284 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:13:47.9514 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:13:49.9984 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:15:00.3064 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:15:02.5144 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:15:11.8344 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:15:11.8434 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-18 09:15:11.8684 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-18 09:16:44.6424 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-18 09:16:44.6804 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-18 09:16:44.7464 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-18 09:16:44.7634 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-18 09:16:44.7934 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-18 09:16:44.7934 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-18 09:16:44.7994 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-18 09:16:44.7994 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-18 09:16:44.7994 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-18 09:16:50.5024 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:16:52.5164 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:16:54.5664 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:16:56.6194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:16:58.6704 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:17:00.7124 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:17:02.7554 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:17:04.7974 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:17:06.8414 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:17:08.8794 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:17:08.8884 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-18 09:17:08.9144 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-18 09:18:03.9764 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-18 09:18:04.0184 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-18 09:18:04.0874 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-18 09:18:04.1014 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-18 09:18:04.1314 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-18 09:18:04.1314 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-18 09:18:04.1314 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-18 09:18:04.1314 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-18 09:18:04.1404 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-18 09:18:09.8424 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:11.8844 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:13.9274 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:15.9784 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:18.0284 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:20.0754 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:22.1024 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:24.1274 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:26.1824 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:28.2304 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:18:28.2304 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-18 09:18:28.2624 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-18 09:23:34.6204 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-18 09:23:34.6204 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-18 09:23:34.6204 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-18 09:23:34.6294 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-18 09:23:34.6294 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-18 09:25:10.2494 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-18 09:25:10.2974 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-18 09:25:10.3674 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-18 09:25:10.3824 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-18 09:25:16.1604 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:18.1984 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:20.2364 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:22.2824 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:24.3194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:26.3374 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:28.3804 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:30.4154 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:32.4374 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:34.4614 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:25:34.4614 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-18 09:25:34.4864 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-18 09:41:29.2624 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-18 09:41:29.3094 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-18 09:41:29.4194 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-18 09:41:29.4434 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-18 09:41:29.5494 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-18 09:41:29.5544 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-18 09:41:29.5544 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-18 09:41:29.5544 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-18 09:41:29.5544 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-18 09:41:35.2974 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:37.3194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:39.3494 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:41.3864 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:43.4214 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:45.4724 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:47.5194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:49.5444 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:51.5614 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:53.6034 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 09:41:53.6194 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-18 09:41:53.6564 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-18 10:02:49.5694 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-18 10:02:49.5974 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-18 10:02:49.6364 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-18 10:02:49.6364 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-18 10:02:54.2134 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 10:02:56.2214 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 10:02:58.2344 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 10:03:00.2584 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
- 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
- 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
- 在 System.Activator.CreateInstance(Type type, Object[] args)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
- 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
- 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 21:30:08.3502 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:30:08.3692 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:30:08.5002 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:30:08.5102 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:30:11.1162 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:30:11.1372 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:30:11.1512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:30:11.1512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 21:33:23.7380 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:33:23.7610 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:33:23.8060 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:33:23.8060 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:33:26.0170 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:33:26.0370 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:33:26.0520 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:33:26.0620 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 21:34:42.5857 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:34:42.6137 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:34:42.6647 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:34:42.6647 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:34:42.6897 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:34:42.6897 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:34:42.6897 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:34:42.6897 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:34:42.6947 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:34:44.7347 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:34:44.7547 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:34:44.7697 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:34:44.7797 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 21:35:40.7927 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:35:40.8186 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:35:40.8606 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:35:40.8807 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:35:42.9687 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:35:42.9886 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:35:43.0036 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:35:43.0136 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 21:36:37.4528 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:36:37.4738 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:36:37.5098 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:36:37.5098 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:36:39.4788 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:36:39.4968 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:36:39.5108 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:36:39.5108 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:38:00.0104 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:38:00.0335 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:38:00.0794 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:38:00.0884 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:38:02.2414 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:38:02.2604 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:38:02.2604 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:38:02.2805 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:39:51.2616 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:39:51.2816 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:39:51.3216 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:39:51.3216 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:39:53.4836 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:39:53.5016 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:39:53.5106 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:39:53.5106 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 21:43:56.9184 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:43:56.9374 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:43:56.9834 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:43:56.9934 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:43:59.0594 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:43:59.0794 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:43:59.0894 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:43:59.0894 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:50:47.7756 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:50:47.7976 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:50:47.8426 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:50:47.8536 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:50:47.8776 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:50:47.8776 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:50:47.8776 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:50:47.8816 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:50:47.8816 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:50:49.8906 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:50:49.9116 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:50:49.9216 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:50:49.9306 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 21:53:12.3090 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:53:12.3310 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:53:12.3670 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:53:12.3670 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:53:14.4870 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:53:14.5050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:53:14.5150 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:53:14.5250 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 21:54:06.5060 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 21:54:06.5070 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 21:54:06.5070 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 21:54:06.5070 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 21:54:06.5070 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 21:57:30.3266 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 21:57:30.3496 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 21:57:30.3986 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 21:57:30.3986 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 21:57:32.4696 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 21:57:32.4876 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 21:57:32.4976 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 21:57:32.5076 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 22:04:13.5159 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 22:04:13.5399 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 22:04:13.5849 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 22:04:13.5849 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 22:04:13.6139 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 22:04:13.6139 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 22:04:13.6169 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 22:04:13.6169 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 22:04:13.6169 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 22:04:15.8359 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 22:04:15.8549 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 22:04:15.8549 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 22:04:15.8739 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 22:08:27.2348 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 22:08:27.2588 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 22:08:27.3008 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 22:08:27.3118 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 22:08:27.3328 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 22:08:27.3378 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 22:08:27.3378 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 22:08:27.3378 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 22:08:27.3378 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 22:08:29.5328 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 22:08:29.5508 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 22:08:29.5608 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 22:08:29.5698 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 22:11:08.2976 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 22:11:08.3216 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 22:11:08.3976 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 22:11:08.3976 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 22:11:08.4266 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 22:11:08.4286 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 22:11:08.4286 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 22:11:08.4286 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 22:11:08.4286 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 22:11:10.7128 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 22:11:10.7318 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 22:11:10.7418 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 22:11:10.7418 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 22:12:15.8083 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 22:12:15.8323 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 22:12:15.8773 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 22:12:15.8893 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 22:12:15.9083 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 22:12:15.9143 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 22:12:15.9143 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 22:12:15.9143 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 22:12:15.9143 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 22:12:18.1603 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 22:12:18.1843 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 22:12:18.1943 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 22:12:18.1943 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-22 22:17:27.1301 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 22:17:27.1501 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 22:17:27.1911 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 22:17:27.2031 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 22:17:29.3111 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 22:17:29.3441 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-22 22:17:29.3531 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 22:18:45.3448 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 22:18:45.3768 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 22:18:45.4378 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 22:18:45.4508 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 22:18:45.5048 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 22:18:45.5068 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 22:18:45.5068 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 22:18:45.5068 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 22:18:45.5068 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 22:18:47.7041 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 22:18:47.7511 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-22 22:18:47.7611 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 22:47:52.3726 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 22:47:52.3936 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 22:47:52.4416 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 22:47:52.4526 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 22:47:52.4716 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 22:47:52.4716 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 22:47:52.4756 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 22:47:52.4756 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 22:47:52.4756 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 22:47:54.8416 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 22:47:54.8666 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 22:47:54.8826 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 23:00:35.3775 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 23:00:35.3975 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 23:00:35.4355 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 23:00:35.4435 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 23:00:37.3685 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 23:00:37.3865 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 23:00:37.3995 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 23:10:50.9709 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 23:10:50.9899 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 23:10:51.0299 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 23:10:51.0419 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 23:10:53.0099 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 23:10:53.0269 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 23:10:53.0269 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 23:27:00.4757 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 23:27:00.5007 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 23:27:00.5517 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 23:27:00.5607 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 23:27:00.5807 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 23:27:00.5807 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 23:27:00.5807 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 23:27:00.5847 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 23:27:00.5847 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 23:27:02.6288 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 23:27:02.6488 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 23:27:02.6488 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-22 23:34:46.0933 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-22 23:34:46.1133 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-22 23:34:46.1503 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-22 23:34:46.1503 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-22 23:34:46.1763 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-22 23:34:46.1783 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-22 23:34:46.1783 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-22 23:34:46.1783 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-22 23:34:46.1783 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-22 23:34:48.1683 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-22 23:34:48.1913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-22 23:34:48.2013 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-22 23:47:30.3786 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-22 23:47:30.3786 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-22 23:47:30.3786 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-22 23:47:30.3816 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-22 23:47:30.3816 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 00:45:27.2740 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 00:45:27.2970 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 00:45:27.3430 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 00:45:27.3560 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 00:45:29.6310 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 00:45:29.6480 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 00:45:29.6480 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 00:52:57.5799 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 00:52:57.6009 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 00:52:57.6529 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 00:52:57.6629 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 00:52:59.6839 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 00:52:59.7019 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 00:52:59.7119 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 01:03:33.7870 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 01:03:33.8090 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 01:03:33.8500 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 01:03:33.8500 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 01:03:36.0730 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 01:03:36.0910 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 01:03:36.1010 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 01:06:56.5847 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 01:06:56.6087 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 01:06:56.6587 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 01:06:56.6687 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 01:06:58.7651 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 01:06:58.7821 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 01:06:58.7911 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 01:07:14.7721 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 01:07:14.7881 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 01:07:14.8141 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 01:07:14.8141 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 01:07:16.3672 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 01:07:16.3822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 01:07:16.3822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 01:08:00.9584 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 01:08:00.9594 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 01:08:00.9594 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 01:08:00.9594 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 01:08:00.9594 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 01:08:42.8536 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 01:08:42.8756 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 01:08:42.9206 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 01:08:42.9356 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 01:08:45.0771 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 01:08:45.0981 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 01:08:45.1091 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 01:15:22.4189 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 01:15:22.4439 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 01:15:22.4959 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 01:15:22.4959 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 01:15:24.6079 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 01:15:24.6269 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 01:15:24.6369 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 01:18:44.3939 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 01:18:44.4169 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 01:18:44.4739 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 01:18:44.4829 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 01:18:46.5869 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 01:18:46.6049 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 01:18:46.6049 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 01:33:04.3593 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 01:33:04.3813 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 01:33:04.4243 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 01:33:04.4333 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 01:33:06.6893 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 01:33:06.7063 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 01:33:06.7153 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 16:50:19.4133 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 16:50:19.4333 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 16:50:19.4783 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 16:50:19.4783 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 16:50:23.5960 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 16:50:23.6250 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 16:50:23.6430 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 16:50:23.6550 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 16:57:33.3288 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 16:57:33.3478 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 16:57:33.3888 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 16:57:33.3988 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 16:57:33.3988 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 16:57:33.4128 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 16:57:33.4128 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 16:57:33.4128 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 16:57:33.4128 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 16:57:35.5958 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 16:57:35.6138 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 16:57:35.6238 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 16:57:35.6338 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 17:26:54.1419 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 17:26:54.1689 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 17:26:54.2239 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 17:26:54.2359 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 17:26:56.4611 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 17:26:56.4771 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 17:26:56.4771 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 17:26:56.4961 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 17:28:23.7418 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 17:28:23.7668 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 17:28:23.8058 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 17:28:23.8058 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 17:28:23.8308 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 17:28:23.8308 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 17:28:23.8308 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 17:28:23.8348 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 17:28:23.8348 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 17:28:25.7979 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 17:28:25.8169 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 17:28:25.8269 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 17:28:25.8359 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 17:29:53.4658 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 17:29:53.4918 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 17:29:53.5468 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 17:29:53.5568 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 17:29:53.5568 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 17:29:53.5568 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 17:29:53.5698 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 17:29:53.5698 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 17:29:53.5698 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 17:29:59.6561 Error: [source]:Visa SearchDevices,[msg]:*IDN查询设备名称时异常,GPIB0::18::INSTR
- 2021-11-23 17:30:03.8746 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 167
- 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
- 2021-11-23 17:30:03.8746 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 17:30:03.9036 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
- 2021-11-23 17:30:03.9136 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 17:37:48.7798 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 17:37:48.7798 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 17:37:48.7958 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 17:37:48.8048 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 17:37:56.7999 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 17:37:56.8179 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 17:37:56.8529 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 17:37:56.8529 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 17:37:58.7809 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 17:37:58.8009 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 17:37:58.8109 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 17:37:58.8209 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 17:57:29.1294 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 17:57:29.1464 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 17:57:29.1864 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 17:57:29.2084 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 17:57:29.2374 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 17:57:29.2374 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 17:57:29.2374 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 17:57:29.2414 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 17:57:29.2414 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 17:57:31.2336 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 17:57:31.2516 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 17:57:31.2608 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 17:57:31.2608 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 18:07:09.0685 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 18:07:09.0895 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 18:07:09.1375 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 18:07:09.1505 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 18:07:11.0446 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 18:07:11.0606 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 18:07:11.0696 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 18:07:11.0696 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 18:48:44.6262 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 18:48:44.6482 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 18:48:44.7112 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 18:48:44.7112 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 18:48:47.2792 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 18:48:47.3002 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 18:48:47.3112 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 18:48:47.3212 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 18:49:14.8006 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 18:49:14.8196 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 18:49:14.8576 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 18:49:16.6609 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 18:49:16.6769 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 18:49:16.6869 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 18:49:16.6959 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 18:49:42.5866 Error: [source]:runtime,[msg]:未将对象引用设置到对象的实例。 在 Tps_LQ_Transmitter.FrmMain.BtnStop_Click(Object sender, EventArgs e) 位置 D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\tps\TpsLabStudio\FrmMain.cs:行号 441
- 在 System.Windows.Forms.Control.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
- 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
- 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
- 在 System.Windows.Forms.Control.WndProc(Message& m)
- 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
- 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
- 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
- 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
- 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
- 在 System.Windows.Forms.Application.Run(Form mainForm)
- 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
- 2021-11-23 18:49:45.4066 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 18:49:45.4256 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 18:49:45.4616 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 18:49:45.4616 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 18:49:47.2877 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 18:49:47.3067 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 18:49:47.3067 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 18:49:47.3267 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 20:34:36.3754 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 20:34:36.4004 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 20:34:36.4524 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 20:34:36.4634 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 20:34:38.9184 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 20:34:38.9394 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 20:34:38.9504 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 20:34:38.9504 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 20:36:46.7929 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 20:36:46.8159 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 20:36:46.8569 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 20:36:46.8569 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 20:36:48.9589 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 20:36:48.9769 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 20:36:48.9769 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 20:36:49.0009 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 20:47:22.1419 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 20:47:22.1629 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 20:47:22.2029 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 20:47:22.2139 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 20:47:24.4105 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 20:47:24.4264 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 20:47:24.4365 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 20:47:24.4455 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 20:47:48.3937 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 20:47:48.4157 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 20:47:48.4577 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 20:47:48.4707 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 20:47:48.4887 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 20:47:48.4887 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 20:47:48.4887 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 20:47:48.4927 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 20:47:48.4927 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 20:47:50.5702 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 20:47:50.5882 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 20:47:50.5882 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 20:47:50.6062 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-23 20:53:16.2747 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-23 20:53:16.2977 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-23 20:53:16.3357 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-23 20:53:16.3487 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-23 20:53:18.2677 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-23 20:53:18.2857 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-23 20:53:18.2957 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-23 20:53:18.2957 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-24 16:31:33.9217 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-24 16:31:33.9496 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-24 16:31:34.0074 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-24 16:31:34.0074 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-24 16:31:36.6037 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-24 16:31:36.6217 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-24 16:31:36.6346 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-24 16:31:36.6346 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-24 16:35:32.7511 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-24 16:35:32.7730 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-24 16:35:32.8129 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-24 16:35:32.8218 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-24 16:35:32.8218 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-24 16:35:32.8218 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-24 16:35:32.8218 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-24 16:35:32.8348 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-24 16:35:32.8348 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-24 16:35:34.6095 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-24 16:35:34.6305 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-24 16:35:34.6445 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-24 16:35:34.6534 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
- 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:Runtime 关闭
- 2021-11-24 16:41:27.5464 Info: [source]:runtime,[msg]:Runtime 启动
- 2021-11-24 16:41:27.5694 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
- 2021-11-24 16:41:27.6042 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
- 2021-11-24 16:41:27.6042 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
- 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:AppHost 开始启动插件
- 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
- 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
- 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
- 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:Runtime 启动完成
- 2021-11-24 16:41:29.5373 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
- 2021-11-24 16:41:29.5552 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
- 2021-11-24 16:41:29.5692 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
- 2021-11-24 16:58:50.8497 Info: [source]:runtime,[msg]:AppHost 停止插件
- 2021-11-24 16:58:50.8506 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
- 2021-11-24 16:58:50.8506 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
- 2021-11-24 16:58:50.8506 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
- 2021-11-24 16:58:50.8506 Info: [source]:runtime,[msg]:Runtime 关闭
|