_BaslerUniversalTLParams.h 202 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801
  1. //-----------------------------------------------------------------------------
  2. // Basler pylon SDK
  3. // Copyright (c) 2019-2021 Basler AG
  4. // http://www.baslerweb.com
  5. //-----------------------------------------------------------------------------
  6. /*!
  7. \file
  8. \brief A parameter class containing all parameters as members that are available for pylon device transport layers
  9. The parameter class is used by the \c Pylon::CBaslerUniversalInstantCamera class.
  10. The \ref sample_ParametrizeCamera_NativeParameterAccess code sample shows how to access camera parameters via the \c Pylon::CBaslerUniversalInstantCamera class.
  11. */
  12. //-----------------------------------------------------------------------------
  13. // This file is generated automatically
  14. // Do not modify!
  15. //-----------------------------------------------------------------------------
  16. #ifndef BASLER_PYLON_UNIVERSALTLPARAMS_H
  17. #define BASLER_PYLON_UNIVERSALTLPARAMS_H
  18. #pragma once
  19. // common parameter types
  20. #include <pylon/ParameterIncludes.h>
  21. #include <pylon/EnumParameterT.h>
  22. namespace Basler_UniversalTLParams
  23. {
  24. //**************************************************************************************************
  25. // Enumerations
  26. //**************************************************************************************************
  27. //! Valid values for AreaTriggerMode
  28. enum AreaTriggerModeEnums
  29. {
  30. AreaTriggerMode_External, //!< The trigger mode is set to External - Applies to: CoaXPress
  31. AreaTriggerMode_Generator, //!< The trigger mode is set to Generator - Applies to: CoaXPress
  32. AreaTriggerMode_Software, //!< The trigger mode is set to Software - Applies to: CoaXPress
  33. AreaTriggerMode_Synchronized //!< The trigger mode is set to Synchronized - Applies to: CoaXPress
  34. };
  35. //! Valid values for BitAlignment
  36. enum BitAlignmentEnums
  37. {
  38. BitAlignment_CustomBitShift, //!< The bits are shifted by a user-defined value - Applies to: CoaXPress
  39. BitAlignment_LeftAligned, //!< The bits left-aligned - Applies to: CoaXPress
  40. BitAlignment_RightAligned //!< The bits right-aligned - Applies to: CoaXPress
  41. };
  42. //! Valid values for CxpLinkConfiguration
  43. enum CxpLinkConfigurationEnums
  44. {
  45. CxpLinkConfiguration_Auto, //!< Link speed is controlled automatically - Applies to: CoaXPress
  46. CxpLinkConfiguration_CXP10_X1, //!< 1 connection is operating at CXP-10 speed (10 0 Gbps) - Applies to: CoaXPress
  47. CxpLinkConfiguration_CXP10_X2, //!< 2 connections are operating at CXP-10 speed (10 0 Gbps) - Applies to: CoaXPress
  48. CxpLinkConfiguration_CXP10_X3, //!< 3 connections are operating at CXP-10 speed (10 0 Gbps) - Applies to: CoaXPress
  49. CxpLinkConfiguration_CXP10_X4, //!< 4 connections are operating at CXP-10 speed (10 0 Gbps) - Applies to: CoaXPress
  50. CxpLinkConfiguration_CXP12_X1, //!< 1 connection is operating at CXP-12 speed (12 50 Gbps) - Applies to: CoaXPress
  51. CxpLinkConfiguration_CXP12_X2, //!< 2 connections are operating at CXP-12 speed (12 50 Gbps) - Applies to: CoaXPress
  52. CxpLinkConfiguration_CXP12_X3, //!< 3 connections are operating at CXP-12 speed (12 50 Gbps) - Applies to: CoaXPress
  53. CxpLinkConfiguration_CXP12_X4, //!< 4 connections are operating at CXP-12 speed (12 50 Gbps) - Applies to: CoaXPress
  54. CxpLinkConfiguration_CXP1_X1, //!< 1 connection is operating at CXP-1 speed (1 25 Gbps) - Applies to: CoaXPress
  55. CxpLinkConfiguration_CXP1_X2, //!< 2 connections are operating at CXP-1 speed (1 25 Gbps) - Applies to: CoaXPress
  56. CxpLinkConfiguration_CXP1_X3, //!< 3 connections are operating at CXP-1 speed (1 25 Gbps) - Applies to: CoaXPress
  57. CxpLinkConfiguration_CXP1_X4, //!< 4 connections are operating at CXP-1 speed (1 25 Gbps) - Applies to: CoaXPress
  58. CxpLinkConfiguration_CXP2_X1, //!< 1 connection is operating at CXP-2 speed (2 50 Gbps) - Applies to: CoaXPress
  59. CxpLinkConfiguration_CXP2_X2, //!< 2 connections are operating at CXP-2 speed (2 50 Gbps) - Applies to: CoaXPress
  60. CxpLinkConfiguration_CXP2_X3, //!< 3 connections are operating at CXP-2 speed (2 50 Gbps) - Applies to: CoaXPress
  61. CxpLinkConfiguration_CXP2_X4, //!< 4 connections are operating at CXP-2 speed (2 50 Gbps) - Applies to: CoaXPress
  62. CxpLinkConfiguration_CXP3_X1, //!< 1 connection is operating at CXP-3 speed (3 125 Gbps) - Applies to: CoaXPress
  63. CxpLinkConfiguration_CXP3_X2, //!< 2 connections are operating at CXP-3 speed (3 125 Gbps) - Applies to: CoaXPress
  64. CxpLinkConfiguration_CXP3_X3, //!< 3 connections are operating at CXP-3 speed (3 125 Gbps) - Applies to: CoaXPress
  65. CxpLinkConfiguration_CXP3_X4, //!< 4 connections are operating at CXP-3 speed (3 125 Gbps) - Applies to: CoaXPress
  66. CxpLinkConfiguration_CXP5_X1, //!< 1 connection is operating at CXP-5 speed (5 00 Gbps) - Applies to: CoaXPress
  67. CxpLinkConfiguration_CXP5_X2, //!< 2 connections are operating at CXP-5 speed (5 00 Gbps) - Applies to: CoaXPress
  68. CxpLinkConfiguration_CXP5_X3, //!< 3 connections are operating at CXP-5 speed (5 00 Gbps) - Applies to: CoaXPress
  69. CxpLinkConfiguration_CXP5_X4, //!< 4 connections are operating at CXP-5 speed (5 00 Gbps) - Applies to: CoaXPress
  70. CxpLinkConfiguration_CXP6_X1, //!< 1 connection is operating at CXP-6 speed (6 25 Gbps) - Applies to: CoaXPress
  71. CxpLinkConfiguration_CXP6_X2, //!< 2 connections are operating at CXP-6 speed (6 25 Gbps) - Applies to: CoaXPress
  72. CxpLinkConfiguration_CXP6_X3, //!< 3 connections are operating at CXP-6 speed (6 25 Gbps) - Applies to: CoaXPress
  73. CxpLinkConfiguration_CXP6_X4 //!< 4 connections are operating at CXP-6 speed (6 25 Gbps) - Applies to: CoaXPress
  74. };
  75. //! Valid values for CxpTriggerPacketMode
  76. enum CxpTriggerPacketModeEnums
  77. {
  78. CxpTriggerPacketMode_CXPTriggerRising, //!< Only rising edge trigger packets are sent - Applies to: CoaXPress
  79. CxpTriggerPacketMode_CXPTriggerStandard //!< Rising and falling edge trigger packets are sent on an alternating basis - Applies to: CoaXPress
  80. };
  81. //! Valid values for DeviceAccessStatus
  82. enum DeviceAccessStatusEnums
  83. {
  84. DeviceAccessStatus_Busy, //!< The device is already opened by another entity - Applies to: CoaXPress and blaze
  85. DeviceAccessStatus_NoAccess, //!< You can't connect to the device - Applies to: CoaXPress and blaze
  86. DeviceAccessStatus_OpenReadOnly, //!< The device is opened in Read-only mode by this GenTL host - Applies to: CoaXPress and blaze
  87. DeviceAccessStatus_OpenReadWrite, //!< The device is opened in Read/Write mode by this GenTL host - Applies to: CoaXPress and blaze
  88. DeviceAccessStatus_ReadOnly, //!< The device offers read-only access - Applies to: CoaXPress and blaze
  89. DeviceAccessStatus_ReadWrite, //!< The device offers read/write access - Applies to: CoaXPress and blaze
  90. DeviceAccessStatus_Unknown //!< The status is unknown - Applies to: CoaXPress and blaze
  91. };
  92. //! Valid values for DeviceEndianessMechanism
  93. enum DeviceEndianessMechanismEnums
  94. {
  95. DeviceEndianessMechanism_Legacy, //!< The device endianness is handled according to GenICam Schema 1 0 - Applies to: blaze
  96. DeviceEndianessMechanism_Standard //!< The device endianness is handled according to GenICam Schema 1 1 and later - Applies to: blaze
  97. };
  98. //! Valid values for DeviceType
  99. enum DeviceTypeEnums
  100. {
  101. DeviceType_CL, //!< The device uses the Camera Link transport layer - Applies to: CoaXPress
  102. DeviceType_CLHS, //!< The device uses the Camera Link HS transport layer - Applies to: CoaXPress
  103. DeviceType_CXP, //!< The device uses the CoaXPress transport layer - Applies to: CoaXPress
  104. DeviceType_CameraLink, //!< Camera Link - Applies to: CoaXPress
  105. DeviceType_CameraLinkHS, //!< Camera Link High Speed - Applies to: CoaXPress
  106. DeviceType_CoaXPress, //!< CoaXPress - Applies to: CoaXPress
  107. DeviceType_Custom, //!< The device uses a custom transport layer - Applies to: CoaXPress
  108. DeviceType_GEV, //!< The device uses the GigE Vision transport layer - Applies to: CoaXPress
  109. DeviceType_GigEVision, //!< GigE Vision - Applies to: CoaXPress
  110. DeviceType_Mixed, //!< Different interface modules of the GenTL Producer are of different types - Applies to: CoaXPress
  111. DeviceType_U3V, //!< The device uses the USB3 Vision transport layer - Applies to: CoaXPress
  112. DeviceType_USB3Vision //!< USB3 Vision - Applies to: CoaXPress
  113. };
  114. //! Valid values for EventNotification
  115. enum EventNotificationEnums
  116. {
  117. EventNotification_Off, //!< The selected Event notification is disabled - Applies to: CoaXPress and blaze
  118. EventNotification_On, //!< The selected Event notification is enabled - Applies to: CoaXPress and blaze
  119. EventNotification_Once //!< The selected Event notification is enabled for one event then return to Off state - Applies to: CoaXPress and blaze
  120. };
  121. //! Valid values for EventSelector
  122. enum EventSelectorEnums
  123. {
  124. EventSelector_DeviceLost //!< The Device Lost event is selected - Applies to: CoaXPress and blaze
  125. };
  126. //! Valid values for Format
  127. enum FormatEnums
  128. {
  129. Format_BGR10p, //!< The pixel output format is set to BGR10p - Applies to: CoaXPress
  130. Format_BGR12p, //!< The pixel output format is set to BGR12p - Applies to: CoaXPress
  131. Format_BGR14p, //!< The pixel output format is set to BGR14p - Applies to: CoaXPress
  132. Format_BGR16, //!< The pixel output format is set to BGR16 - Applies to: CoaXPress
  133. Format_BGR8, //!< The pixel output format is set to BGR8 - Applies to: CoaXPress
  134. Format_BGRa8, //!< The pixel output format is set to BGRa8 - Applies to: CoaXPress
  135. Format_BayerBG10p, //!< The pixel output format is set to BayerBG10p - Applies to: CoaXPress
  136. Format_BayerBG12p, //!< The pixel output format is set to BayerBG12p - Applies to: CoaXPress
  137. Format_BayerBG14p, //!< The pixel output format is set to BayerBG14p - Applies to: CoaXPress
  138. Format_BayerBG16, //!< The pixel output format is set to BayerBG16 - Applies to: CoaXPress
  139. Format_BayerBG8, //!< The pixel output format is set to BayerBG8 - Applies to: CoaXPress
  140. Format_BayerGB10p, //!< The pixel output format is set to BayerGB10p - Applies to: CoaXPress
  141. Format_BayerGB12p, //!< The pixel output format is set to BayerGB12p - Applies to: CoaXPress
  142. Format_BayerGB14p, //!< The pixel output format is set to BayerGB14p - Applies to: CoaXPress
  143. Format_BayerGB16, //!< The pixel output format is set to BayerGB16 - Applies to: CoaXPress
  144. Format_BayerGB8, //!< The pixel output format is set to BayerGB8 - Applies to: CoaXPress
  145. Format_BayerGR10p, //!< The pixel output format is set to BayerGR10p - Applies to: CoaXPress
  146. Format_BayerGR12p, //!< The pixel output format is set to BayerGR12p - Applies to: CoaXPress
  147. Format_BayerGR14p, //!< The pixel output format is set to BayerGR14p - Applies to: CoaXPress
  148. Format_BayerGR16, //!< The pixel output format is set to BayerGR16 - Applies to: CoaXPress
  149. Format_BayerGR8, //!< The pixel output format is set to BayerGR8 - Applies to: CoaXPress
  150. Format_BayerRG10p, //!< The pixel output format is set to BayerRG10p - Applies to: CoaXPress
  151. Format_BayerRG12p, //!< The pixel output format is set to BayerRG12p - Applies to: CoaXPress
  152. Format_BayerRG14p, //!< The pixel output format is set to BayerRG14p - Applies to: CoaXPress
  153. Format_BayerRG16, //!< The pixel output format is set to BayerRG16 - Applies to: CoaXPress
  154. Format_BayerRG8, //!< The pixel output format is set to BayerRG8 - Applies to: CoaXPress
  155. Format_Mono10p, //!< The pixel output format is set to Mono10p - Applies to: CoaXPress
  156. Format_Mono12p, //!< The pixel output format is set to Mono12p - Applies to: CoaXPress
  157. Format_Mono14p, //!< The pixel output format is set to Mono14p - Applies to: CoaXPress
  158. Format_Mono16, //!< The pixel output format is set to Mono16 - Applies to: CoaXPress
  159. Format_Mono8, //!< The pixel output format is set to Mono8 - Applies to: CoaXPress
  160. Format_RGB10p, //!< The pixel output format is set to RGB10p - Applies to: CoaXPress
  161. Format_RGB12p, //!< The pixel output format is set to RGB12p - Applies to: CoaXPress
  162. Format_RGB14p, //!< The pixel output format is set to RGB14p - Applies to: CoaXPress
  163. Format_RGB16, //!< The pixel output format is set to RGB16 - Applies to: CoaXPress
  164. Format_RGB8, //!< The pixel output format is set to RGB8 - Applies to: CoaXPress
  165. Format_RGBa8, //!< The pixel output format is set to RGBa8 - Applies to: CoaXPress
  166. Format_YCbCr422_8 //!< The pixel output format is set to YCbCr422_8 - Applies to: CoaXPress
  167. };
  168. //! Valid values for LutEnable
  169. enum LutEnableEnums
  170. {
  171. LutEnable_Off, //!< Off - Applies to: CoaXPress
  172. LutEnable_On //!< On - Applies to: CoaXPress
  173. };
  174. //! Valid values for LutImplementationType
  175. enum LutImplementationTypeEnums
  176. {
  177. LutImplementationType_FullLUT, //!< Defines 1 value for each possible pixel value - Applies to: CoaXPress
  178. LutImplementationType_KneeLUT //!< Uses an interpolation for pixel values based one a set of defined values - Applies to: CoaXPress
  179. };
  180. //! Valid values for LutType
  181. enum LutTypeEnums
  182. {
  183. LutType_Processor, //!< Processor - Applies to: CoaXPress
  184. LutType_UserFile //!< Use a user file to configure the value - Applies to: CoaXPress
  185. };
  186. //! Valid values for MissingCameraFrameResponse
  187. enum MissingCameraFrameResponseEnums
  188. {
  189. MissingCameraFrameResponse_No, //!< The camera sends a frame for each output trigger pulse - Applies to: CoaXPress
  190. MissingCameraFrameResponse_Yes //!< The camera doesn't send a frame for each output trigger pulse - Applies to: CoaXPress
  191. };
  192. //! Valid values for PixelFormat
  193. enum PixelFormatEnums
  194. {
  195. PixelFormat_BayerBG10p, //!< The pixel format is set to BayerBG10p - Applies to: CoaXPress
  196. PixelFormat_BayerBG12p, //!< The pixel format is set to BayerBG12p - Applies to: CoaXPress
  197. PixelFormat_BayerBG14p, //!< The pixel format is set to BayerBG14p - Applies to: CoaXPress
  198. PixelFormat_BayerBG8, //!< The pixel format is set to BayerBG8 - Applies to: CoaXPress
  199. PixelFormat_BayerGB10p, //!< The pixel format is set to BayerGB10p - Applies to: CoaXPress
  200. PixelFormat_BayerGB12p, //!< The pixel format is set to BayerGB12p - Applies to: CoaXPress
  201. PixelFormat_BayerGB14p, //!< The pixel format is set to BayerGB14p - Applies to: CoaXPress
  202. PixelFormat_BayerGB8, //!< The pixel format is set to BayerGB8 - Applies to: CoaXPress
  203. PixelFormat_BayerGR10p, //!< The pixel format is set to BayerGR10p - Applies to: CoaXPress
  204. PixelFormat_BayerGR12p, //!< The pixel format is set to BayerGR12p - Applies to: CoaXPress
  205. PixelFormat_BayerGR14p, //!< The pixel format is set to BayerGR14p - Applies to: CoaXPress
  206. PixelFormat_BayerGR8, //!< The pixel format is set to BayerGR8 - Applies to: CoaXPress
  207. PixelFormat_BayerRG10p, //!< The pixel format is set to BayerRG10p - Applies to: CoaXPress
  208. PixelFormat_BayerRG12p, //!< The pixel format is set to BayerRG12p - Applies to: CoaXPress
  209. PixelFormat_BayerRG14p, //!< The pixel format is set to BayerRG14p - Applies to: CoaXPress
  210. PixelFormat_BayerRG8, //!< The pixel format is set to BayerRG8 - Applies to: CoaXPress
  211. PixelFormat_Mono10, //!< The pixel format is set to Mono10 - Applies to: CoaXPress
  212. PixelFormat_Mono10p, //!< The pixel output format is set to Mono10p - Applies to: CoaXPress
  213. PixelFormat_Mono12, //!< The pixel format is set to Mono12 - Applies to: CoaXPress
  214. PixelFormat_Mono12p, //!< The pixel output format is set to Mono12p - Applies to: CoaXPress
  215. PixelFormat_Mono14p, //!< The pixel output format is set to Mono14p - Applies to: CoaXPress
  216. PixelFormat_Mono16, //!< The pixel format is set to Mono16 - Applies to: CoaXPress
  217. PixelFormat_Mono8, //!< The pixel format is set to Mono8 - Applies to: CoaXPress
  218. PixelFormat_RGB10p, //!< The pixel format is set to RGB10p - Applies to: CoaXPress
  219. PixelFormat_RGB12p, //!< The pixel format is set to RGB12p - Applies to: CoaXPress
  220. PixelFormat_RGB14p, //!< The pixel format is set to RGB14p - Applies to: CoaXPress
  221. PixelFormat_RGB16, //!< The pixel format is set to RGB16 - Applies to: CoaXPress
  222. PixelFormat_RGB8, //!< The pixel format is set to RGB8 - Applies to: CoaXPress
  223. PixelFormat_YCbCr422_8 //!< The pixel format is set to YCbCr422_8 - Applies to: CoaXPress
  224. };
  225. //! Valid values for ProcessingInvert
  226. enum ProcessingInvertEnums
  227. {
  228. ProcessingInvert_Off, //!< Off - Applies to: CoaXPress
  229. ProcessingInvert_On //!< On - Applies to: CoaXPress
  230. };
  231. //! Valid values for SoftwareTriggerIsBusy
  232. enum SoftwareTriggerIsBusyEnums
  233. {
  234. SoftwareTriggerIsBusy_Busy, //!< The software trigger is busy - Applies to: CoaXPress
  235. SoftwareTriggerIsBusy_NotBusy //!< The software trigger is not busy - Applies to: CoaXPress
  236. };
  237. //! Valid values for SystemmonitorByteAlignment8b10bLocked
  238. enum SystemmonitorByteAlignment8b10bLockedEnums
  239. {
  240. SystemmonitorByteAlignment8b10bLocked_No, //!< No - Applies to: CoaXPress
  241. SystemmonitorByteAlignment8b10bLocked_Yes //!< Yes - Applies to: CoaXPress
  242. };
  243. //! Valid values for SystemmonitorExternalPower
  244. enum SystemmonitorExternalPowerEnums
  245. {
  246. SystemmonitorExternalPower_NoPower, //!< No power - Applies to: CoaXPress
  247. SystemmonitorExternalPower_PowerGood //!< Power is ok - Applies to: CoaXPress
  248. };
  249. //! Valid values for SystemmonitorPowerOverCxpState
  250. enum SystemmonitorPowerOverCxpStateEnums
  251. {
  252. SystemmonitorPowerOverCxpState_PoCXPADCChipError, //!< ADC Chip Error - Applies to: CoaXPress
  253. SystemmonitorPowerOverCxpState_PoCXPBooting, //!< Booting, not initalized - Applies to: CoaXPress
  254. SystemmonitorPowerOverCxpState_PoCXPDisabled, //!< No Power over CXP - Applies to: CoaXPress
  255. SystemmonitorPowerOverCxpState_PoCXPLowVolt, //!< Low voltage - Applies to: CoaXPress
  256. SystemmonitorPowerOverCxpState_PoCXPMaxCurrent, //!< Maximum current - Applies to: CoaXPress
  257. SystemmonitorPowerOverCxpState_PoCXPMinCurrent, //!< Minimum current - Applies to: CoaXPress
  258. SystemmonitorPowerOverCxpState_PoCXPNotConnected, //!< No cable connected - Applies to: CoaXPress
  259. SystemmonitorPowerOverCxpState_PoCXPOK, //!< Power over CXP OK - Applies to: CoaXPress
  260. SystemmonitorPowerOverCxpState_PoCXPOverVolt //!< Over voltage - Applies to: CoaXPress
  261. };
  262. //! Valid values for TriggerCameraOutSelect
  263. enum TriggerCameraOutSelectEnums
  264. {
  265. TriggerCameraOutSelect_BypassFrontGPI0, //!< The output source is set to BypassFrontGPI0 - Applies to: CoaXPress
  266. TriggerCameraOutSelect_BypassFrontGPI1, //!< The output source is set to BypassFrontGPI1 - Applies to: CoaXPress
  267. TriggerCameraOutSelect_BypassFrontGPI2, //!< The output source is set to BypassFrontGPI2 - Applies to: CoaXPress
  268. TriggerCameraOutSelect_BypassFrontGPI3, //!< The output source is set to BypassFrontGPI3 - Applies to: CoaXPress
  269. TriggerCameraOutSelect_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  270. TriggerCameraOutSelect_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  271. TriggerCameraOutSelect_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  272. TriggerCameraOutSelect_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  273. TriggerCameraOutSelect_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  274. TriggerCameraOutSelect_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  275. TriggerCameraOutSelect_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  276. TriggerCameraOutSelect_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  277. TriggerCameraOutSelect_CamAPulseGenerator0, //!< The output source is set to CamAPulseGenerator0 - Applies to: CoaXPress
  278. TriggerCameraOutSelect_CamAPulseGenerator1, //!< The output source is set to CamAPulseGenerator1 - Applies to: CoaXPress
  279. TriggerCameraOutSelect_CamAPulseGenerator2, //!< The output source is set to CamAPulseGenerator2 - Applies to: CoaXPress
  280. TriggerCameraOutSelect_CamAPulseGenerator3, //!< The output source is set to CamAPulseGenerator3 - Applies to: CoaXPress
  281. TriggerCameraOutSelect_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  282. TriggerCameraOutSelect_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  283. TriggerCameraOutSelect_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  284. TriggerCameraOutSelect_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  285. TriggerCameraOutSelect_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  286. TriggerCameraOutSelect_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  287. TriggerCameraOutSelect_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  288. TriggerCameraOutSelect_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  289. TriggerCameraOutSelect_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  290. TriggerCameraOutSelect_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  291. TriggerCameraOutSelect_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  292. TriggerCameraOutSelect_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  293. TriggerCameraOutSelect_GND, //!< The output source is set to GND - Applies to: CoaXPress
  294. TriggerCameraOutSelect_NotBypassFronGPI0, //!< The output source is set to NotBypassFrontGPI0 - Applies to: CoaXPress
  295. TriggerCameraOutSelect_NotBypassFronGPI1, //!< The output source is set to NotBypassFrontGPI1 - Applies to: CoaXPress
  296. TriggerCameraOutSelect_NotBypassFronGPI2, //!< The output source is set to NotBypassFrontGPI2 - Applies to: CoaXPress
  297. TriggerCameraOutSelect_NotBypassFronGPI3, //!< The output source is set to NotBypassFrontGPI3 - Applies to: CoaXPress
  298. TriggerCameraOutSelect_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  299. TriggerCameraOutSelect_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  300. TriggerCameraOutSelect_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  301. TriggerCameraOutSelect_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  302. TriggerCameraOutSelect_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  303. TriggerCameraOutSelect_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  304. TriggerCameraOutSelect_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  305. TriggerCameraOutSelect_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  306. TriggerCameraOutSelect_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  307. TriggerCameraOutSelect_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  308. TriggerCameraOutSelect_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  309. TriggerCameraOutSelect_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  310. TriggerCameraOutSelect_NotCamAPulseGenerator0, //!< The output source is set to NotCamAPulseGenerator0 - Applies to: CoaXPress
  311. TriggerCameraOutSelect_NotCamAPulseGenerator1, //!< The output source is set to NotCamAPulseGenerator1 - Applies to: CoaXPress
  312. TriggerCameraOutSelect_NotCamAPulseGenerator2, //!< The output source is set to NotCamAPulseGenerator2 - Applies to: CoaXPress
  313. TriggerCameraOutSelect_NotCamAPulseGenerator3, //!< The output source is set to NotCamAPulseGenerator3 - Applies to: CoaXPress
  314. TriggerCameraOutSelect_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  315. TriggerCameraOutSelect_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  316. TriggerCameraOutSelect_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  317. TriggerCameraOutSelect_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  318. TriggerCameraOutSelect_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  319. TriggerCameraOutSelect_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  320. TriggerCameraOutSelect_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  321. TriggerCameraOutSelect_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  322. TriggerCameraOutSelect_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  323. TriggerCameraOutSelect_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  324. TriggerCameraOutSelect_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  325. TriggerCameraOutSelect_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  326. TriggerCameraOutSelect_NotPulseGenerator0, //!< The output source is set to NotPulseGenerator0 - Applies to: CoaXPress
  327. TriggerCameraOutSelect_NotPulseGenerator1, //!< The output source is set to NotPulseGenerator1 - Applies to: CoaXPress
  328. TriggerCameraOutSelect_NotPulseGenerator2, //!< The output source is set to NotPulseGenerator2 - Applies to: CoaXPress
  329. TriggerCameraOutSelect_NotPulseGenerator3, //!< The output source is set to NotPulseGenerator3 - Applies to: CoaXPress
  330. TriggerCameraOutSelect_PulseGenerator0, //!< The output source is set to PulseGenerator0 - Applies to: CoaXPress
  331. TriggerCameraOutSelect_PulseGenerator1, //!< The output source is set to PulseGenerator1 - Applies to: CoaXPress
  332. TriggerCameraOutSelect_PulseGenerator2, //!< The output source is set to PulseGenerator2 - Applies to: CoaXPress
  333. TriggerCameraOutSelect_PulseGenerator3, //!< The output source is set to PulseGenerator3 - Applies to: CoaXPress
  334. TriggerCameraOutSelect_VCC //!< The output source is set to VCC - Applies to: CoaXPress
  335. };
  336. //! Valid values for TriggerExceededPeriodLimits
  337. enum TriggerExceededPeriodLimitsEnums
  338. {
  339. TriggerExceededPeriodLimits_No, //!< The input signal frequency hasn't exceeded the maximum frequency defined by the Trigger Output Frequency parameter - Applies to: CoaXPress
  340. TriggerExceededPeriodLimits_Yes //!< The input signal frequency has exceeded the maximum frequency defined by the Trigger Output Frequency parameter - Applies to: CoaXPress
  341. };
  342. //! Valid values for TriggerInPolarity
  343. enum TriggerInPolarityEnums
  344. {
  345. TriggerInPolarity_HighActive, //!< The polarity is set to HighActive - Applies to: CoaXPress
  346. TriggerInPolarity_LowActive //!< The polarity is set to LowActive - Applies to: CoaXPress
  347. };
  348. //! Valid values for TriggerInSource
  349. enum TriggerInSourceEnums
  350. {
  351. TriggerInSource_GPITriggerSource0, //!< GPI Trigger Source 0 - Applies to: CoaXPress
  352. TriggerInSource_GPITriggerSource1, //!< GPI Trigger Source 1 - Applies to: CoaXPress
  353. TriggerInSource_GPITriggerSource2, //!< GPI Trigger Source 2 - Applies to: CoaXPress
  354. TriggerInSource_GPITriggerSource3, //!< GPI Trigger Source 3 - Applies to: CoaXPress
  355. TriggerInSource_GPITriggerSource4, //!< GPI Trigger Source 4 - Applies to: CoaXPress
  356. TriggerInSource_GPITriggerSource5, //!< GPI Trigger Source 5 - Applies to: CoaXPress
  357. TriggerInSource_GPITriggerSource6, //!< GPI Trigger Source 6 - Applies to: CoaXPress
  358. TriggerInSource_GPITriggerSource7, //!< GPI Trigger Source 7 - Applies to: CoaXPress
  359. TriggerInSource_TriggerInSourceFrontGPI0, //!< The trigger input source is set to TriggerInSourceFrontGPI0 - Applies to: CoaXPress
  360. TriggerInSource_TriggerInSourceFrontGPI1, //!< The trigger input source is set to TriggerInSourceFrontGPI1 - Applies to: CoaXPress
  361. TriggerInSource_TriggerInSourceFrontGPI2, //!< The trigger input source is set to TriggerInSourceFrontGPI2 - Applies to: CoaXPress
  362. TriggerInSource_TriggerInSourceFrontGPI3 //!< The trigger input source is set to TriggerInSourceFrontGPI3 - Applies to: CoaXPress
  363. };
  364. //! Valid values for TriggerInStatisticsPolarity
  365. enum TriggerInStatisticsPolarityEnums
  366. {
  367. TriggerInStatisticsPolarity_HighActive, //!< The trigger polarity of the input specified by the Statistics Source parameter is set to High Active - Applies to: CoaXPress
  368. TriggerInStatisticsPolarity_LowActive //!< The trigger polarity of the input specified by the Statistics Source parameter is set to Low Active - Applies to: CoaXPress
  369. };
  370. //! Valid values for TriggerInStatisticsSource
  371. enum TriggerInStatisticsSourceEnums
  372. {
  373. TriggerInStatisticsSource_GPITriggerSource0, //!< GPI Trigger Source 0 - Applies to: CoaXPress
  374. TriggerInStatisticsSource_GPITriggerSource1, //!< GPI Trigger Source 1 - Applies to: CoaXPress
  375. TriggerInStatisticsSource_GPITriggerSource2, //!< GPI Trigger Source 2 - Applies to: CoaXPress
  376. TriggerInStatisticsSource_GPITriggerSource3, //!< GPI Trigger Source 3 - Applies to: CoaXPress
  377. TriggerInStatisticsSource_GPITriggerSource4, //!< GPI Trigger Source 4 - Applies to: CoaXPress
  378. TriggerInStatisticsSource_GPITriggerSource5, //!< GPI Trigger Source 5 - Applies to: CoaXPress
  379. TriggerInStatisticsSource_GPITriggerSource6, //!< GPI Trigger Source 6 - Applies to: CoaXPress
  380. TriggerInStatisticsSource_GPITriggerSource7, //!< GPI Trigger Source 7 - Applies to: CoaXPress
  381. TriggerInStatisticsSource_TriggerInSourceFrontGPI0, //!< The input source of the trigger statistics is set to Front GPI Trigger Source 0 - Applies to: CoaXPress
  382. TriggerInStatisticsSource_TriggerInSourceFrontGPI1, //!< The input source of the trigger statistics is set to Front GPI Trigger Source 1 - Applies to: CoaXPress
  383. TriggerInStatisticsSource_TriggerInSourceFrontGPI2, //!< The input source of the trigger statistics is set to Front GPI Trigger Source 2 - Applies to: CoaXPress
  384. TriggerInStatisticsSource_TriggerInSourceFrontGPI3 //!< The input source of the trigger statistics is set to Front GPI Trigger Source 3 - Applies to: CoaXPress
  385. };
  386. //! Valid values for TriggerOutSelectFrontGPO0
  387. enum TriggerOutSelectFrontGPO0Enums
  388. {
  389. TriggerOutSelectFrontGPO0_BypassFrontGPI0, //!< The output source is set to BypassFrontGPI0 - Applies to: CoaXPress
  390. TriggerOutSelectFrontGPO0_BypassFrontGPI1, //!< The output source is set to BypassFrontGPI1 - Applies to: CoaXPress
  391. TriggerOutSelectFrontGPO0_BypassFrontGPI2, //!< The output source is set to BypassFrontGPI2 - Applies to: CoaXPress
  392. TriggerOutSelectFrontGPO0_BypassFrontGPI3, //!< The output source is set to BypassFrontGPI3 - Applies to: CoaXPress
  393. TriggerOutSelectFrontGPO0_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  394. TriggerOutSelectFrontGPO0_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  395. TriggerOutSelectFrontGPO0_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  396. TriggerOutSelectFrontGPO0_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  397. TriggerOutSelectFrontGPO0_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  398. TriggerOutSelectFrontGPO0_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  399. TriggerOutSelectFrontGPO0_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  400. TriggerOutSelectFrontGPO0_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  401. TriggerOutSelectFrontGPO0_CamAPulseGenerator0, //!< The output source is set to CamAPulseGenerator0 - Applies to: CoaXPress
  402. TriggerOutSelectFrontGPO0_CamAPulseGenerator1, //!< The output source is set to CamAPulseGenerator1 - Applies to: CoaXPress
  403. TriggerOutSelectFrontGPO0_CamAPulseGenerator2, //!< The output source is set to CamAPulseGenerator2 - Applies to: CoaXPress
  404. TriggerOutSelectFrontGPO0_CamAPulseGenerator3, //!< The output source is set to CamAPulseGenerator3 - Applies to: CoaXPress
  405. TriggerOutSelectFrontGPO0_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  406. TriggerOutSelectFrontGPO0_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  407. TriggerOutSelectFrontGPO0_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  408. TriggerOutSelectFrontGPO0_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  409. TriggerOutSelectFrontGPO0_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  410. TriggerOutSelectFrontGPO0_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  411. TriggerOutSelectFrontGPO0_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  412. TriggerOutSelectFrontGPO0_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  413. TriggerOutSelectFrontGPO0_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  414. TriggerOutSelectFrontGPO0_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  415. TriggerOutSelectFrontGPO0_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  416. TriggerOutSelectFrontGPO0_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  417. TriggerOutSelectFrontGPO0_GND, //!< The output source is set to GND - Applies to: CoaXPress
  418. TriggerOutSelectFrontGPO0_NotBypassFronGPI0, //!< The output source is set to NotBypassFrontGPI0 - Applies to: CoaXPress
  419. TriggerOutSelectFrontGPO0_NotBypassFronGPI1, //!< The output source is set to NotBypassFrontGPI1 - Applies to: CoaXPress
  420. TriggerOutSelectFrontGPO0_NotBypassFronGPI2, //!< The output source is set to NotBypassFrontGPI2 - Applies to: CoaXPress
  421. TriggerOutSelectFrontGPO0_NotBypassFronGPI3, //!< The output source is set to NotBypassFrontGPI3 - Applies to: CoaXPress
  422. TriggerOutSelectFrontGPO0_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  423. TriggerOutSelectFrontGPO0_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  424. TriggerOutSelectFrontGPO0_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  425. TriggerOutSelectFrontGPO0_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  426. TriggerOutSelectFrontGPO0_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  427. TriggerOutSelectFrontGPO0_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  428. TriggerOutSelectFrontGPO0_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  429. TriggerOutSelectFrontGPO0_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  430. TriggerOutSelectFrontGPO0_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  431. TriggerOutSelectFrontGPO0_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  432. TriggerOutSelectFrontGPO0_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  433. TriggerOutSelectFrontGPO0_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  434. TriggerOutSelectFrontGPO0_NotCamAPulseGenerator0, //!< The output source is set to NotCamAPulseGenerator0 - Applies to: CoaXPress
  435. TriggerOutSelectFrontGPO0_NotCamAPulseGenerator1, //!< The output source is set to NotCamAPulseGenerator1 - Applies to: CoaXPress
  436. TriggerOutSelectFrontGPO0_NotCamAPulseGenerator2, //!< The output source is set to NotCamAPulseGenerator2 - Applies to: CoaXPress
  437. TriggerOutSelectFrontGPO0_NotCamAPulseGenerator3, //!< The output source is set to NotCamAPulseGenerator3 - Applies to: CoaXPress
  438. TriggerOutSelectFrontGPO0_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  439. TriggerOutSelectFrontGPO0_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  440. TriggerOutSelectFrontGPO0_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  441. TriggerOutSelectFrontGPO0_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  442. TriggerOutSelectFrontGPO0_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  443. TriggerOutSelectFrontGPO0_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  444. TriggerOutSelectFrontGPO0_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  445. TriggerOutSelectFrontGPO0_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  446. TriggerOutSelectFrontGPO0_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  447. TriggerOutSelectFrontGPO0_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  448. TriggerOutSelectFrontGPO0_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  449. TriggerOutSelectFrontGPO0_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  450. TriggerOutSelectFrontGPO0_NotPulseGenerator0, //!< The output source is set to NotPulseGenerator0 - Applies to: CoaXPress
  451. TriggerOutSelectFrontGPO0_NotPulseGenerator1, //!< The output source is set to NotPulseGenerator1 - Applies to: CoaXPress
  452. TriggerOutSelectFrontGPO0_NotPulseGenerator2, //!< The output source is set to NotPulseGenerator2 - Applies to: CoaXPress
  453. TriggerOutSelectFrontGPO0_NotPulseGenerator3, //!< The output source is set to NotPulseGenerator3 - Applies to: CoaXPress
  454. TriggerOutSelectFrontGPO0_PulseGenerator0, //!< The output source is set to PulseGenerator0 - Applies to: CoaXPress
  455. TriggerOutSelectFrontGPO0_PulseGenerator1, //!< The output source is set to PulseGenerator1 - Applies to: CoaXPress
  456. TriggerOutSelectFrontGPO0_PulseGenerator2, //!< The output source is set to PulseGenerator2 - Applies to: CoaXPress
  457. TriggerOutSelectFrontGPO0_PulseGenerator3, //!< The output source is set to PulseGenerator3 - Applies to: CoaXPress
  458. TriggerOutSelectFrontGPO0_VCC //!< The output source is set to VCC - Applies to: CoaXPress
  459. };
  460. //! Valid values for TriggerOutSelectFrontGPO1
  461. enum TriggerOutSelectFrontGPO1Enums
  462. {
  463. TriggerOutSelectFrontGPO1_BypassFrontGPI0, //!< The output source is set to BypassFrontGPI0 - Applies to: CoaXPress
  464. TriggerOutSelectFrontGPO1_BypassFrontGPI1, //!< The output source is set to BypassFrontGPI1 - Applies to: CoaXPress
  465. TriggerOutSelectFrontGPO1_BypassFrontGPI2, //!< The output source is set to BypassFrontGPI2 - Applies to: CoaXPress
  466. TriggerOutSelectFrontGPO1_BypassFrontGPI3, //!< The output source is set to BypassFrontGPI3 - Applies to: CoaXPress
  467. TriggerOutSelectFrontGPO1_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  468. TriggerOutSelectFrontGPO1_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  469. TriggerOutSelectFrontGPO1_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  470. TriggerOutSelectFrontGPO1_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  471. TriggerOutSelectFrontGPO1_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  472. TriggerOutSelectFrontGPO1_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  473. TriggerOutSelectFrontGPO1_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  474. TriggerOutSelectFrontGPO1_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  475. TriggerOutSelectFrontGPO1_CamAPulseGenerator0, //!< The output source is set to CamAPulseGenerator0 - Applies to: CoaXPress
  476. TriggerOutSelectFrontGPO1_CamAPulseGenerator1, //!< The output source is set to CamAPulseGenerator1 - Applies to: CoaXPress
  477. TriggerOutSelectFrontGPO1_CamAPulseGenerator2, //!< The output source is set to CamAPulseGenerator2 - Applies to: CoaXPress
  478. TriggerOutSelectFrontGPO1_CamAPulseGenerator3, //!< The output source is set to CamAPulseGenerator3 - Applies to: CoaXPress
  479. TriggerOutSelectFrontGPO1_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  480. TriggerOutSelectFrontGPO1_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  481. TriggerOutSelectFrontGPO1_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  482. TriggerOutSelectFrontGPO1_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  483. TriggerOutSelectFrontGPO1_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  484. TriggerOutSelectFrontGPO1_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  485. TriggerOutSelectFrontGPO1_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  486. TriggerOutSelectFrontGPO1_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  487. TriggerOutSelectFrontGPO1_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  488. TriggerOutSelectFrontGPO1_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  489. TriggerOutSelectFrontGPO1_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  490. TriggerOutSelectFrontGPO1_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  491. TriggerOutSelectFrontGPO1_GND, //!< The output source is set to GND - Applies to: CoaXPress
  492. TriggerOutSelectFrontGPO1_NotBypassFronGPI0, //!< The output source is set to NotBypassFrontGPI0 - Applies to: CoaXPress
  493. TriggerOutSelectFrontGPO1_NotBypassFronGPI1, //!< The output source is set to NotBypassFrontGPI1 - Applies to: CoaXPress
  494. TriggerOutSelectFrontGPO1_NotBypassFronGPI2, //!< The output source is set to NotBypassFrontGPI2 - Applies to: CoaXPress
  495. TriggerOutSelectFrontGPO1_NotBypassFronGPI3, //!< The output source is set to NotBypassFrontGPI3 - Applies to: CoaXPress
  496. TriggerOutSelectFrontGPO1_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  497. TriggerOutSelectFrontGPO1_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  498. TriggerOutSelectFrontGPO1_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  499. TriggerOutSelectFrontGPO1_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  500. TriggerOutSelectFrontGPO1_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  501. TriggerOutSelectFrontGPO1_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  502. TriggerOutSelectFrontGPO1_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  503. TriggerOutSelectFrontGPO1_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  504. TriggerOutSelectFrontGPO1_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  505. TriggerOutSelectFrontGPO1_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  506. TriggerOutSelectFrontGPO1_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  507. TriggerOutSelectFrontGPO1_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  508. TriggerOutSelectFrontGPO1_NotCamAPulseGenerator0, //!< The output source is set to NotCamAPulseGenerator0 - Applies to: CoaXPress
  509. TriggerOutSelectFrontGPO1_NotCamAPulseGenerator1, //!< The output source is set to NotCamAPulseGenerator1 - Applies to: CoaXPress
  510. TriggerOutSelectFrontGPO1_NotCamAPulseGenerator2, //!< The output source is set to NotCamAPulseGenerator2 - Applies to: CoaXPress
  511. TriggerOutSelectFrontGPO1_NotCamAPulseGenerator3, //!< The output source is set to NotCamAPulseGenerator3 - Applies to: CoaXPress
  512. TriggerOutSelectFrontGPO1_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  513. TriggerOutSelectFrontGPO1_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  514. TriggerOutSelectFrontGPO1_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  515. TriggerOutSelectFrontGPO1_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  516. TriggerOutSelectFrontGPO1_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  517. TriggerOutSelectFrontGPO1_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  518. TriggerOutSelectFrontGPO1_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  519. TriggerOutSelectFrontGPO1_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  520. TriggerOutSelectFrontGPO1_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  521. TriggerOutSelectFrontGPO1_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  522. TriggerOutSelectFrontGPO1_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  523. TriggerOutSelectFrontGPO1_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  524. TriggerOutSelectFrontGPO1_NotPulseGenerator0, //!< The output source is set to NotPulseGenerator0 - Applies to: CoaXPress
  525. TriggerOutSelectFrontGPO1_NotPulseGenerator1, //!< The output source is set to NotPulseGenerator1 - Applies to: CoaXPress
  526. TriggerOutSelectFrontGPO1_NotPulseGenerator2, //!< The output source is set to NotPulseGenerator2 - Applies to: CoaXPress
  527. TriggerOutSelectFrontGPO1_NotPulseGenerator3, //!< The output source is set to NotPulseGenerator3 - Applies to: CoaXPress
  528. TriggerOutSelectFrontGPO1_PulseGenerator0, //!< The output source is set to PulseGenerator0 - Applies to: CoaXPress
  529. TriggerOutSelectFrontGPO1_PulseGenerator1, //!< The output source is set to PulseGenerator1 - Applies to: CoaXPress
  530. TriggerOutSelectFrontGPO1_PulseGenerator2, //!< The output source is set to PulseGenerator2 - Applies to: CoaXPress
  531. TriggerOutSelectFrontGPO1_PulseGenerator3, //!< The output source is set to PulseGenerator3 - Applies to: CoaXPress
  532. TriggerOutSelectFrontGPO1_VCC //!< The output source is set to VCC - Applies to: CoaXPress
  533. };
  534. //! Valid values for TriggerOutSelectGPO0
  535. enum TriggerOutSelectGPO0Enums
  536. {
  537. TriggerOutSelectGPO0_BypassFrontGPI0, //!< Bypass the Front GPI 0 signal directly to the output - Applies to: CoaXPress
  538. TriggerOutSelectGPO0_BypassFrontGPI1, //!< Bypass the Front GPI 1 signal directly to the output - Applies to: CoaXPress
  539. TriggerOutSelectGPO0_BypassFrontGPI2, //!< Bypass the Front GPI 2 signal directly to the output - Applies to: CoaXPress
  540. TriggerOutSelectGPO0_BypassFrontGPI3, //!< Bypass the Front GPI 3 signal directly to the output - Applies to: CoaXPress
  541. TriggerOutSelectGPO0_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  542. TriggerOutSelectGPO0_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  543. TriggerOutSelectGPO0_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  544. TriggerOutSelectGPO0_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  545. TriggerOutSelectGPO0_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  546. TriggerOutSelectGPO0_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  547. TriggerOutSelectGPO0_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  548. TriggerOutSelectGPO0_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  549. TriggerOutSelectGPO0_CamAPulseGenerator0, //!< Camera port A Pulse Generator 0 - Applies to: CoaXPress
  550. TriggerOutSelectGPO0_CamAPulseGenerator1, //!< Camera port A Pulse Generator 1 - Applies to: CoaXPress
  551. TriggerOutSelectGPO0_CamAPulseGenerator2, //!< Camera port A Pulse Generator 2 - Applies to: CoaXPress
  552. TriggerOutSelectGPO0_CamAPulseGenerator3, //!< Camera port A Pulse Generator 3 - Applies to: CoaXPress
  553. TriggerOutSelectGPO0_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  554. TriggerOutSelectGPO0_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  555. TriggerOutSelectGPO0_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  556. TriggerOutSelectGPO0_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  557. TriggerOutSelectGPO0_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  558. TriggerOutSelectGPO0_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  559. TriggerOutSelectGPO0_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  560. TriggerOutSelectGPO0_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  561. TriggerOutSelectGPO0_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  562. TriggerOutSelectGPO0_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  563. TriggerOutSelectGPO0_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  564. TriggerOutSelectGPO0_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  565. TriggerOutSelectGPO0_GND, //!< A static zero - Applies to: CoaXPress
  566. TriggerOutSelectGPO0_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  567. TriggerOutSelectGPO0_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  568. TriggerOutSelectGPO0_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  569. TriggerOutSelectGPO0_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  570. TriggerOutSelectGPO0_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  571. TriggerOutSelectGPO0_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  572. TriggerOutSelectGPO0_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  573. TriggerOutSelectGPO0_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  574. TriggerOutSelectGPO0_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  575. TriggerOutSelectGPO0_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  576. TriggerOutSelectGPO0_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  577. TriggerOutSelectGPO0_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  578. TriggerOutSelectGPO0_NotCamAPulseGenerator0, //!< Inverted signal of camera port A Pulse Generator 0 - Applies to: CoaXPress
  579. TriggerOutSelectGPO0_NotCamAPulseGenerator1, //!< Inverted signal of camera port A Pulse Generator 1 - Applies to: CoaXPress
  580. TriggerOutSelectGPO0_NotCamAPulseGenerator2, //!< Inverted signal of camera port A Pulse Generator 2 - Applies to: CoaXPress
  581. TriggerOutSelectGPO0_NotCamAPulseGenerator3, //!< Inverted signal of camera port A Pulse Generator 3 - Applies to: CoaXPress
  582. TriggerOutSelectGPO0_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  583. TriggerOutSelectGPO0_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  584. TriggerOutSelectGPO0_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  585. TriggerOutSelectGPO0_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  586. TriggerOutSelectGPO0_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  587. TriggerOutSelectGPO0_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  588. TriggerOutSelectGPO0_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  589. TriggerOutSelectGPO0_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  590. TriggerOutSelectGPO0_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  591. TriggerOutSelectGPO0_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  592. TriggerOutSelectGPO0_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  593. TriggerOutSelectGPO0_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  594. TriggerOutSelectGPO0_NotPulseGenerator0, //!< Inverted signal of pulse generator 0 - Applies to: CoaXPress
  595. TriggerOutSelectGPO0_NotPulseGenerator1, //!< Inverted signal of pulse generator 1 - Applies to: CoaXPress
  596. TriggerOutSelectGPO0_NotPulseGenerator2, //!< Inverted signal of pulse generator 2 - Applies to: CoaXPress
  597. TriggerOutSelectGPO0_NotPulseGenerator3, //!< Inverted signal of pulse generator 3 - Applies to: CoaXPress
  598. TriggerOutSelectGPO0_PulseGenerator0, //!< The source for the output statistics is set to Pulse Generator 0 - Applies to: CoaXPress
  599. TriggerOutSelectGPO0_PulseGenerator1, //!< The source for the output statistics is set to Pulse Generator 1 - Applies to: CoaXPress
  600. TriggerOutSelectGPO0_PulseGenerator2, //!< The source for the output statistics is set to Pulse Generator 2 - Applies to: CoaXPress
  601. TriggerOutSelectGPO0_PulseGenerator3, //!< The source for the output statistics is set to Pulse Generator 3 - Applies to: CoaXPress
  602. TriggerOutSelectGPO0_VCC //!< A static one - Applies to: CoaXPress
  603. };
  604. //! Valid values for TriggerOutSelectGPO1
  605. enum TriggerOutSelectGPO1Enums
  606. {
  607. TriggerOutSelectGPO1_BypassFrontGPI0, //!< Bypass the Front GPI 0 signal directly to the output - Applies to: CoaXPress
  608. TriggerOutSelectGPO1_BypassFrontGPI1, //!< Bypass the Front GPI 1 signal directly to the output - Applies to: CoaXPress
  609. TriggerOutSelectGPO1_BypassFrontGPI2, //!< Bypass the Front GPI 2 signal directly to the output - Applies to: CoaXPress
  610. TriggerOutSelectGPO1_BypassFrontGPI3, //!< Bypass the Front GPI 3 signal directly to the output - Applies to: CoaXPress
  611. TriggerOutSelectGPO1_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  612. TriggerOutSelectGPO1_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  613. TriggerOutSelectGPO1_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  614. TriggerOutSelectGPO1_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  615. TriggerOutSelectGPO1_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  616. TriggerOutSelectGPO1_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  617. TriggerOutSelectGPO1_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  618. TriggerOutSelectGPO1_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  619. TriggerOutSelectGPO1_CamAPulseGenerator0, //!< Camera port A Pulse Generator 0 - Applies to: CoaXPress
  620. TriggerOutSelectGPO1_CamAPulseGenerator1, //!< Camera port A Pulse Generator 1 - Applies to: CoaXPress
  621. TriggerOutSelectGPO1_CamAPulseGenerator2, //!< Camera port A Pulse Generator 2 - Applies to: CoaXPress
  622. TriggerOutSelectGPO1_CamAPulseGenerator3, //!< Camera port A Pulse Generator 3 - Applies to: CoaXPress
  623. TriggerOutSelectGPO1_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  624. TriggerOutSelectGPO1_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  625. TriggerOutSelectGPO1_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  626. TriggerOutSelectGPO1_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  627. TriggerOutSelectGPO1_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  628. TriggerOutSelectGPO1_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  629. TriggerOutSelectGPO1_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  630. TriggerOutSelectGPO1_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  631. TriggerOutSelectGPO1_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  632. TriggerOutSelectGPO1_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  633. TriggerOutSelectGPO1_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  634. TriggerOutSelectGPO1_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  635. TriggerOutSelectGPO1_GND, //!< A static zero - Applies to: CoaXPress
  636. TriggerOutSelectGPO1_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  637. TriggerOutSelectGPO1_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  638. TriggerOutSelectGPO1_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  639. TriggerOutSelectGPO1_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  640. TriggerOutSelectGPO1_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  641. TriggerOutSelectGPO1_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  642. TriggerOutSelectGPO1_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  643. TriggerOutSelectGPO1_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  644. TriggerOutSelectGPO1_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  645. TriggerOutSelectGPO1_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  646. TriggerOutSelectGPO1_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  647. TriggerOutSelectGPO1_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  648. TriggerOutSelectGPO1_NotCamAPulseGenerator0, //!< Inverted signal of camera port A Pulse Generator 0 - Applies to: CoaXPress
  649. TriggerOutSelectGPO1_NotCamAPulseGenerator1, //!< Inverted signal of camera port A Pulse Generator 1 - Applies to: CoaXPress
  650. TriggerOutSelectGPO1_NotCamAPulseGenerator2, //!< Inverted signal of camera port A Pulse Generator 2 - Applies to: CoaXPress
  651. TriggerOutSelectGPO1_NotCamAPulseGenerator3, //!< Inverted signal of camera port A Pulse Generator 3 - Applies to: CoaXPress
  652. TriggerOutSelectGPO1_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  653. TriggerOutSelectGPO1_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  654. TriggerOutSelectGPO1_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  655. TriggerOutSelectGPO1_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  656. TriggerOutSelectGPO1_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  657. TriggerOutSelectGPO1_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  658. TriggerOutSelectGPO1_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  659. TriggerOutSelectGPO1_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  660. TriggerOutSelectGPO1_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  661. TriggerOutSelectGPO1_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  662. TriggerOutSelectGPO1_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  663. TriggerOutSelectGPO1_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  664. TriggerOutSelectGPO1_NotPulseGenerator0, //!< Inverted signal of pulse generator 0 - Applies to: CoaXPress
  665. TriggerOutSelectGPO1_NotPulseGenerator1, //!< Inverted signal of pulse generator 1 - Applies to: CoaXPress
  666. TriggerOutSelectGPO1_NotPulseGenerator2, //!< Inverted signal of pulse generator 2 - Applies to: CoaXPress
  667. TriggerOutSelectGPO1_NotPulseGenerator3, //!< Inverted signal of pulse generator 3 - Applies to: CoaXPress
  668. TriggerOutSelectGPO1_PulseGenerator0, //!< The source for the output statistics is set to Pulse Generator 0 - Applies to: CoaXPress
  669. TriggerOutSelectGPO1_PulseGenerator1, //!< The source for the output statistics is set to Pulse Generator 1 - Applies to: CoaXPress
  670. TriggerOutSelectGPO1_PulseGenerator2, //!< The source for the output statistics is set to Pulse Generator 2 - Applies to: CoaXPress
  671. TriggerOutSelectGPO1_PulseGenerator3, //!< The source for the output statistics is set to Pulse Generator 3 - Applies to: CoaXPress
  672. TriggerOutSelectGPO1_VCC //!< A static one - Applies to: CoaXPress
  673. };
  674. //! Valid values for TriggerOutSelectGPO2
  675. enum TriggerOutSelectGPO2Enums
  676. {
  677. TriggerOutSelectGPO2_BypassFrontGPI0, //!< Bypass the Front GPI 0 signal directly to the output - Applies to: CoaXPress
  678. TriggerOutSelectGPO2_BypassFrontGPI1, //!< Bypass the Front GPI 1 signal directly to the output - Applies to: CoaXPress
  679. TriggerOutSelectGPO2_BypassFrontGPI2, //!< Bypass the Front GPI 2 signal directly to the output - Applies to: CoaXPress
  680. TriggerOutSelectGPO2_BypassFrontGPI3, //!< Bypass the Front GPI 3 signal directly to the output - Applies to: CoaXPress
  681. TriggerOutSelectGPO2_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  682. TriggerOutSelectGPO2_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  683. TriggerOutSelectGPO2_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  684. TriggerOutSelectGPO2_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  685. TriggerOutSelectGPO2_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  686. TriggerOutSelectGPO2_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  687. TriggerOutSelectGPO2_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  688. TriggerOutSelectGPO2_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  689. TriggerOutSelectGPO2_CamAPulseGenerator0, //!< Camera port A Pulse Generator 0 - Applies to: CoaXPress
  690. TriggerOutSelectGPO2_CamAPulseGenerator1, //!< Camera port A Pulse Generator 1 - Applies to: CoaXPress
  691. TriggerOutSelectGPO2_CamAPulseGenerator2, //!< Camera port A Pulse Generator 2 - Applies to: CoaXPress
  692. TriggerOutSelectGPO2_CamAPulseGenerator3, //!< Camera port A Pulse Generator 3 - Applies to: CoaXPress
  693. TriggerOutSelectGPO2_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  694. TriggerOutSelectGPO2_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  695. TriggerOutSelectGPO2_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  696. TriggerOutSelectGPO2_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  697. TriggerOutSelectGPO2_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  698. TriggerOutSelectGPO2_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  699. TriggerOutSelectGPO2_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  700. TriggerOutSelectGPO2_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  701. TriggerOutSelectGPO2_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  702. TriggerOutSelectGPO2_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  703. TriggerOutSelectGPO2_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  704. TriggerOutSelectGPO2_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  705. TriggerOutSelectGPO2_GND, //!< A static zero - Applies to: CoaXPress
  706. TriggerOutSelectGPO2_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  707. TriggerOutSelectGPO2_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  708. TriggerOutSelectGPO2_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  709. TriggerOutSelectGPO2_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  710. TriggerOutSelectGPO2_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  711. TriggerOutSelectGPO2_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  712. TriggerOutSelectGPO2_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  713. TriggerOutSelectGPO2_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  714. TriggerOutSelectGPO2_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  715. TriggerOutSelectGPO2_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  716. TriggerOutSelectGPO2_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  717. TriggerOutSelectGPO2_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  718. TriggerOutSelectGPO2_NotCamAPulseGenerator0, //!< Inverted signal of camera port A Pulse Generator 0 - Applies to: CoaXPress
  719. TriggerOutSelectGPO2_NotCamAPulseGenerator1, //!< Inverted signal of camera port A Pulse Generator 1 - Applies to: CoaXPress
  720. TriggerOutSelectGPO2_NotCamAPulseGenerator2, //!< Inverted signal of camera port A Pulse Generator 2 - Applies to: CoaXPress
  721. TriggerOutSelectGPO2_NotCamAPulseGenerator3, //!< Inverted signal of camera port A Pulse Generator 3 - Applies to: CoaXPress
  722. TriggerOutSelectGPO2_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  723. TriggerOutSelectGPO2_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  724. TriggerOutSelectGPO2_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  725. TriggerOutSelectGPO2_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  726. TriggerOutSelectGPO2_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  727. TriggerOutSelectGPO2_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  728. TriggerOutSelectGPO2_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  729. TriggerOutSelectGPO2_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  730. TriggerOutSelectGPO2_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  731. TriggerOutSelectGPO2_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  732. TriggerOutSelectGPO2_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  733. TriggerOutSelectGPO2_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  734. TriggerOutSelectGPO2_NotPulseGenerator0, //!< Inverted signal of pulse generator 0 - Applies to: CoaXPress
  735. TriggerOutSelectGPO2_NotPulseGenerator1, //!< Inverted signal of pulse generator 1 - Applies to: CoaXPress
  736. TriggerOutSelectGPO2_NotPulseGenerator2, //!< Inverted signal of pulse generator 2 - Applies to: CoaXPress
  737. TriggerOutSelectGPO2_NotPulseGenerator3, //!< Inverted signal of pulse generator 3 - Applies to: CoaXPress
  738. TriggerOutSelectGPO2_PulseGenerator0, //!< The source for the output statistics is set to Pulse Generator 0 - Applies to: CoaXPress
  739. TriggerOutSelectGPO2_PulseGenerator1, //!< The source for the output statistics is set to Pulse Generator 1 - Applies to: CoaXPress
  740. TriggerOutSelectGPO2_PulseGenerator2, //!< The source for the output statistics is set to Pulse Generator 2 - Applies to: CoaXPress
  741. TriggerOutSelectGPO2_PulseGenerator3, //!< The source for the output statistics is set to Pulse Generator 3 - Applies to: CoaXPress
  742. TriggerOutSelectGPO2_VCC //!< A static one - Applies to: CoaXPress
  743. };
  744. //! Valid values for TriggerOutSelectGPO3
  745. enum TriggerOutSelectGPO3Enums
  746. {
  747. TriggerOutSelectGPO3_BypassFrontGPI0, //!< Bypass the Front GPI 0 signal directly to the output - Applies to: CoaXPress
  748. TriggerOutSelectGPO3_BypassFrontGPI1, //!< Bypass the Front GPI 1 signal directly to the output - Applies to: CoaXPress
  749. TriggerOutSelectGPO3_BypassFrontGPI2, //!< Bypass the Front GPI 2 signal directly to the output - Applies to: CoaXPress
  750. TriggerOutSelectGPO3_BypassFrontGPI3, //!< Bypass the Front GPI 3 signal directly to the output - Applies to: CoaXPress
  751. TriggerOutSelectGPO3_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  752. TriggerOutSelectGPO3_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  753. TriggerOutSelectGPO3_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  754. TriggerOutSelectGPO3_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  755. TriggerOutSelectGPO3_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  756. TriggerOutSelectGPO3_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  757. TriggerOutSelectGPO3_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  758. TriggerOutSelectGPO3_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  759. TriggerOutSelectGPO3_CamAPulseGenerator0, //!< Camera port A Pulse Generator 0 - Applies to: CoaXPress
  760. TriggerOutSelectGPO3_CamAPulseGenerator1, //!< Camera port A Pulse Generator 1 - Applies to: CoaXPress
  761. TriggerOutSelectGPO3_CamAPulseGenerator2, //!< Camera port A Pulse Generator 2 - Applies to: CoaXPress
  762. TriggerOutSelectGPO3_CamAPulseGenerator3, //!< Camera port A Pulse Generator 3 - Applies to: CoaXPress
  763. TriggerOutSelectGPO3_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  764. TriggerOutSelectGPO3_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  765. TriggerOutSelectGPO3_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  766. TriggerOutSelectGPO3_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  767. TriggerOutSelectGPO3_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  768. TriggerOutSelectGPO3_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  769. TriggerOutSelectGPO3_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  770. TriggerOutSelectGPO3_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  771. TriggerOutSelectGPO3_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  772. TriggerOutSelectGPO3_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  773. TriggerOutSelectGPO3_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  774. TriggerOutSelectGPO3_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  775. TriggerOutSelectGPO3_GND, //!< A static zero - Applies to: CoaXPress
  776. TriggerOutSelectGPO3_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  777. TriggerOutSelectGPO3_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  778. TriggerOutSelectGPO3_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  779. TriggerOutSelectGPO3_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  780. TriggerOutSelectGPO3_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  781. TriggerOutSelectGPO3_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  782. TriggerOutSelectGPO3_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  783. TriggerOutSelectGPO3_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  784. TriggerOutSelectGPO3_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  785. TriggerOutSelectGPO3_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  786. TriggerOutSelectGPO3_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  787. TriggerOutSelectGPO3_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  788. TriggerOutSelectGPO3_NotCamAPulseGenerator0, //!< Inverted signal of camera port A Pulse Generator 0 - Applies to: CoaXPress
  789. TriggerOutSelectGPO3_NotCamAPulseGenerator1, //!< Inverted signal of camera port A Pulse Generator 1 - Applies to: CoaXPress
  790. TriggerOutSelectGPO3_NotCamAPulseGenerator2, //!< Inverted signal of camera port A Pulse Generator 2 - Applies to: CoaXPress
  791. TriggerOutSelectGPO3_NotCamAPulseGenerator3, //!< Inverted signal of camera port A Pulse Generator 3 - Applies to: CoaXPress
  792. TriggerOutSelectGPO3_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  793. TriggerOutSelectGPO3_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  794. TriggerOutSelectGPO3_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  795. TriggerOutSelectGPO3_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  796. TriggerOutSelectGPO3_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  797. TriggerOutSelectGPO3_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  798. TriggerOutSelectGPO3_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  799. TriggerOutSelectGPO3_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  800. TriggerOutSelectGPO3_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  801. TriggerOutSelectGPO3_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  802. TriggerOutSelectGPO3_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  803. TriggerOutSelectGPO3_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  804. TriggerOutSelectGPO3_NotPulseGenerator0, //!< Inverted signal of pulse generator 0 - Applies to: CoaXPress
  805. TriggerOutSelectGPO3_NotPulseGenerator1, //!< Inverted signal of pulse generator 1 - Applies to: CoaXPress
  806. TriggerOutSelectGPO3_NotPulseGenerator2, //!< Inverted signal of pulse generator 2 - Applies to: CoaXPress
  807. TriggerOutSelectGPO3_NotPulseGenerator3, //!< Inverted signal of pulse generator 3 - Applies to: CoaXPress
  808. TriggerOutSelectGPO3_PulseGenerator0, //!< The source for the output statistics is set to Pulse Generator 0 - Applies to: CoaXPress
  809. TriggerOutSelectGPO3_PulseGenerator1, //!< The source for the output statistics is set to Pulse Generator 1 - Applies to: CoaXPress
  810. TriggerOutSelectGPO3_PulseGenerator2, //!< The source for the output statistics is set to Pulse Generator 2 - Applies to: CoaXPress
  811. TriggerOutSelectGPO3_PulseGenerator3, //!< The source for the output statistics is set to Pulse Generator 3 - Applies to: CoaXPress
  812. TriggerOutSelectGPO3_VCC //!< A static one - Applies to: CoaXPress
  813. };
  814. //! Valid values for TriggerOutSelectGPO4
  815. enum TriggerOutSelectGPO4Enums
  816. {
  817. TriggerOutSelectGPO4_BypassFrontGPI0, //!< Bypass the Front GPI 0 signal directly to the output - Applies to: CoaXPress
  818. TriggerOutSelectGPO4_BypassFrontGPI1, //!< Bypass the Front GPI 1 signal directly to the output - Applies to: CoaXPress
  819. TriggerOutSelectGPO4_BypassFrontGPI2, //!< Bypass the Front GPI 2 signal directly to the output - Applies to: CoaXPress
  820. TriggerOutSelectGPO4_BypassFrontGPI3, //!< Bypass the Front GPI 3 signal directly to the output - Applies to: CoaXPress
  821. TriggerOutSelectGPO4_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  822. TriggerOutSelectGPO4_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  823. TriggerOutSelectGPO4_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  824. TriggerOutSelectGPO4_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  825. TriggerOutSelectGPO4_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  826. TriggerOutSelectGPO4_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  827. TriggerOutSelectGPO4_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  828. TriggerOutSelectGPO4_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  829. TriggerOutSelectGPO4_CamAPulseGenerator0, //!< Camera port A Pulse Generator 0 - Applies to: CoaXPress
  830. TriggerOutSelectGPO4_CamAPulseGenerator1, //!< Camera port A Pulse Generator 1 - Applies to: CoaXPress
  831. TriggerOutSelectGPO4_CamAPulseGenerator2, //!< Camera port A Pulse Generator 2 - Applies to: CoaXPress
  832. TriggerOutSelectGPO4_CamAPulseGenerator3, //!< Camera port A Pulse Generator 3 - Applies to: CoaXPress
  833. TriggerOutSelectGPO4_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  834. TriggerOutSelectGPO4_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  835. TriggerOutSelectGPO4_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  836. TriggerOutSelectGPO4_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  837. TriggerOutSelectGPO4_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  838. TriggerOutSelectGPO4_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  839. TriggerOutSelectGPO4_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  840. TriggerOutSelectGPO4_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  841. TriggerOutSelectGPO4_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  842. TriggerOutSelectGPO4_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  843. TriggerOutSelectGPO4_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  844. TriggerOutSelectGPO4_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  845. TriggerOutSelectGPO4_GND, //!< A static zero - Applies to: CoaXPress
  846. TriggerOutSelectGPO4_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  847. TriggerOutSelectGPO4_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  848. TriggerOutSelectGPO4_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  849. TriggerOutSelectGPO4_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  850. TriggerOutSelectGPO4_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  851. TriggerOutSelectGPO4_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  852. TriggerOutSelectGPO4_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  853. TriggerOutSelectGPO4_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  854. TriggerOutSelectGPO4_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  855. TriggerOutSelectGPO4_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  856. TriggerOutSelectGPO4_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  857. TriggerOutSelectGPO4_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  858. TriggerOutSelectGPO4_NotCamAPulseGenerator0, //!< Inverted signal of camera port A Pulse Generator 0 - Applies to: CoaXPress
  859. TriggerOutSelectGPO4_NotCamAPulseGenerator1, //!< Inverted signal of camera port A Pulse Generator 1 - Applies to: CoaXPress
  860. TriggerOutSelectGPO4_NotCamAPulseGenerator2, //!< Inverted signal of camera port A Pulse Generator 2 - Applies to: CoaXPress
  861. TriggerOutSelectGPO4_NotCamAPulseGenerator3, //!< Inverted signal of camera port A Pulse Generator 3 - Applies to: CoaXPress
  862. TriggerOutSelectGPO4_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  863. TriggerOutSelectGPO4_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  864. TriggerOutSelectGPO4_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  865. TriggerOutSelectGPO4_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  866. TriggerOutSelectGPO4_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  867. TriggerOutSelectGPO4_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  868. TriggerOutSelectGPO4_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  869. TriggerOutSelectGPO4_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  870. TriggerOutSelectGPO4_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  871. TriggerOutSelectGPO4_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  872. TriggerOutSelectGPO4_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  873. TriggerOutSelectGPO4_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  874. TriggerOutSelectGPO4_NotPulseGenerator0, //!< Inverted signal of pulse generator 0 - Applies to: CoaXPress
  875. TriggerOutSelectGPO4_NotPulseGenerator1, //!< Inverted signal of pulse generator 1 - Applies to: CoaXPress
  876. TriggerOutSelectGPO4_NotPulseGenerator2, //!< Inverted signal of pulse generator 2 - Applies to: CoaXPress
  877. TriggerOutSelectGPO4_NotPulseGenerator3, //!< Inverted signal of pulse generator 3 - Applies to: CoaXPress
  878. TriggerOutSelectGPO4_PulseGenerator0, //!< The source for the output statistics is set to Pulse Generator 0 - Applies to: CoaXPress
  879. TriggerOutSelectGPO4_PulseGenerator1, //!< The source for the output statistics is set to Pulse Generator 1 - Applies to: CoaXPress
  880. TriggerOutSelectGPO4_PulseGenerator2, //!< The source for the output statistics is set to Pulse Generator 2 - Applies to: CoaXPress
  881. TriggerOutSelectGPO4_PulseGenerator3, //!< The source for the output statistics is set to Pulse Generator 3 - Applies to: CoaXPress
  882. TriggerOutSelectGPO4_VCC //!< A static one - Applies to: CoaXPress
  883. };
  884. //! Valid values for TriggerOutSelectGPO5
  885. enum TriggerOutSelectGPO5Enums
  886. {
  887. TriggerOutSelectGPO5_BypassFrontGPI0, //!< Bypass the Front GPI 0 signal directly to the output - Applies to: CoaXPress
  888. TriggerOutSelectGPO5_BypassFrontGPI1, //!< Bypass the Front GPI 1 signal directly to the output - Applies to: CoaXPress
  889. TriggerOutSelectGPO5_BypassFrontGPI2, //!< Bypass the Front GPI 2 signal directly to the output - Applies to: CoaXPress
  890. TriggerOutSelectGPO5_BypassFrontGPI3, //!< Bypass the Front GPI 3 signal directly to the output - Applies to: CoaXPress
  891. TriggerOutSelectGPO5_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  892. TriggerOutSelectGPO5_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  893. TriggerOutSelectGPO5_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  894. TriggerOutSelectGPO5_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  895. TriggerOutSelectGPO5_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  896. TriggerOutSelectGPO5_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  897. TriggerOutSelectGPO5_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  898. TriggerOutSelectGPO5_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  899. TriggerOutSelectGPO5_CamAPulseGenerator0, //!< Camera port A Pulse Generator 0 - Applies to: CoaXPress
  900. TriggerOutSelectGPO5_CamAPulseGenerator1, //!< Camera port A Pulse Generator 1 - Applies to: CoaXPress
  901. TriggerOutSelectGPO5_CamAPulseGenerator2, //!< Camera port A Pulse Generator 2 - Applies to: CoaXPress
  902. TriggerOutSelectGPO5_CamAPulseGenerator3, //!< Camera port A Pulse Generator 3 - Applies to: CoaXPress
  903. TriggerOutSelectGPO5_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  904. TriggerOutSelectGPO5_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  905. TriggerOutSelectGPO5_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  906. TriggerOutSelectGPO5_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  907. TriggerOutSelectGPO5_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  908. TriggerOutSelectGPO5_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  909. TriggerOutSelectGPO5_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  910. TriggerOutSelectGPO5_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  911. TriggerOutSelectGPO5_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  912. TriggerOutSelectGPO5_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  913. TriggerOutSelectGPO5_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  914. TriggerOutSelectGPO5_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  915. TriggerOutSelectGPO5_GND, //!< A static zero - Applies to: CoaXPress
  916. TriggerOutSelectGPO5_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  917. TriggerOutSelectGPO5_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  918. TriggerOutSelectGPO5_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  919. TriggerOutSelectGPO5_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  920. TriggerOutSelectGPO5_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  921. TriggerOutSelectGPO5_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  922. TriggerOutSelectGPO5_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  923. TriggerOutSelectGPO5_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  924. TriggerOutSelectGPO5_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  925. TriggerOutSelectGPO5_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  926. TriggerOutSelectGPO5_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  927. TriggerOutSelectGPO5_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  928. TriggerOutSelectGPO5_NotCamAPulseGenerator0, //!< Inverted signal of camera port A Pulse Generator 0 - Applies to: CoaXPress
  929. TriggerOutSelectGPO5_NotCamAPulseGenerator1, //!< Inverted signal of camera port A Pulse Generator 1 - Applies to: CoaXPress
  930. TriggerOutSelectGPO5_NotCamAPulseGenerator2, //!< Inverted signal of camera port A Pulse Generator 2 - Applies to: CoaXPress
  931. TriggerOutSelectGPO5_NotCamAPulseGenerator3, //!< Inverted signal of camera port A Pulse Generator 3 - Applies to: CoaXPress
  932. TriggerOutSelectGPO5_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  933. TriggerOutSelectGPO5_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  934. TriggerOutSelectGPO5_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  935. TriggerOutSelectGPO5_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  936. TriggerOutSelectGPO5_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  937. TriggerOutSelectGPO5_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  938. TriggerOutSelectGPO5_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  939. TriggerOutSelectGPO5_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  940. TriggerOutSelectGPO5_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  941. TriggerOutSelectGPO5_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  942. TriggerOutSelectGPO5_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  943. TriggerOutSelectGPO5_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  944. TriggerOutSelectGPO5_NotPulseGenerator0, //!< Inverted signal of pulse generator 0 - Applies to: CoaXPress
  945. TriggerOutSelectGPO5_NotPulseGenerator1, //!< Inverted signal of pulse generator 1 - Applies to: CoaXPress
  946. TriggerOutSelectGPO5_NotPulseGenerator2, //!< Inverted signal of pulse generator 2 - Applies to: CoaXPress
  947. TriggerOutSelectGPO5_NotPulseGenerator3, //!< Inverted signal of pulse generator 3 - Applies to: CoaXPress
  948. TriggerOutSelectGPO5_PulseGenerator0, //!< The source for the output statistics is set to Pulse Generator 0 - Applies to: CoaXPress
  949. TriggerOutSelectGPO5_PulseGenerator1, //!< The source for the output statistics is set to Pulse Generator 1 - Applies to: CoaXPress
  950. TriggerOutSelectGPO5_PulseGenerator2, //!< The source for the output statistics is set to Pulse Generator 2 - Applies to: CoaXPress
  951. TriggerOutSelectGPO5_PulseGenerator3, //!< The source for the output statistics is set to Pulse Generator 3 - Applies to: CoaXPress
  952. TriggerOutSelectGPO5_VCC //!< A static one - Applies to: CoaXPress
  953. };
  954. //! Valid values for TriggerOutSelectGPO6
  955. enum TriggerOutSelectGPO6Enums
  956. {
  957. TriggerOutSelectGPO6_BypassFrontGPI0, //!< Bypass the Front GPI 0 signal directly to the output - Applies to: CoaXPress
  958. TriggerOutSelectGPO6_BypassFrontGPI1, //!< Bypass the Front GPI 1 signal directly to the output - Applies to: CoaXPress
  959. TriggerOutSelectGPO6_BypassFrontGPI2, //!< Bypass the Front GPI 2 signal directly to the output - Applies to: CoaXPress
  960. TriggerOutSelectGPO6_BypassFrontGPI3, //!< Bypass the Front GPI 3 signal directly to the output - Applies to: CoaXPress
  961. TriggerOutSelectGPO6_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  962. TriggerOutSelectGPO6_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  963. TriggerOutSelectGPO6_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  964. TriggerOutSelectGPO6_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  965. TriggerOutSelectGPO6_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  966. TriggerOutSelectGPO6_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  967. TriggerOutSelectGPO6_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  968. TriggerOutSelectGPO6_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  969. TriggerOutSelectGPO6_CamAPulseGenerator0, //!< Camera port A Pulse Generator 0 - Applies to: CoaXPress
  970. TriggerOutSelectGPO6_CamAPulseGenerator1, //!< Camera port A Pulse Generator 1 - Applies to: CoaXPress
  971. TriggerOutSelectGPO6_CamAPulseGenerator2, //!< Camera port A Pulse Generator 2 - Applies to: CoaXPress
  972. TriggerOutSelectGPO6_CamAPulseGenerator3, //!< Camera port A Pulse Generator 3 - Applies to: CoaXPress
  973. TriggerOutSelectGPO6_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  974. TriggerOutSelectGPO6_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  975. TriggerOutSelectGPO6_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  976. TriggerOutSelectGPO6_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  977. TriggerOutSelectGPO6_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  978. TriggerOutSelectGPO6_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  979. TriggerOutSelectGPO6_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  980. TriggerOutSelectGPO6_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  981. TriggerOutSelectGPO6_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  982. TriggerOutSelectGPO6_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  983. TriggerOutSelectGPO6_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  984. TriggerOutSelectGPO6_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  985. TriggerOutSelectGPO6_GND, //!< A static zero - Applies to: CoaXPress
  986. TriggerOutSelectGPO6_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  987. TriggerOutSelectGPO6_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  988. TriggerOutSelectGPO6_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  989. TriggerOutSelectGPO6_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  990. TriggerOutSelectGPO6_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  991. TriggerOutSelectGPO6_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  992. TriggerOutSelectGPO6_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  993. TriggerOutSelectGPO6_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  994. TriggerOutSelectGPO6_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  995. TriggerOutSelectGPO6_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  996. TriggerOutSelectGPO6_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  997. TriggerOutSelectGPO6_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  998. TriggerOutSelectGPO6_NotCamAPulseGenerator0, //!< Inverted signal of camera port A Pulse Generator 0 - Applies to: CoaXPress
  999. TriggerOutSelectGPO6_NotCamAPulseGenerator1, //!< Inverted signal of camera port A Pulse Generator 1 - Applies to: CoaXPress
  1000. TriggerOutSelectGPO6_NotCamAPulseGenerator2, //!< Inverted signal of camera port A Pulse Generator 2 - Applies to: CoaXPress
  1001. TriggerOutSelectGPO6_NotCamAPulseGenerator3, //!< Inverted signal of camera port A Pulse Generator 3 - Applies to: CoaXPress
  1002. TriggerOutSelectGPO6_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  1003. TriggerOutSelectGPO6_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  1004. TriggerOutSelectGPO6_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  1005. TriggerOutSelectGPO6_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  1006. TriggerOutSelectGPO6_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  1007. TriggerOutSelectGPO6_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  1008. TriggerOutSelectGPO6_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  1009. TriggerOutSelectGPO6_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  1010. TriggerOutSelectGPO6_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  1011. TriggerOutSelectGPO6_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  1012. TriggerOutSelectGPO6_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  1013. TriggerOutSelectGPO6_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  1014. TriggerOutSelectGPO6_NotPulseGenerator0, //!< Inverted signal of pulse generator 0 - Applies to: CoaXPress
  1015. TriggerOutSelectGPO6_NotPulseGenerator1, //!< Inverted signal of pulse generator 1 - Applies to: CoaXPress
  1016. TriggerOutSelectGPO6_NotPulseGenerator2, //!< Inverted signal of pulse generator 2 - Applies to: CoaXPress
  1017. TriggerOutSelectGPO6_NotPulseGenerator3, //!< Inverted signal of pulse generator 3 - Applies to: CoaXPress
  1018. TriggerOutSelectGPO6_PulseGenerator0, //!< The source for the output statistics is set to Pulse Generator 0 - Applies to: CoaXPress
  1019. TriggerOutSelectGPO6_PulseGenerator1, //!< The source for the output statistics is set to Pulse Generator 1 - Applies to: CoaXPress
  1020. TriggerOutSelectGPO6_PulseGenerator2, //!< The source for the output statistics is set to Pulse Generator 2 - Applies to: CoaXPress
  1021. TriggerOutSelectGPO6_PulseGenerator3, //!< The source for the output statistics is set to Pulse Generator 3 - Applies to: CoaXPress
  1022. TriggerOutSelectGPO6_VCC //!< A static one - Applies to: CoaXPress
  1023. };
  1024. //! Valid values for TriggerOutSelectGPO7
  1025. enum TriggerOutSelectGPO7Enums
  1026. {
  1027. TriggerOutSelectGPO7_BypassFrontGPI0, //!< Bypass the Front GPI 0 signal directly to the output - Applies to: CoaXPress
  1028. TriggerOutSelectGPO7_BypassFrontGPI1, //!< Bypass the Front GPI 1 signal directly to the output - Applies to: CoaXPress
  1029. TriggerOutSelectGPO7_BypassFrontGPI2, //!< Bypass the Front GPI 2 signal directly to the output - Applies to: CoaXPress
  1030. TriggerOutSelectGPO7_BypassFrontGPI3, //!< Bypass the Front GPI 3 signal directly to the output - Applies to: CoaXPress
  1031. TriggerOutSelectGPO7_BypassGPI0, //!< Bypass the GPI 0 signal directly to the output - Applies to: CoaXPress
  1032. TriggerOutSelectGPO7_BypassGPI1, //!< Bypass the GPI 1 signal directly to the output - Applies to: CoaXPress
  1033. TriggerOutSelectGPO7_BypassGPI2, //!< Bypass the GPI 2 signal directly to the output - Applies to: CoaXPress
  1034. TriggerOutSelectGPO7_BypassGPI3, //!< Bypass the GPI 3 signal directly to the output - Applies to: CoaXPress
  1035. TriggerOutSelectGPO7_BypassGPI4, //!< Bypass the GPI 4 signal directly to the output - Applies to: CoaXPress
  1036. TriggerOutSelectGPO7_BypassGPI5, //!< Bypass the GPI 5 signal directly to the output - Applies to: CoaXPress
  1037. TriggerOutSelectGPO7_BypassGPI6, //!< Bypass the GPI 6 signal directly to the output - Applies to: CoaXPress
  1038. TriggerOutSelectGPO7_BypassGPI7, //!< Bypass the GPI 7 signal directly to the output - Applies to: CoaXPress
  1039. TriggerOutSelectGPO7_CamAPulseGenerator0, //!< Camera port A Pulse Generator 0 - Applies to: CoaXPress
  1040. TriggerOutSelectGPO7_CamAPulseGenerator1, //!< Camera port A Pulse Generator 1 - Applies to: CoaXPress
  1041. TriggerOutSelectGPO7_CamAPulseGenerator2, //!< Camera port A Pulse Generator 2 - Applies to: CoaXPress
  1042. TriggerOutSelectGPO7_CamAPulseGenerator3, //!< Camera port A Pulse Generator 3 - Applies to: CoaXPress
  1043. TriggerOutSelectGPO7_CamBPulseGenerator0, //!< The output source is set to Cam B Pulse Generator 0 - Applies to: CoaXPress
  1044. TriggerOutSelectGPO7_CamBPulseGenerator1, //!< The output source is set to Cam B Pulse Generator 1 - Applies to: CoaXPress
  1045. TriggerOutSelectGPO7_CamBPulseGenerator2, //!< The output source is set to Cam B Pulse Generator 2 - Applies to: CoaXPress
  1046. TriggerOutSelectGPO7_CamBPulseGenerator3, //!< The output source is set to Cam B Pulse Generator 3 - Applies to: CoaXPress
  1047. TriggerOutSelectGPO7_CamCPulseGenerator0, //!< The output source is set to Cam C Pulse Generator 0 - Applies to: CoaXPress
  1048. TriggerOutSelectGPO7_CamCPulseGenerator1, //!< The output source is set to Cam C Pulse Generator 1 - Applies to: CoaXPress
  1049. TriggerOutSelectGPO7_CamCPulseGenerator2, //!< The output source is set to Cam C Pulse Generator 2 - Applies to: CoaXPress
  1050. TriggerOutSelectGPO7_CamCPulseGenerator3, //!< The output source is set to Cam C Pulse Generator 3 - Applies to: CoaXPress
  1051. TriggerOutSelectGPO7_CamDPulseGenerator0, //!< The output source is set to Cam D Pulse Generator 0 - Applies to: CoaXPress
  1052. TriggerOutSelectGPO7_CamDPulseGenerator1, //!< The output source is set to Cam D Pulse Generator 1 - Applies to: CoaXPress
  1053. TriggerOutSelectGPO7_CamDPulseGenerator2, //!< The output source is set to Cam D Pulse Generator 2 - Applies to: CoaXPress
  1054. TriggerOutSelectGPO7_CamDPulseGenerator3, //!< The output source is set to Cam D Pulse Generator 3 - Applies to: CoaXPress
  1055. TriggerOutSelectGPO7_GND, //!< A static zero - Applies to: CoaXPress
  1056. TriggerOutSelectGPO7_NotBypassFrontGPI0, //!< The output source is set to Not Bypass Front-GPI 0 - Applies to: CoaXPress
  1057. TriggerOutSelectGPO7_NotBypassFrontGPI1, //!< The output source is set to Not Bypass Front-GPI 1 - Applies to: CoaXPress
  1058. TriggerOutSelectGPO7_NotBypassFrontGPI2, //!< The output source is set to Not Bypass Front-GPI 2 - Applies to: CoaXPress
  1059. TriggerOutSelectGPO7_NotBypassFrontGPI3, //!< The output source is set to Not Bypass Front-GPI 3 - Applies to: CoaXPress
  1060. TriggerOutSelectGPO7_NotBypassGPI0, //!< Bypass the inverted GPI 0 signal directly to the output - Applies to: CoaXPress
  1061. TriggerOutSelectGPO7_NotBypassGPI1, //!< Bypass the inverted GPI 1 signal directly to the output - Applies to: CoaXPress
  1062. TriggerOutSelectGPO7_NotBypassGPI2, //!< Bypass the inverted GPI 2 signal directly to the output - Applies to: CoaXPress
  1063. TriggerOutSelectGPO7_NotBypassGPI3, //!< Bypass the inverted GPI 3 signal directly to the output - Applies to: CoaXPress
  1064. TriggerOutSelectGPO7_NotBypassGPI4, //!< Bypass the inverted GPI 4 signal directly to the output - Applies to: CoaXPress
  1065. TriggerOutSelectGPO7_NotBypassGPI5, //!< Bypass the inverted GPI 5 signal directly to the output - Applies to: CoaXPress
  1066. TriggerOutSelectGPO7_NotBypassGPI6, //!< Bypass the inverted GPI 6 signal directly to the output - Applies to: CoaXPress
  1067. TriggerOutSelectGPO7_NotBypassGPI7, //!< Bypass the inverted GPI 7 signal directly to the output - Applies to: CoaXPress
  1068. TriggerOutSelectGPO7_NotCamAPulseGenerator0, //!< Inverted signal of camera port A Pulse Generator 0 - Applies to: CoaXPress
  1069. TriggerOutSelectGPO7_NotCamAPulseGenerator1, //!< Inverted signal of camera port A Pulse Generator 1 - Applies to: CoaXPress
  1070. TriggerOutSelectGPO7_NotCamAPulseGenerator2, //!< Inverted signal of camera port A Pulse Generator 2 - Applies to: CoaXPress
  1071. TriggerOutSelectGPO7_NotCamAPulseGenerator3, //!< Inverted signal of camera port A Pulse Generator 3 - Applies to: CoaXPress
  1072. TriggerOutSelectGPO7_NotCamBPulseGenerator0, //!< The output source is set to Not Cam B Pulse Generator 0 - Applies to: CoaXPress
  1073. TriggerOutSelectGPO7_NotCamBPulseGenerator1, //!< The output source is set to Not Cam B Pulse Generator 1 - Applies to: CoaXPress
  1074. TriggerOutSelectGPO7_NotCamBPulseGenerator2, //!< The output source is set to Not Cam B Pulse Generator 2 - Applies to: CoaXPress
  1075. TriggerOutSelectGPO7_NotCamBPulseGenerator3, //!< The output source is set to Not Cam B Pulse Generator 3 - Applies to: CoaXPress
  1076. TriggerOutSelectGPO7_NotCamCPulseGenerator0, //!< The output source is set to Not Cam C Pulse Generator 0 - Applies to: CoaXPress
  1077. TriggerOutSelectGPO7_NotCamCPulseGenerator1, //!< The output source is set to Not Cam C Pulse Generator 1 - Applies to: CoaXPress
  1078. TriggerOutSelectGPO7_NotCamCPulseGenerator2, //!< The output source is set to Not Cam C Pulse Generator 2 - Applies to: CoaXPress
  1079. TriggerOutSelectGPO7_NotCamCPulseGenerator3, //!< The output source is set to Not Cam C Pulse Generator 3 - Applies to: CoaXPress
  1080. TriggerOutSelectGPO7_NotCamDPulseGenerator0, //!< The output source is set to Not Cam D Pulse Generator 0 - Applies to: CoaXPress
  1081. TriggerOutSelectGPO7_NotCamDPulseGenerator1, //!< The output source is set to Not Cam D Pulse Generator 1 - Applies to: CoaXPress
  1082. TriggerOutSelectGPO7_NotCamDPulseGenerator2, //!< The output source is set to Not Cam D Pulse Generator 2 - Applies to: CoaXPress
  1083. TriggerOutSelectGPO7_NotCamDPulseGenerator3, //!< The output source is set to Not Cam D Pulse Generator 3 - Applies to: CoaXPress
  1084. TriggerOutSelectGPO7_NotPulseGenerator0, //!< Inverted signal of pulse generator 0 - Applies to: CoaXPress
  1085. TriggerOutSelectGPO7_NotPulseGenerator1, //!< Inverted signal of pulse generator 1 - Applies to: CoaXPress
  1086. TriggerOutSelectGPO7_NotPulseGenerator2, //!< Inverted signal of pulse generator 2 - Applies to: CoaXPress
  1087. TriggerOutSelectGPO7_NotPulseGenerator3, //!< Inverted signal of pulse generator 3 - Applies to: CoaXPress
  1088. TriggerOutSelectGPO7_PulseGenerator0, //!< The source for the output statistics is set to Pulse Generator 0 - Applies to: CoaXPress
  1089. TriggerOutSelectGPO7_PulseGenerator1, //!< The source for the output statistics is set to Pulse Generator 1 - Applies to: CoaXPress
  1090. TriggerOutSelectGPO7_PulseGenerator2, //!< The source for the output statistics is set to Pulse Generator 2 - Applies to: CoaXPress
  1091. TriggerOutSelectGPO7_PulseGenerator3, //!< The source for the output statistics is set to Pulse Generator 3 - Applies to: CoaXPress
  1092. TriggerOutSelectGPO7_VCC //!< A static one - Applies to: CoaXPress
  1093. };
  1094. //! Valid values for TriggerOutStatisticsSource
  1095. enum TriggerOutStatisticsSourceEnums
  1096. {
  1097. TriggerOutStatisticsSource_PulseGenerator0, //!< The source for the output statistics is set to Pulse Generator 0 - Applies to: CoaXPress
  1098. TriggerOutStatisticsSource_PulseGenerator1, //!< The source for the output statistics is set to Pulse Generator 1 - Applies to: CoaXPress
  1099. TriggerOutStatisticsSource_PulseGenerator2, //!< The source for the output statistics is set to Pulse Generator 2 - Applies to: CoaXPress
  1100. TriggerOutStatisticsSource_PulseGenerator3 //!< The source for the output statistics is set to Pulse Generator 3 - Applies to: CoaXPress
  1101. };
  1102. //! Valid values for TriggerQueueMode
  1103. enum TriggerQueueModeEnums
  1104. {
  1105. TriggerQueueMode_Off, //!< The trigger queue mode is disabled - Applies to: CoaXPress
  1106. TriggerQueueMode_On //!< The trigger queue mode is enabled - Applies to: CoaXPress
  1107. };
  1108. //! Valid values for TriggerState
  1109. enum TriggerStateEnums
  1110. {
  1111. TriggerState_Active, //!< The trigger state is set to Active - Applies to: CoaXPress
  1112. TriggerState_AsyncStop, //!< The trigger state is set to AsyncStop - Applies to: CoaXPress
  1113. TriggerState_SyncStop //!< The trigger state is set to SyncStop - Applies to: CoaXPress
  1114. };
  1115. //**************************************************************************************************
  1116. // Parameter class CUniversalTLParams_Params_v6_3_0
  1117. //**************************************************************************************************
  1118. /*!
  1119. \brief A parameter class containing all parameters as members that are available for pylon device transport layers
  1120. The parameter class is used by the \c Pylon::CBaslerUniversalInstantCamera class.
  1121. The \ref sample_ParametrizeCamera_NativeParameterAccess code sample shows how to access camera parameters via the \c Pylon::CBaslerUniversalInstantCamera class.
  1122. */
  1123. class PYLONBASE_API CUniversalTLParams_Params_v6_3_0
  1124. {
  1125. //----------------------------------------------------------------------------------------------------------------
  1126. // Implementation
  1127. //----------------------------------------------------------------------------------------------------------------
  1128. protected:
  1129. // If you want to show the following methods in the help file
  1130. // add the string HIDE_CLASS_METHODS to the ENABLED_SECTIONS tag in the doxygen file
  1131. //! \cond HIDE_CLASS_METHODS
  1132. //! Constructor
  1133. CUniversalTLParams_Params_v6_3_0( void );
  1134. //! Destructor
  1135. ~CUniversalTLParams_Params_v6_3_0( void );
  1136. //! Initializes the references
  1137. void _Initialize( GENAPI_NAMESPACE::INodeMap* );
  1138. //! \endcond
  1139. private:
  1140. class CUniversalTLParams_Params_v6_3_0_Data;
  1141. CUniversalTLParams_Params_v6_3_0_Data* m_pCUniversalTLParams_Params_v6_3_0_Data;
  1142. //----------------------------------------------------------------------------------------------------------------
  1143. // References to features
  1144. //----------------------------------------------------------------------------------------------------------------
  1145. public:
  1146. //! \name Categories: Trigger
  1147. //@{
  1148. /*!
  1149. \brief Sets the trigger mode of the area trigger signal - Applies to: CoaXPress
  1150. Visibility: Expert
  1151. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=AreaTriggerMode" target="_blank">Basler Product Documentation</a> may provide more information.
  1152. */
  1153. Pylon::IEnumParameterT<AreaTriggerModeEnums>& AreaTriggerMode;
  1154. //@}
  1155. //! \name Categories: ImageFormatControl
  1156. //@{
  1157. /*!
  1158. \brief Enables/disables automatic control of the pixel format in the device - Applies to: CoaXPress
  1159. Enables/disables automatic control of the pixel format in the device. If enabled, the frame grabber's pixel format and its dependencies are automatically updated to match the camera's pixel format setting.
  1160. Visibility: Expert
  1161. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=AutomaticFormatControl" target="_blank">Basler Product Documentation</a> may provide more information.
  1162. */
  1163. Pylon::IBooleanEx& AutomaticFormatControl;
  1164. //@}
  1165. //! \name Categories: ImageFormatControl
  1166. //@{
  1167. /*!
  1168. \brief Activates or deactivates the automatic control of the ROI in the Device - Applies to: CoaXPress
  1169. Activates or deactivates the automatic control of the ROI in the Device. If this feature is active, the frame grabber ROI is automatically updated to the camera one.
  1170. Visibility: Expert
  1171. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=AutomaticROIControl" target="_blank">Basler Product Documentation</a> may provide more information.
  1172. */
  1173. Pylon::IBooleanEx& AutomaticROIControl;
  1174. //@}
  1175. //! \name Categories: OutputFormat
  1176. //@{
  1177. /*!
  1178. \brief Sets the alignment of the bits in the output format - Applies to: CoaXPress
  1179. Visibility: Expert
  1180. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=BitAlignment" target="_blank">Basler Product Documentation</a> may provide more information.
  1181. */
  1182. Pylon::IEnumParameterT<BitAlignmentEnums>& BitAlignment;
  1183. //@}
  1184. //! \name Categories: ExtendedDeviceControl and Root
  1185. //@{
  1186. /*!
  1187. \brief Enables sending all commands and receiving all acknowledges twice - Applies to: GigE and blaze
  1188. Enables sending all commands and receiving all acknowledges twice. This option should only be enabled in case of network problems.
  1189. Visibility: Guru
  1190. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=CommandDuplicationEnable" target="_blank">Basler Product Documentation</a> may provide more information.
  1191. */
  1192. Pylon::IBooleanEx& CommandDuplicationEnable;
  1193. //@}
  1194. //! \name Categories: CoaXPress
  1195. //@{
  1196. /*!
  1197. \brief Number of errors corrected - Applies to: CoaXPress
  1198. Numbers of errors corrected. This parameter indicates single-byte error correction in CXP stream packets.
  1199. Visibility: Expert
  1200. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=CorrectedErrorCount" target="_blank">Basler Product Documentation</a> may provide more information.
  1201. */
  1202. Pylon::IIntegerEx& CorrectedErrorCount;
  1203. //@}
  1204. //! \name Categories: OutputFormat
  1205. //@{
  1206. /*!
  1207. \brief User-defined bit shift to the right - Applies to: CoaXPress
  1208. User-defined bit shift to the right. This allows you to shift the pixel data in the output format to the right by a value of your choice. The Alignment parameter has to be set to CustomBitShift for this.
  1209. Visibility: Expert
  1210. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=CustomBitShiftRight" target="_blank">Basler Product Documentation</a> may provide more information.
  1211. */
  1212. Pylon::IIntegerEx& CustomBitShiftRight;
  1213. //@}
  1214. //! \name Categories: TransportLayerControl
  1215. //@{
  1216. /*!
  1217. \brief Sets the link configuration for the communication between the receiver and transmitter device - Applies to: CoaXPress
  1218. Visibility: Beginner
  1219. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=CxpLinkConfiguration" target="_blank">Basler Product Documentation</a> may provide more information.
  1220. */
  1221. Pylon::IEnumParameterT<CxpLinkConfigurationEnums>& CxpLinkConfiguration;
  1222. //@}
  1223. //! \name Categories: CoaXPress
  1224. //@{
  1225. /*!
  1226. \brief Sets the trigger packet mode - Applies to: CoaXPress
  1227. Sets the trigger packet mode. This parameter allows you to send triggers on rising edges only. It can be used for extreme trigger rates. This parameter may violate the CXP standard.
  1228. Visibility: Expert
  1229. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=CxpTriggerPacketMode" target="_blank">Basler Product Documentation</a> may provide more information.
  1230. */
  1231. Pylon::IEnumParameterT<CxpTriggerPacketModeEnums>& CxpTriggerPacketMode;
  1232. //@}
  1233. //! \name Categories: DeviceInformation
  1234. //@{
  1235. /*!
  1236. \brief Returns the device's access status at the moment when the Device Update List command was last executed - Applies to: CoaXPress and blaze
  1237. Returns the device's access status at the moment when the Device Update List command was last executed. This value only changes when the Device Update List command is executed.
  1238. Visibility: Expert
  1239. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=DeviceAccessStatus" target="_blank">Basler Product Documentation</a> may provide more information.
  1240. */
  1241. Pylon::IEnumParameterT<DeviceAccessStatusEnums>& DeviceAccessStatus;
  1242. //@}
  1243. //! \name Categories: DeviceInformation
  1244. //@{
  1245. /*!
  1246. \brief User-friendly name of the device - Applies to: CoaXPress and blaze
  1247. Visibility: Expert
  1248. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=DeviceDisplayName" target="_blank">Basler Product Documentation</a> may provide more information.
  1249. */
  1250. Pylon::IStringEx& DeviceDisplayName;
  1251. //@}
  1252. //! \name Categories: DeviceControl
  1253. //@{
  1254. /*!
  1255. \brief Sets the endianness handling mode - Applies to: blaze
  1256. Visibility: Expert
  1257. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=DeviceEndianessMechanism" target="_blank">Basler Product Documentation</a> may provide more information.
  1258. */
  1259. Pylon::IEnumParameterT<DeviceEndianessMechanismEnums>& DeviceEndianessMechanism;
  1260. //@}
  1261. //! \name Categories: DeviceInformation
  1262. //@{
  1263. /*!
  1264. \brief Interface-wide unique ID of the selected device - Applies to: CoaXPress and blaze
  1265. Interface-wide unique ID of the selected device. This value only changes when the Device Update List command is executed.
  1266. Visibility: Expert
  1267. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=DeviceID" target="_blank">Basler Product Documentation</a> may provide more information.
  1268. */
  1269. Pylon::IStringEx& DeviceID;
  1270. //@}
  1271. //! \name Categories: DeviceInformation
  1272. //@{
  1273. /*!
  1274. \brief Additional information about the manufacturer of the device - Applies to: blaze
  1275. Visibility: Beginner
  1276. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=DeviceManufacturerInfo" target="_blank">Basler Product Documentation</a> may provide more information.
  1277. */
  1278. Pylon::IStringEx& DeviceManufacturerInfo;
  1279. //@}
  1280. //! \name Categories: DeviceInformation
  1281. //@{
  1282. /*!
  1283. \brief Name of the device model - Applies to: CoaXPress and blaze
  1284. Name of the device model. This value only changes when the Device Update List command is executed.
  1285. Visibility: Beginner
  1286. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=DeviceModelName" target="_blank">Basler Product Documentation</a> may provide more information.
  1287. */
  1288. Pylon::IStringEx& DeviceModelName;
  1289. //@}
  1290. //! \name Categories: DeviceInformation
  1291. //@{
  1292. /*!
  1293. \brief Serial number of the remote device - Applies to: blaze
  1294. Serial number of the remote device. This value only changes when the Device Update List command is executed.
  1295. Visibility: Expert
  1296. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=DeviceSerialNumber" target="_blank">Basler Product Documentation</a> may provide more information.
  1297. */
  1298. Pylon::IStringEx& DeviceSerialNumber;
  1299. //@}
  1300. //! \name Categories: DeviceInformation
  1301. //@{
  1302. /*!
  1303. \brief Returns the transport layer of the device - Applies to: CoaXPress
  1304. Visibility: Expert
  1305. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=DeviceType" target="_blank">Basler Product Documentation</a> may provide more information.
  1306. */
  1307. Pylon::IEnumParameterT<DeviceTypeEnums>& DeviceType;
  1308. //@}
  1309. //! \name Categories: DeviceInformation
  1310. //@{
  1311. /*!
  1312. \brief Name of the device vendor - Applies to: CoaXPress and blaze
  1313. Name of the device vendor. This value only changes when the Device Update List command is executed.
  1314. Visibility: Beginner
  1315. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=DeviceVendorName" target="_blank">Basler Product Documentation</a> may provide more information.
  1316. */
  1317. Pylon::IStringEx& DeviceVendorName;
  1318. //@}
  1319. //! \name Categories: EventDeviceLostData
  1320. //@{
  1321. /*!
  1322. \brief Returns the unique identifier of the Device Lost event - Applies to: CoaXPress and blaze
  1323. Returns the unique Identifier of the Device Lost event.
  1324. Visibility: Expert
  1325. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=EventDeviceLost" target="_blank">Basler Product Documentation</a> may provide more information.
  1326. */
  1327. Pylon::IIntegerEx& EventDeviceLost;
  1328. //@}
  1329. //! \name Categories: EventControl
  1330. //@{
  1331. /*!
  1332. \brief Activate or deactivate the notification to the host application of the occurrence of the selected Event - Applies to: CoaXPress and blaze
  1333. Visibility: Expert
  1334. Selected by: EventSelector
  1335. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=EventNotification" target="_blank">Basler Product Documentation</a> may provide more information.
  1336. */
  1337. Pylon::IEnumParameterT<EventNotificationEnums>& EventNotification;
  1338. //@}
  1339. //! \name Categories: EventControl
  1340. //@{
  1341. /*!
  1342. \brief Sets which event to signal to the host application - Applies to: CoaXPress and blaze
  1343. Visibility: Expert
  1344. Selecting Parameters: EventNotification
  1345. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=EventSelector" target="_blank">Basler Product Documentation</a> may provide more information.
  1346. */
  1347. Pylon::IEnumParameterT<EventSelectorEnums>& EventSelector;
  1348. //@}
  1349. //! \name Categories: BufferStatus
  1350. //@{
  1351. /*!
  1352. \brief Current buffer fill level - Applies to: CoaXPress
  1353. Current buffer fill level. This value allows you to check whether the average input bandwidth of the camera is too high to be processed by the applet.
  1354. Visibility: Expert
  1355. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=FillLevel" target="_blank">Basler Product Documentation</a> may provide more information.
  1356. */
  1357. Pylon::IIntegerEx& FillLevel;
  1358. //@}
  1359. //! \name Categories: OutputFormat
  1360. //@{
  1361. /*!
  1362. \brief Sets the pixel format of the image that is output to the computer - Applies to: CoaXPress
  1363. Sets the pixel format of the image that is output to the computer. The data is converted from the internal bit width and color format to the output format selected. This setting is not related to the pixel format input from the camera sensor. For more information, see the Pixel Format parameter documentation.
  1364. Visibility: Expert
  1365. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Format" target="_blank">Basler Product Documentation</a> may provide more information.
  1366. */
  1367. Pylon::IEnumParameterT<FormatEnums>& Format;
  1368. //@}
  1369. //! \name Categories: External
  1370. //@{
  1371. /*!
  1372. \brief Current input signal levels of all front GPI inputs (bit mask) - Applies to: CoaXPress
  1373. Visibility: Expert
  1374. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=FrontGPI" target="_blank">Basler Product Documentation</a> may provide more information.
  1375. */
  1376. Pylon::IIntegerEx& FrontGPI;
  1377. //@}
  1378. //! \name Categories: External
  1379. //@{
  1380. /*!
  1381. \brief GPI State - Applies to: CoaXPress
  1382. Current input signal levels of all GPI inputs (Bitmask).
  1383. Visibility: Expert
  1384. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=GPI" target="_blank">Basler Product Documentation</a> may provide more information.
  1385. */
  1386. Pylon::IIntegerEx& GPI;
  1387. //@}
  1388. //! \name Categories: Gentl
  1389. //@{
  1390. /*!
  1391. \brief Applies to: CoaXPress
  1392. Ignore the FG output format and manage it internally in the GenTL producer
  1393. Visibility: Beginner
  1394. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=GentlInfoIgnorefgformat" target="_blank">Basler Product Documentation</a> may provide more information.
  1395. */
  1396. Pylon::IStringEx& GentlInfoIgnorefgformat;
  1397. //@}
  1398. //! \name Categories: Gentl
  1399. //@{
  1400. /*!
  1401. \brief Applies to: CoaXPress
  1402. Version of the GenTL description Interface in the applet.
  1403. Visibility: Beginner
  1404. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=GentlInfoVersion" target="_blank">Basler Product Documentation</a> may provide more information.
  1405. */
  1406. Pylon::IStringEx& GentlInfoVersion;
  1407. //@}
  1408. //! \name Categories: DeviceInformation
  1409. //@{
  1410. /*!
  1411. \brief Current gateway IP address of the GVCP interface of the remote device - Applies to: blaze
  1412. Visibility: Expert
  1413. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=GevDeviceGateway" target="_blank">Basler Product Documentation</a> may provide more information.
  1414. */
  1415. Pylon::IIntegerEx& GevDeviceGateway;
  1416. //@}
  1417. //! \name Categories: DeviceInformation
  1418. //@{
  1419. /*!
  1420. \brief Current IP address of the GVCP interface of the remote device - Applies to: blaze
  1421. Visibility: Expert
  1422. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=GevDeviceIPAddress" target="_blank">Basler Product Documentation</a> may provide more information.
  1423. */
  1424. Pylon::IIntegerEx& GevDeviceIPAddress;
  1425. //@}
  1426. //! \name Categories: DeviceInformation
  1427. //@{
  1428. /*!
  1429. \brief 48-bit MAC address of the GVCP interface of the remote device - Applies to: blaze
  1430. Visibility: Expert
  1431. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=GevDeviceMACAddress" target="_blank">Basler Product Documentation</a> may provide more information.
  1432. */
  1433. Pylon::IIntegerEx& GevDeviceMACAddress;
  1434. //@}
  1435. //! \name Categories: DeviceInformation
  1436. //@{
  1437. /*!
  1438. \brief Current subnet mask of the GVCP interface of the remote device - Applies to: blaze
  1439. Visibility: Expert
  1440. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=GevDeviceSubnetMask" target="_blank">Basler Product Documentation</a> may provide more information.
  1441. */
  1442. Pylon::IIntegerEx& GevDeviceSubnetMask;
  1443. //@}
  1444. //! \name Categories: Root
  1445. //@{
  1446. /*!
  1447. \brief Heartbeat timeout value on the host side in milliseconds - Applies to: GigE
  1448. Heartbeat timeout value on the host side in milliseconds. This parameter is linked with the Heartbeat Timeout camera parameter. If the camera parameter changes, the host parameter changes accordingly, and vice versa.
  1449. Visibility: Beginner
  1450. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=HeartbeatTimeout" target="_blank">Basler Product Documentation</a> may provide more information.
  1451. */
  1452. Pylon::IIntegerEx& HeartbeatTimeout;
  1453. //@}
  1454. //! \name Categories: ROI
  1455. //@{
  1456. /*!
  1457. \brief Height of the image ROI on the host side - Applies to: CoaXPress
  1458. Height of the image ROI on the host side. This parameter is linked with the Height camera parameter. If the camera parameter changes, the host parameter changes accordingly, but not vice versa. The host parameter should not be set to a value different from the camera parameter.
  1459. Visibility: Expert
  1460. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Height" target="_blank">Basler Product Documentation</a> may provide more information.
  1461. */
  1462. Pylon::IIntegerEx& Height;
  1463. //@}
  1464. //! \name Categories: ImageSelector
  1465. //@{
  1466. /*!
  1467. \brief Defines which image in a sequence is grabbed - Applies to: CoaXPress
  1468. Visibility: Expert
  1469. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ImageSelect" target="_blank">Basler Product Documentation</a> may provide more information.
  1470. */
  1471. Pylon::IIntegerEx& ImageSelect;
  1472. //@}
  1473. //! \name Categories: ImageSelector
  1474. //@{
  1475. /*!
  1476. \brief Select the length of an image sequence - Applies to: CoaXPress
  1477. Select the length of an image sequence. Only a single image of the sequence is grabbed.
  1478. Visibility: Expert
  1479. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ImageSelectPeriod" target="_blank">Basler Product Documentation</a> may provide more information.
  1480. */
  1481. Pylon::IIntegerEx& ImageSelectPeriod;
  1482. //@}
  1483. //! \name Categories: DeviceControl
  1484. //@{
  1485. /*!
  1486. \brief Specifies maximum number of tries before failing the control channel commands - Applies to: blaze
  1487. Visibility: Guru
  1488. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LinkCommandRetryCount" target="_blank">Basler Product Documentation</a> may provide more information.
  1489. */
  1490. Pylon::IIntegerEx& LinkCommandRetryCount;
  1491. //@}
  1492. //! \name Categories: DeviceControl
  1493. //@{
  1494. /*!
  1495. \brief Specifies application timeout for the control channel communication - Applies to: blaze
  1496. Specifies application timeout for the control channel communication. Up to DeviceLinkCommandRetryCount attempts with this timeout are made before a command fails with a timeout error.
  1497. Visibility: Beginner
  1498. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LinkCommandTimeout" target="_blank">Basler Product Documentation</a> may provide more information.
  1499. */
  1500. Pylon::IFloatEx& LinkCommandTimeout;
  1501. //@}
  1502. //! \name Categories: LookupTable
  1503. //@{
  1504. /*!
  1505. \brief Filename with custom lookup table values - Applies to: CoaXPress
  1506. Visibility: Expert
  1507. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutCustomFile" target="_blank">Basler Product Documentation</a> may provide more information.
  1508. */
  1509. Pylon::IStringEx& LutCustomFile;
  1510. //@}
  1511. //! \name Categories: LookupTable
  1512. //@{
  1513. /*!
  1514. \brief Switch the LUT and processing functionality on or off - Applies to: CoaXPress
  1515. Visibility: Expert
  1516. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutEnable" target="_blank">Basler Product Documentation</a> may provide more information.
  1517. */
  1518. Pylon::IEnumParameterT<LutEnableEnums>& LutEnable;
  1519. //@}
  1520. //! \name Categories: AppletProperties
  1521. //@{
  1522. /*!
  1523. \brief Type of lookup table implementation - Applies to: CoaXPress
  1524. Type of LUT implementation.
  1525. Visibility: Expert
  1526. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutImplementationType" target="_blank">Basler Product Documentation</a> may provide more information.
  1527. */
  1528. Pylon::IEnumParameterT<LutImplementationTypeEnums>& LutImplementationType;
  1529. //@}
  1530. //! \name Categories: AppletProperties
  1531. //@{
  1532. /*!
  1533. \brief Pixel bit depth at the lookup table input - Applies to: CoaXPress
  1534. Pixel bit depth at LUT input.
  1535. Visibility: Expert
  1536. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutInputPixelBitDepth" target="_blank">Basler Product Documentation</a> may provide more information.
  1537. */
  1538. Pylon::IIntegerEx& LutInputPixelBitDepth;
  1539. //@}
  1540. //! \name Categories: AppletProperties
  1541. //@{
  1542. /*!
  1543. \brief Pixel bit depth at the lookup table output - Applies to: CoaXPress
  1544. Pixel bit depth at LUT output.
  1545. Visibility: Expert
  1546. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutOutputPixelBitDepth" target="_blank">Basler Product Documentation</a> may provide more information.
  1547. */
  1548. Pylon::IIntegerEx& LutOutputPixelBitDepth;
  1549. //@}
  1550. //! \name Categories: LookupTable
  1551. //@{
  1552. /*!
  1553. \brief Save current lookup table configuration - Applies to: CoaXPress
  1554. Save current LUT configuration.
  1555. Visibility: Expert
  1556. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutSaveFile" target="_blank">Basler Product Documentation</a> may provide more information.
  1557. */
  1558. Pylon::IStringEx& LutSaveFile;
  1559. //@}
  1560. //! \name Categories: LookupTable
  1561. //@{
  1562. /*!
  1563. \brief Set the type of the lookup table: Custom values or applet processor - Applies to: CoaXPress
  1564. Enables the LUT to be loaded with custom values or uses the applet's processor.
  1565. Visibility: Expert
  1566. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutType" target="_blank">Basler Product Documentation</a> may provide more information.
  1567. */
  1568. Pylon::IEnumParameterT<LutTypeEnums>& LutType;
  1569. //@}
  1570. //! \name Categories: LookupTable
  1571. //@{
  1572. /*!
  1573. \brief Field with lookup table values - Applies to: CoaXPress
  1574. Field with LUT Values.
  1575. Visibility: Expert
  1576. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutValue" target="_blank">Basler Product Documentation</a> may provide more information.
  1577. */
  1578. Pylon::IIntegerEx& LutValue;
  1579. //@}
  1580. //! \name Categories: LookupTable
  1581. //@{
  1582. /*!
  1583. \brief Field with blue lookup table values - Applies to: CoaXPress
  1584. Field with blue LUT Values.
  1585. Visibility: Expert
  1586. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutValueBlue" target="_blank">Basler Product Documentation</a> may provide more information.
  1587. */
  1588. Pylon::IIntegerEx& LutValueBlue;
  1589. //@}
  1590. //! \name Categories: LookupTable
  1591. //@{
  1592. /*!
  1593. \brief Applies to: CoaXPress
  1594. Visibility: Expert
  1595. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutValueBlueSelector" target="_blank">Basler Product Documentation</a> may provide more information.
  1596. */
  1597. Pylon::IIntegerEx& LutValueBlueSelector;
  1598. //@}
  1599. //! \name Categories: LookupTable
  1600. //@{
  1601. /*!
  1602. \brief Field with green looup table values - Applies to: CoaXPress
  1603. Field with green LUT Values.
  1604. Visibility: Expert
  1605. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutValueGreen" target="_blank">Basler Product Documentation</a> may provide more information.
  1606. */
  1607. Pylon::IIntegerEx& LutValueGreen;
  1608. //@}
  1609. //! \name Categories: LookupTable
  1610. //@{
  1611. /*!
  1612. \brief Applies to: CoaXPress
  1613. Visibility: Expert
  1614. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutValueGreenSelector" target="_blank">Basler Product Documentation</a> may provide more information.
  1615. */
  1616. Pylon::IIntegerEx& LutValueGreenSelector;
  1617. //@}
  1618. //! \name Categories: LookupTable
  1619. //@{
  1620. /*!
  1621. \brief Field with red lookup table values - Applies to: CoaXPress
  1622. Field with red LUT Values.
  1623. Visibility: Expert
  1624. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutValueRed" target="_blank">Basler Product Documentation</a> may provide more information.
  1625. */
  1626. Pylon::IIntegerEx& LutValueRed;
  1627. //@}
  1628. //! \name Categories: LookupTable
  1629. //@{
  1630. /*!
  1631. \brief Applies to: CoaXPress
  1632. Visibility: Expert
  1633. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutValueRedSelector" target="_blank">Basler Product Documentation</a> may provide more information.
  1634. */
  1635. Pylon::IIntegerEx& LutValueRedSelector;
  1636. //@}
  1637. //! \name Categories: LookupTable
  1638. //@{
  1639. /*!
  1640. \brief Applies to: CoaXPress
  1641. Visibility: Expert
  1642. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=LutValueSelector" target="_blank">Basler Product Documentation</a> may provide more information.
  1643. */
  1644. Pylon::IIntegerEx& LutValueSelector;
  1645. //@}
  1646. //! \name Categories: Root
  1647. //@{
  1648. /*!
  1649. \brief Maximum number of retries for read operations after a read operation has timed out - Applies to: GigE
  1650. Visibility: Guru
  1651. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=MaxRetryCountRead" target="_blank">Basler Product Documentation</a> may provide more information.
  1652. */
  1653. Pylon::IIntegerEx& MaxRetryCountRead;
  1654. //@}
  1655. //! \name Categories: Root
  1656. //@{
  1657. /*!
  1658. \brief Maximum number of retries for write operations after a write operation has timed out - Applies to: GigE
  1659. Visibility: Guru
  1660. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=MaxRetryCountWrite" target="_blank">Basler Product Documentation</a> may provide more information.
  1661. */
  1662. Pylon::IIntegerEx& MaxRetryCountWrite;
  1663. //@}
  1664. //! \name Categories: Root
  1665. //@{
  1666. /*!
  1667. \brief Enables mapping of certain SFNC 1 x node names to SFNC 2 x node names - Applies to: GigE and USB
  1668. Enables mapping of certain SFNC 1.x node names to SFNC 2.x node names. This allows you to write code for camera devices that are compatible with different SFNC (Standard Features Naming Convention) versions. Available for USB camera devices only.
  1669. Visibility: Guru
  1670. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=MigrationModeEnable" target="_blank">Basler Product Documentation</a> may provide more information.
  1671. */
  1672. Pylon::IBooleanEx& MigrationModeEnable;
  1673. //@}
  1674. //! \name Categories: OutStatistics
  1675. //@{
  1676. /*!
  1677. \brief Returns whether missing frames are reported - Applies to: CoaXPress
  1678. Returns whether missing frames are reported. If no frame is received for a trigger pulse, the parameter is set to Yes.
  1679. Visibility: Expert
  1680. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=MissingCameraFrameResponse" target="_blank">Basler Product Documentation</a> may provide more information.
  1681. */
  1682. Pylon::IEnumParameterT<MissingCameraFrameResponseEnums>& MissingCameraFrameResponse;
  1683. //@}
  1684. //! \name Categories: OutStatistics
  1685. //@{
  1686. /*!
  1687. \brief Clears the Missing Camera Frame Response parameter - Applies to: CoaXPress
  1688. Visibility: Expert
  1689. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=MissingCameraFrameResponseClear" target="_blank">Basler Product Documentation</a> may provide more information.
  1690. */
  1691. Pylon::ICommandEx& MissingCameraFrameResponseClear;
  1692. //@}
  1693. //! \name Categories: ROI
  1694. //@{
  1695. /*!
  1696. \brief Acquisition ROI x-offset, independent of camera ROI - Applies to: CoaXPress
  1697. X-offset of the acquisition ROI independent of the camera ROI.
  1698. Visibility: Expert
  1699. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=OffsetX" target="_blank">Basler Product Documentation</a> may provide more information.
  1700. */
  1701. Pylon::IIntegerEx& OffsetX;
  1702. //@}
  1703. //! \name Categories: ROI
  1704. //@{
  1705. /*!
  1706. \brief Acquisition ROI y-offset, independent of camera ROI - Applies to: CoaXPress
  1707. Y-offset of the acquisition ROI independent of the camera ROI.
  1708. Visibility: Expert
  1709. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=OffsetY" target="_blank">Basler Product Documentation</a> may provide more information.
  1710. */
  1711. Pylon::IIntegerEx& OffsetY;
  1712. //@}
  1713. //! \name Categories: ImageFormatControl
  1714. //@{
  1715. /*!
  1716. \brief Automatically outputs packed formats instead of unpacked ones - Applies to: CoaXPress
  1717. Automatically outputs packed formats instead of unpacked ones. This parameter is only available if the Automatic Format Control parameter is enabled.
  1718. Visibility: Expert
  1719. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=OutputPackedFormats" target="_blank">Basler Product Documentation</a> may provide more information.
  1720. */
  1721. Pylon::IBooleanEx& OutputPackedFormats;
  1722. //@}
  1723. //! \name Categories: BufferStatus
  1724. //@{
  1725. /*!
  1726. \brief Indicates whether the image buffer is currently in overflow state - Applies to: CoaXPress
  1727. Indicates whether if the image buffer is currently in overflow state. An overflow results in the loss of images. The parameter is reset at each readout cycle.
  1728. Visibility: Expert
  1729. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Overflow" target="_blank">Basler Product Documentation</a> may provide more information.
  1730. */
  1731. Pylon::IIntegerEx& Overflow;
  1732. //@}
  1733. //! \name Categories: CoaXPress
  1734. //@{
  1735. /*!
  1736. \brief Number of packet errors - Applies to: CoaXPress
  1737. Number of packet errors. This parameter indicates that CXP stream packet are lost.
  1738. Visibility: Expert
  1739. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=PacketTagErrorCount" target="_blank">Basler Product Documentation</a> may provide more information.
  1740. */
  1741. Pylon::IIntegerEx& PacketTagErrorCount;
  1742. //@}
  1743. //! \name Categories: OutputFormat
  1744. //@{
  1745. /*!
  1746. \brief Applet-internal processing bit depth - Applies to: CoaXPress
  1747. Applet-internal processing bit depth. This is the maximum bit depth at which pixels are processed. If you select a highter output and input bit depth, data may be truncated.
  1748. Visibility: Expert
  1749. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=PixelDepth" target="_blank">Basler Product Documentation</a> may provide more information.
  1750. */
  1751. Pylon::IIntegerEx& PixelDepth;
  1752. //@}
  1753. //! \name Categories: CoaXPress
  1754. //@{
  1755. /*!
  1756. \brief Sets the format of the pixel data transmitted by the camera - Applies to: CoaXPress
  1757. Sets the format of the pixel data transmitted by the camera. This setting has to match the pixel format set in the camera.
  1758. Visibility: Expert
  1759. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=PixelFormat" target="_blank">Basler Product Documentation</a> may provide more information.
  1760. */
  1761. Pylon::IEnumParameterT<PixelFormatEnums>& PixelFormat;
  1762. //@}
  1763. //! \name Categories: Processing
  1764. //@{
  1765. /*!
  1766. \brief Gain correction value - Applies to: CoaXPress
  1767. Gain correction value. Available when LUT functionality is enabled.
  1768. Visibility: Expert
  1769. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ProcessingGain" target="_blank">Basler Product Documentation</a> may provide more information.
  1770. */
  1771. Pylon::IFloatEx& ProcessingGain;
  1772. //@}
  1773. //! \name Categories: Processing
  1774. //@{
  1775. /*!
  1776. \brief Gamma correction value - Applies to: CoaXPress
  1777. Gamma correction value. Available when LUT functionality is enabled.
  1778. Visibility: Expert
  1779. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ProcessingGamma" target="_blank">Basler Product Documentation</a> may provide more information.
  1780. */
  1781. Pylon::IFloatEx& ProcessingGamma;
  1782. //@}
  1783. //! \name Categories: Processing
  1784. //@{
  1785. /*!
  1786. \brief Invert output - Applies to: CoaXPress
  1787. Invert output. Available when LUT functionality is enabled.
  1788. Visibility: Expert
  1789. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ProcessingInvert" target="_blank">Basler Product Documentation</a> may provide more information.
  1790. */
  1791. Pylon::IEnumParameterT<ProcessingInvertEnums>& ProcessingInvert;
  1792. //@}
  1793. //! \name Categories: Processing
  1794. //@{
  1795. /*!
  1796. \brief Offset correction value - Applies to: CoaXPress
  1797. Offset correction value. Available when LUT functionality is enabled.
  1798. Visibility: Expert
  1799. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ProcessingOffset" target="_blank">Basler Product Documentation</a> may provide more information.
  1800. */
  1801. Pylon::IFloatEx& ProcessingOffset;
  1802. //@}
  1803. //! \name Categories: Root
  1804. //@{
  1805. /*!
  1806. \brief Read access timeout value in milliseconds - Applies to: GigE
  1807. Visibility: Beginner
  1808. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ReadTimeout" target="_blank">Basler Product Documentation</a> may provide more information.
  1809. */
  1810. Pylon::IIntegerEx& ReadTimeout;
  1811. //@}
  1812. //! \name Categories: WhiteBalance
  1813. //@{
  1814. /*!
  1815. \brief Blue gain of the white balancing - Applies to: CoaXPress
  1816. Visibility: Expert
  1817. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ScalingFactorBlue" target="_blank">Basler Product Documentation</a> may provide more information.
  1818. */
  1819. Pylon::IFloatEx& ScalingFactorBlue;
  1820. //@}
  1821. //! \name Categories: WhiteBalance
  1822. //@{
  1823. /*!
  1824. \brief Green gain of the white balancing - Applies to: CoaXPress
  1825. Visibility: Expert
  1826. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ScalingFactorGreen" target="_blank">Basler Product Documentation</a> may provide more information.
  1827. */
  1828. Pylon::IFloatEx& ScalingFactorGreen;
  1829. //@}
  1830. //! \name Categories: WhiteBalance
  1831. //@{
  1832. /*!
  1833. \brief Red gain of the white balancing - Applies to: CoaXPress
  1834. Visibility: Expert
  1835. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=ScalingFactorRed" target="_blank">Basler Product Documentation</a> may provide more information.
  1836. */
  1837. Pylon::IFloatEx& ScalingFactorRed;
  1838. //@}
  1839. //! \name Categories: SoftwareTrigger
  1840. //@{
  1841. /*!
  1842. \brief Sends a software trigger pulse - Applies to: CoaXPress
  1843. Sends a software trigger pulse or adds pulses to the trigger queue if it is enabled.
  1844. Visibility: Expert
  1845. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SendSoftwareTrigger" target="_blank">Basler Product Documentation</a> may provide more information.
  1846. */
  1847. Pylon::ICommandEx& SendSoftwareTrigger;
  1848. //@}
  1849. //! \name Categories: SensorGeometry
  1850. //@{
  1851. /*!
  1852. \brief Height of the sensor - Applies to: CoaXPress
  1853. Sensor Height in selected tap geometry. Value is ignored if vantage point = TopLeft. Available DRAM and SensorWidth limit the maximum SensorHeight.
  1854. Visibility: Expert
  1855. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SensorHeight" target="_blank">Basler Product Documentation</a> may provide more information.
  1856. */
  1857. Pylon::IIntegerEx& SensorHeight;
  1858. //@}
  1859. //! \name Categories: SensorGeometry
  1860. //@{
  1861. /*!
  1862. \brief Width of the sensor - Applies to: CoaXPress
  1863. Sensor width in selected tap geometry. Value is ignored if vantage point = Top-Left. Available DRAM and SensorHeight limit the maximum SensorWidth.
  1864. Visibility: Expert
  1865. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SensorWidth" target="_blank">Basler Product Documentation</a> may provide more information.
  1866. */
  1867. Pylon::IIntegerEx& SensorWidth;
  1868. //@}
  1869. //! \name Categories: SoftwareTrigger
  1870. //@{
  1871. /*!
  1872. \brief Indicates whether the software trigger is busy - Applies to: CoaXPress
  1873. Indicates whether the software trigger is busy. This allows you to find out whether the trigger system is still processing software trigger pulses.
  1874. Visibility: Expert
  1875. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SoftwareTriggerIsBusy" target="_blank">Basler Product Documentation</a> may provide more information.
  1876. */
  1877. Pylon::IEnumParameterT<SoftwareTriggerIsBusyEnums>& SoftwareTriggerIsBusy;
  1878. //@}
  1879. //! \name Categories: SoftwareTrigger
  1880. //@{
  1881. /*!
  1882. \brief Number of pulses in queue to be processed - Applies to: CoaXPress
  1883. Number of pulses in queue to be processed. The Queue parameter needs to be enabled for this.
  1884. Visibility: Expert
  1885. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SoftwareTriggerQueueFillLevel" target="_blank">Basler Product Documentation</a> may provide more information.
  1886. */
  1887. Pylon::IIntegerEx& SoftwareTriggerQueueFillLevel;
  1888. //@}
  1889. //! \name Categories: ExtendedDeviceControl and Root
  1890. //@{
  1891. /*!
  1892. \brief Number of timeouts during read and write operations when waiting for a response from the device - Applies to: GigE and blaze
  1893. Visibility: Guru
  1894. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=StatisticReadWriteTimeoutCount" target="_blank">Basler Product Documentation</a> may provide more information.
  1895. */
  1896. Pylon::IIntegerEx& StatisticReadWriteTimeoutCount;
  1897. //@}
  1898. //! \name Categories: Statistic
  1899. //@{
  1900. /*!
  1901. \brief Last error status of a read or write operation - Applies to: BCON and USB
  1902. Visibility: Expert
  1903. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Statistic_Last_Error_Status" target="_blank">Basler Product Documentation</a> may provide more information.
  1904. */
  1905. Pylon::IIntegerEx& Statistic_Last_Error_Status;
  1906. //@}
  1907. //! \name Categories: Statistic
  1908. //@{
  1909. /*!
  1910. \brief Last error status of a read or write operation - Applies to: BCON and USB
  1911. Visibility: Expert
  1912. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Statistic_Last_Error_Status_Text" target="_blank">Basler Product Documentation</a> may provide more information.
  1913. */
  1914. Pylon::IStringEx& Statistic_Last_Error_Status_Text;
  1915. //@}
  1916. //! \name Categories: Statistic
  1917. //@{
  1918. /*!
  1919. \brief Number of failed read operations - Applies to: BCON and USB
  1920. Visibility: Expert
  1921. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Statistic_Read_Operations_Failed_Count" target="_blank">Basler Product Documentation</a> may provide more information.
  1922. */
  1923. Pylon::IIntegerEx& Statistic_Read_Operations_Failed_Count;
  1924. //@}
  1925. //! \name Categories: Statistic
  1926. //@{
  1927. /*!
  1928. \brief Number of read pipe resets - Applies to: USB
  1929. Visibility: Expert
  1930. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Statistic_Read_Pipe_Reset_Count" target="_blank">Basler Product Documentation</a> may provide more information.
  1931. */
  1932. Pylon::IIntegerEx& Statistic_Read_Pipe_Reset_Count;
  1933. //@}
  1934. //! \name Categories: Statistic
  1935. //@{
  1936. /*!
  1937. \brief Number of failed write operations - Applies to: BCON and USB
  1938. Visibility: Expert
  1939. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Statistic_Write_Operations_Failed_Count" target="_blank">Basler Product Documentation</a> may provide more information.
  1940. */
  1941. Pylon::IIntegerEx& Statistic_Write_Operations_Failed_Count;
  1942. //@}
  1943. //! \name Categories: Statistic
  1944. //@{
  1945. /*!
  1946. \brief Number of write pipe resets - Applies to: USB
  1947. Visibility: Expert
  1948. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Statistic_Write_Pipe_Reset_Count" target="_blank">Basler Product Documentation</a> may provide more information.
  1949. */
  1950. Pylon::IIntegerEx& Statistic_Write_Pipe_Reset_Count;
  1951. //@}
  1952. //! \name Categories: StreamEnumeration
  1953. //@{
  1954. /*!
  1955. \brief User-friendly name of the selected stream - Applies to: CoaXPress
  1956. Visibility: Expert
  1957. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=StreamDisplayName" target="_blank">Basler Product Documentation</a> may provide more information.
  1958. */
  1959. Pylon::IStringEx& StreamDisplayName;
  1960. //@}
  1961. //! \name Categories: StreamEnumeration
  1962. //@{
  1963. /*!
  1964. \brief Device-wide unique ID of the data stream - Applies to: CoaXPress and blaze
  1965. Visibility: Beginner
  1966. Selected by: StreamSelector
  1967. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=StreamID" target="_blank">Basler Product Documentation</a> may provide more information.
  1968. */
  1969. Pylon::IStringEx& StreamID;
  1970. //@}
  1971. //! \name Categories: StreamEnumeration
  1972. //@{
  1973. /*!
  1974. \brief Sets the stream channel - Applies to: CoaXPress and blaze
  1975. Sets the stream channel. The parameter is 0-based in order to match the index of the C interface.
  1976. Visibility: Beginner
  1977. Selecting Parameters: StreamID
  1978. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=StreamSelector" target="_blank">Basler Product Documentation</a> may provide more information.
  1979. */
  1980. Pylon::IIntegerEx& StreamSelector;
  1981. //@}
  1982. //! \name Categories: Miscellaneous
  1983. //@{
  1984. /*!
  1985. \brief Applies to: CoaXPress
  1986. Byte Alignment 8b10b locked
  1987. Visibility: Beginner
  1988. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorByteAlignment8b10bLocked" target="_blank">Basler Product Documentation</a> may provide more information.
  1989. */
  1990. Pylon::IEnumParameterT<SystemmonitorByteAlignment8b10bLockedEnums>& SystemmonitorByteAlignment8b10bLocked;
  1991. //@}
  1992. //! \name Categories: Miscellaneous
  1993. //@{
  1994. /*!
  1995. \brief Applies to: CoaXPress
  1996. Returns the Channel Current.
  1997. Visibility: Beginner
  1998. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorChannelCurrent" target="_blank">Basler Product Documentation</a> may provide more information.
  1999. */
  2000. Pylon::IFloatEx& SystemmonitorChannelCurrent;
  2001. //@}
  2002. //! \name Categories: Miscellaneous
  2003. //@{
  2004. /*!
  2005. \brief Applies to: CoaXPress
  2006. Visibility: Beginner
  2007. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorChannelCurrentSelector" target="_blank">Basler Product Documentation</a> may provide more information.
  2008. */
  2009. Pylon::IIntegerEx& SystemmonitorChannelCurrentSelector;
  2010. //@}
  2011. //! \name Categories: Miscellaneous
  2012. //@{
  2013. /*!
  2014. \brief Applies to: CoaXPress
  2015. Returns the Channel Voltage.
  2016. Visibility: Beginner
  2017. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorChannelVoltage" target="_blank">Basler Product Documentation</a> may provide more information.
  2018. */
  2019. Pylon::IFloatEx& SystemmonitorChannelVoltage;
  2020. //@}
  2021. //! \name Categories: Miscellaneous
  2022. //@{
  2023. /*!
  2024. \brief Applies to: CoaXPress
  2025. Visibility: Beginner
  2026. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorChannelVoltageSelector" target="_blank">Basler Product Documentation</a> may provide more information.
  2027. */
  2028. Pylon::IIntegerEx& SystemmonitorChannelVoltageSelector;
  2029. //@}
  2030. //! \name Categories: Miscellaneous
  2031. //@{
  2032. /*!
  2033. \brief Applies to: CoaXPress
  2034. Returns the current PCIe link speed in Gibibyte (2^30 byte).
  2035. Visibility: Beginner
  2036. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorCurrentLinkSpeed" target="_blank">Basler Product Documentation</a> may provide more information.
  2037. */
  2038. Pylon::IFloatEx& SystemmonitorCurrentLinkSpeed;
  2039. //@}
  2040. //! \name Categories: CoaXPress
  2041. //@{
  2042. /*!
  2043. \brief Camera scan mode - Applies to: CoaXPress
  2044. This parameter informs on the current transfer mode, used by the camera. The transfer can be an areascan (= 0) or linescan (= 1) image.
  2045. Visibility: Expert
  2046. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorCxpImageLineMode" target="_blank">Basler Product Documentation</a> may provide more information.
  2047. */
  2048. Pylon::IIntegerEx& SystemmonitorCxpImageLineMode;
  2049. //@}
  2050. //! \name Categories: Miscellaneous
  2051. //@{
  2052. /*!
  2053. \brief Applies to: CoaXPress
  2054. Disparity 8b 10b errors
  2055. Visibility: Beginner
  2056. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorDisparity8b10bError" target="_blank">Basler Product Documentation</a> may provide more information.
  2057. */
  2058. Pylon::IIntegerEx& SystemmonitorDisparity8b10bError;
  2059. //@}
  2060. //! \name Categories: Miscellaneous
  2061. //@{
  2062. /*!
  2063. \brief Applies to: CoaXPress
  2064. Shows the external power state of the board.
  2065. Visibility: Beginner
  2066. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorExternalPower" target="_blank">Basler Product Documentation</a> may provide more information.
  2067. */
  2068. Pylon::IEnumParameterT<SystemmonitorExternalPowerEnums>& SystemmonitorExternalPower;
  2069. //@}
  2070. //! \name Categories: Miscellaneous
  2071. //@{
  2072. /*!
  2073. \brief Applies to: CoaXPress
  2074. Returns the current FPGA die temperature.
  2075. Visibility: Beginner
  2076. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorFpgaTemperature" target="_blank">Basler Product Documentation</a> may provide more information.
  2077. */
  2078. Pylon::IFloatEx& SystemmonitorFpgaTemperature;
  2079. //@}
  2080. //! \name Categories: Miscellaneous
  2081. //@{
  2082. /*!
  2083. \brief Applies to: CoaXPress
  2084. Returns the current FPGA auxiliary Vcc.
  2085. Visibility: Beginner
  2086. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorFpgaVccAux" target="_blank">Basler Product Documentation</a> may provide more information.
  2087. */
  2088. Pylon::IFloatEx& SystemmonitorFpgaVccAux;
  2089. //@}
  2090. //! \name Categories: Miscellaneous
  2091. //@{
  2092. /*!
  2093. \brief Applies to: CoaXPress
  2094. Returns the current FPGA BRAM Vcc.
  2095. Visibility: Beginner
  2096. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorFpgaVccBram" target="_blank">Basler Product Documentation</a> may provide more information.
  2097. */
  2098. Pylon::IFloatEx& SystemmonitorFpgaVccBram;
  2099. //@}
  2100. //! \name Categories: Miscellaneous
  2101. //@{
  2102. /*!
  2103. \brief Applies to: CoaXPress
  2104. Returns the current FPGA internal Vcc.
  2105. Visibility: Beginner
  2106. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorFpgaVccInt" target="_blank">Basler Product Documentation</a> may provide more information.
  2107. */
  2108. Pylon::IFloatEx& SystemmonitorFpgaVccInt;
  2109. //@}
  2110. //! \name Categories: Miscellaneous
  2111. //@{
  2112. /*!
  2113. \brief Applies to: CoaXPress
  2114. Not in table 8b 10b errors
  2115. Visibility: Beginner
  2116. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorNotInTable8b10bError" target="_blank">Basler Product Documentation</a> may provide more information.
  2117. */
  2118. Pylon::IIntegerEx& SystemmonitorNotInTable8b10bError;
  2119. //@}
  2120. //! \name Categories: CoaXPress
  2121. //@{
  2122. /*!
  2123. \brief Number of packet buffer overflows - Applies to: CoaXPress
  2124. Represents the number of overflows, if an overflow occurred due to not correctly aligned package order.
  2125. Visibility: Expert
  2126. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorPacketbufferOverflowCount" target="_blank">Basler Product Documentation</a> may provide more information.
  2127. */
  2128. Pylon::IIntegerEx& SystemmonitorPacketbufferOverflowCount;
  2129. //@}
  2130. //! \name Categories: CoaXPress
  2131. //@{
  2132. /*!
  2133. \brief Source of packet buffer overflows - Applies to: CoaXPress
  2134. Represents the port, which has overflows due to not correctly aligned package order.
  2135. Visibility: Expert
  2136. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorPacketbufferOverflowSource" target="_blank">Basler Product Documentation</a> may provide more information.
  2137. */
  2138. Pylon::IIntegerEx& SystemmonitorPacketbufferOverflowSource;
  2139. //@}
  2140. //! \name Categories: Miscellaneous
  2141. //@{
  2142. /*!
  2143. \brief Applies to: CoaXPress
  2144. Returns the PCIe trained payload size.
  2145. Visibility: Beginner
  2146. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorPcieTrainedPayloadSize" target="_blank">Basler Product Documentation</a> may provide more information.
  2147. */
  2148. Pylon::IIntegerEx& SystemmonitorPcieTrainedPayloadSize;
  2149. //@}
  2150. //! \name Categories: Miscellaneous
  2151. //@{
  2152. /*!
  2153. \brief Applies to: CoaXPress
  2154. Returns the PCIe trained request size.
  2155. Visibility: Beginner
  2156. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorPcieTrainedRequestSize" target="_blank">Basler Product Documentation</a> may provide more information.
  2157. */
  2158. Pylon::IIntegerEx& SystemmonitorPcieTrainedRequestSize;
  2159. //@}
  2160. //! \name Categories: Miscellaneous
  2161. //@{
  2162. /*!
  2163. \brief Applies to: CoaXPress
  2164. Returns the port bit rate
  2165. Visibility: Beginner
  2166. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorPortBitRate" target="_blank">Basler Product Documentation</a> may provide more information.
  2167. */
  2168. Pylon::IFloatEx& SystemmonitorPortBitRate;
  2169. //@}
  2170. //! \name Categories: Miscellaneous
  2171. //@{
  2172. /*!
  2173. \brief Applies to: CoaXPress
  2174. Shows the current power over CXP state.
  2175. Visibility: Beginner
  2176. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorPowerOverCxpState" target="_blank">Basler Product Documentation</a> may provide more information.
  2177. */
  2178. Pylon::IEnumParameterT<SystemmonitorPowerOverCxpStateEnums>& SystemmonitorPowerOverCxpState;
  2179. //@}
  2180. //! \name Categories: CoaXPress
  2181. //@{
  2182. /*!
  2183. \brief Number of used connections - Applies to: CoaXPress
  2184. The currently used number of CXP ports used in this process.
  2185. Visibility: Expert
  2186. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=SystemmonitorUsedCxpConnections" target="_blank">Basler Product Documentation</a> may provide more information.
  2187. */
  2188. Pylon::IIntegerEx& SystemmonitorUsedCxpConnections;
  2189. //@}
  2190. //! \name Categories: CoaXPress
  2191. //@{
  2192. /*!
  2193. \brief Number of trigger acknowledgement packets sent by the camera have been received by the frame grabber - Applies to: CoaXPress
  2194. Number of trigger acknowledgement packets sent by the camera (in response to trigger edge packets sent before) have been received by the frame grabber.
  2195. Visibility: Expert
  2196. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerAcknowledgementCount" target="_blank">Basler Product Documentation</a> may provide more information.
  2197. */
  2198. Pylon::IIntegerEx& TriggerAcknowledgementCount;
  2199. //@}
  2200. //! \name Categories: CameraOutSignalMapping
  2201. //@{
  2202. /*!
  2203. \brief Sets the output source to be connected to a camera signal channel - Applies to: CoaXPress
  2204. Visibility: Expert
  2205. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerCameraOutSelect" target="_blank">Basler Product Documentation</a> may provide more information.
  2206. */
  2207. Pylon::IEnumParameterT<TriggerCameraOutSelectEnums>& TriggerCameraOutSelect;
  2208. //@}
  2209. //! \name Categories: CoaXPress
  2210. //@{
  2211. /*!
  2212. \brief Number of trigger events sent to the camera - Applies to: CoaXPress
  2213. Visibility: Expert
  2214. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerEventCount" target="_blank">Basler Product Documentation</a> may provide more information.
  2215. */
  2216. Pylon::IIntegerEx& TriggerEventCount;
  2217. //@}
  2218. //! \name Categories: OutStatistics
  2219. //@{
  2220. /*!
  2221. \brief Returns whether the input signal frequency exceeded the maximum specified - Applies to: CoaXPress
  2222. Returns whether the input signal frequency exceeded the maximum specified. If the parameter returns Yes, signals were dropped.
  2223. Visibility: Expert
  2224. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerExceededPeriodLimits" target="_blank">Basler Product Documentation</a> may provide more information.
  2225. */
  2226. Pylon::IEnumParameterT<TriggerExceededPeriodLimitsEnums>& TriggerExceededPeriodLimits;
  2227. //@}
  2228. //! \name Categories: OutStatistics
  2229. //@{
  2230. /*!
  2231. \brief Clears the Trigger Exceeded Period Limits parameter - Applies to: CoaXPress
  2232. Visibility: Expert
  2233. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerExceededPeriodLimitsClear" target="_blank">Basler Product Documentation</a> may provide more information.
  2234. */
  2235. Pylon::ICommandEx& TriggerExceededPeriodLimitsClear;
  2236. //@}
  2237. //! \name Categories: External
  2238. //@{
  2239. /*!
  2240. \brief Input debounce time for trigger input signals (in microseconds) - Applies to: CoaXPress
  2241. Input debounce time for trigger input signals (in microseconds). This parameter allows you to filter out invalid signals by specifying a minimum signal length.
  2242. Visibility: Expert
  2243. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInDebounce" target="_blank">Basler Product Documentation</a> may provide more information.
  2244. */
  2245. Pylon::IFloatEx& TriggerInDebounce;
  2246. //@}
  2247. //! \name Categories: External
  2248. //@{
  2249. /*!
  2250. \brief Factor by which the trigger input signal is downscaled - Applies to: CoaXPress
  2251. Visibility: Expert
  2252. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInDownscale" target="_blank">Basler Product Documentation</a> may provide more information.
  2253. */
  2254. Pylon::IIntegerEx& TriggerInDownscale;
  2255. //@}
  2256. //! \name Categories: External
  2257. //@{
  2258. /*!
  2259. \brief Phase for selecting the desired pulse in the sequence - Applies to: CoaXPress
  2260. Visibility: Expert
  2261. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInDownscalePhase" target="_blank">Basler Product Documentation</a> may provide more information.
  2262. */
  2263. Pylon::IIntegerEx& TriggerInDownscalePhase;
  2264. //@}
  2265. //! \name Categories: External
  2266. //@{
  2267. /*!
  2268. \brief Sets the polarity of the trigger input signal - Applies to: CoaXPress
  2269. Visibility: Expert
  2270. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInPolarity" target="_blank">Basler Product Documentation</a> may provide more information.
  2271. */
  2272. Pylon::IEnumParameterT<TriggerInPolarityEnums>& TriggerInPolarity;
  2273. //@}
  2274. //! \name Categories: External
  2275. //@{
  2276. /*!
  2277. \brief Sets the trigger input source - Applies to: CoaXPress
  2278. Sets the trigger input source for external trigger mode.
  2279. Visibility: Expert
  2280. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInSource" target="_blank">Basler Product Documentation</a> may provide more information.
  2281. */
  2282. Pylon::IEnumParameterT<TriggerInSourceEnums>& TriggerInSource;
  2283. //@}
  2284. //! \name Categories: InStatistics
  2285. //@{
  2286. /*!
  2287. \brief Current frequency of the input pulses - Applies to: CoaXPress
  2288. Visibility: Expert
  2289. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInStatisticsFrequency" target="_blank">Basler Product Documentation</a> may provide more information.
  2290. */
  2291. Pylon::IFloatEx& TriggerInStatisticsFrequency;
  2292. //@}
  2293. //! \name Categories: InStatistics
  2294. //@{
  2295. /*!
  2296. \brief Maximum input frequency detected - Applies to: CoaXPress
  2297. Visibility: Expert
  2298. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInStatisticsMaximumFrequency" target="_blank">Basler Product Documentation</a> may provide more information.
  2299. */
  2300. Pylon::IFloatEx& TriggerInStatisticsMaximumFrequency;
  2301. //@}
  2302. //! \name Categories: InStatistics
  2303. //@{
  2304. /*!
  2305. \brief Clears the minimum and maximum frequency values - Applies to: CoaXPress
  2306. Visibility: Expert
  2307. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInStatisticsMinMaxFrequencyClear" target="_blank">Basler Product Documentation</a> may provide more information.
  2308. */
  2309. Pylon::ICommandEx& TriggerInStatisticsMinMaxFrequencyClear;
  2310. //@}
  2311. //! \name Categories: InStatistics
  2312. //@{
  2313. /*!
  2314. \brief Minimum input frequency detected - Applies to: CoaXPress
  2315. Visibility: Expert
  2316. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInStatisticsMinimumFrequency" target="_blank">Basler Product Documentation</a> may provide more information.
  2317. */
  2318. Pylon::IFloatEx& TriggerInStatisticsMinimumFrequency;
  2319. //@}
  2320. //! \name Categories: InStatistics
  2321. //@{
  2322. /*!
  2323. \brief Sets the polarity of the trigger input signal for statistics - Applies to: CoaXPress
  2324. Visibility: Expert
  2325. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInStatisticsPolarity" target="_blank">Basler Product Documentation</a> may provide more information.
  2326. */
  2327. Pylon::IEnumParameterT<TriggerInStatisticsPolarityEnums>& TriggerInStatisticsPolarity;
  2328. //@}
  2329. //! \name Categories: InStatistics
  2330. //@{
  2331. /*!
  2332. \brief Number of input pulses - Applies to: CoaXPress
  2333. Visibility: Expert
  2334. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInStatisticsPulseCount" target="_blank">Basler Product Documentation</a> may provide more information.
  2335. */
  2336. Pylon::IIntegerEx& TriggerInStatisticsPulseCount;
  2337. //@}
  2338. //! \name Categories: InStatistics
  2339. //@{
  2340. /*!
  2341. \brief Clears the input signal pulse counter - Applies to: CoaXPress
  2342. Visibility: Expert
  2343. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInStatisticsPulseCountClear" target="_blank">Basler Product Documentation</a> may provide more information.
  2344. */
  2345. Pylon::ICommandEx& TriggerInStatisticsPulseCountClear;
  2346. //@}
  2347. //! \name Categories: InStatistics
  2348. //@{
  2349. /*!
  2350. \brief Sets the input source for statistics - Applies to: CoaXPress
  2351. Sets the trigger input source for statistics.
  2352. Visibility: Expert
  2353. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerInStatisticsSource" target="_blank">Basler Product Documentation</a> may provide more information.
  2354. */
  2355. Pylon::IEnumParameterT<TriggerInStatisticsSourceEnums>& TriggerInStatisticsSource;
  2356. //@}
  2357. //! \name Categories: Sequencer
  2358. //@{
  2359. /*!
  2360. \brief Upscales, i e , duplicates, the number of trigger pulses generated externally or via software with the period specified by the Trigger Output Frequency parameter - Applies to: CoaXPress
  2361. Visibility: Expert
  2362. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerMultiplyPulses" target="_blank">Basler Product Documentation</a> may provide more information.
  2363. */
  2364. Pylon::IIntegerEx& TriggerMultiplyPulses;
  2365. //@}
  2366. //! \name Categories: DigitalOutput
  2367. //@{
  2368. /*!
  2369. \brief Sets the output source of Front GPO 0 - Applies to: CoaXPress
  2370. Visibility: Expert
  2371. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectFrontGPO0" target="_blank">Basler Product Documentation</a> may provide more information.
  2372. */
  2373. Pylon::IEnumParameterT<TriggerOutSelectFrontGPO0Enums>& TriggerOutSelectFrontGPO0;
  2374. //@}
  2375. //! \name Categories: DigitalOutput
  2376. //@{
  2377. /*!
  2378. \brief Sets the output source of Front GPO 1 - Applies to: CoaXPress
  2379. Visibility: Expert
  2380. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectFrontGPO1" target="_blank">Basler Product Documentation</a> may provide more information.
  2381. */
  2382. Pylon::IEnumParameterT<TriggerOutSelectFrontGPO1Enums>& TriggerOutSelectFrontGPO1;
  2383. //@}
  2384. //! \name Categories: DigitalOutput
  2385. //@{
  2386. /*!
  2387. \brief Sets the output source of GPO 0 - Applies to: CoaXPress
  2388. Visibility: Expert
  2389. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectGPO0" target="_blank">Basler Product Documentation</a> may provide more information.
  2390. */
  2391. Pylon::IEnumParameterT<TriggerOutSelectGPO0Enums>& TriggerOutSelectGPO0;
  2392. //@}
  2393. //! \name Categories: DigitalOutput
  2394. //@{
  2395. /*!
  2396. \brief Sets the output source of GPO 1 - Applies to: CoaXPress
  2397. Visibility: Expert
  2398. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectGPO1" target="_blank">Basler Product Documentation</a> may provide more information.
  2399. */
  2400. Pylon::IEnumParameterT<TriggerOutSelectGPO1Enums>& TriggerOutSelectGPO1;
  2401. //@}
  2402. //! \name Categories: DigitalOutput
  2403. //@{
  2404. /*!
  2405. \brief Sets the output source of GPO 2 - Applies to: CoaXPress
  2406. Visibility: Expert
  2407. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectGPO2" target="_blank">Basler Product Documentation</a> may provide more information.
  2408. */
  2409. Pylon::IEnumParameterT<TriggerOutSelectGPO2Enums>& TriggerOutSelectGPO2;
  2410. //@}
  2411. //! \name Categories: DigitalOutput
  2412. //@{
  2413. /*!
  2414. \brief Sets the output source of GPO 3 - Applies to: CoaXPress
  2415. Visibility: Expert
  2416. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectGPO3" target="_blank">Basler Product Documentation</a> may provide more information.
  2417. */
  2418. Pylon::IEnumParameterT<TriggerOutSelectGPO3Enums>& TriggerOutSelectGPO3;
  2419. //@}
  2420. //! \name Categories: DigitalOutput
  2421. //@{
  2422. /*!
  2423. \brief Sets the output source of GPO 4 - Applies to: CoaXPress
  2424. Visibility: Expert
  2425. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectGPO4" target="_blank">Basler Product Documentation</a> may provide more information.
  2426. */
  2427. Pylon::IEnumParameterT<TriggerOutSelectGPO4Enums>& TriggerOutSelectGPO4;
  2428. //@}
  2429. //! \name Categories: DigitalOutput
  2430. //@{
  2431. /*!
  2432. \brief Sets the output source of GPO 5 - Applies to: CoaXPress
  2433. Visibility: Expert
  2434. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectGPO5" target="_blank">Basler Product Documentation</a> may provide more information.
  2435. */
  2436. Pylon::IEnumParameterT<TriggerOutSelectGPO5Enums>& TriggerOutSelectGPO5;
  2437. //@}
  2438. //! \name Categories: DigitalOutput
  2439. //@{
  2440. /*!
  2441. \brief Sets the output source of GPO 6 - Applies to: CoaXPress
  2442. Visibility: Expert
  2443. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectGPO6" target="_blank">Basler Product Documentation</a> may provide more information.
  2444. */
  2445. Pylon::IEnumParameterT<TriggerOutSelectGPO6Enums>& TriggerOutSelectGPO6;
  2446. //@}
  2447. //! \name Categories: DigitalOutput
  2448. //@{
  2449. /*!
  2450. \brief Sets the output source of GPO 7 - Applies to: CoaXPress
  2451. Visibility: Expert
  2452. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutSelectGPO7" target="_blank">Basler Product Documentation</a> may provide more information.
  2453. */
  2454. Pylon::IEnumParameterT<TriggerOutSelectGPO7Enums>& TriggerOutSelectGPO7;
  2455. //@}
  2456. //! \name Categories: OutStatistics
  2457. //@{
  2458. /*!
  2459. \brief Number of output pulses - Applies to: CoaXPress
  2460. Visibility: Expert
  2461. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutStatisticsPulseCount" target="_blank">Basler Product Documentation</a> may provide more information.
  2462. */
  2463. Pylon::IIntegerEx& TriggerOutStatisticsPulseCount;
  2464. //@}
  2465. //! \name Categories: OutStatistics
  2466. //@{
  2467. /*!
  2468. \brief Clears the output signal pulse counter - Applies to: CoaXPress
  2469. Visibility: Expert
  2470. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutStatisticsPulseCountClear" target="_blank">Basler Product Documentation</a> may provide more information.
  2471. */
  2472. Pylon::ICommandEx& TriggerOutStatisticsPulseCountClear;
  2473. //@}
  2474. //! \name Categories: OutStatistics
  2475. //@{
  2476. /*!
  2477. \brief Sets the output source for statistics - Applies to: CoaXPress
  2478. Visibility: Expert
  2479. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutStatisticsSource" target="_blank">Basler Product Documentation</a> may provide more information.
  2480. */
  2481. Pylon::IEnumParameterT<TriggerOutStatisticsSourceEnums>& TriggerOutStatisticsSource;
  2482. //@}
  2483. //! \name Categories: Trigger
  2484. //@{
  2485. /*!
  2486. \brief Maximum trigger output frequency - Applies to: CoaXPress
  2487. Maximum trigger output frequency. If the internal generator is used, it will use the frequency specified there. If an external source is used, this value determines the maximum allowed value. External trigger signals exceeding this value will be discarded. For more information, see the applet documentation.
  2488. Visibility: Expert
  2489. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerOutputFrequency" target="_blank">Basler Product Documentation</a> may provide more information.
  2490. */
  2491. Pylon::IFloatEx& TriggerOutputFrequency;
  2492. //@}
  2493. //! \name Categories: PulseFormGenerator0
  2494. //@{
  2495. /*!
  2496. \brief Delay between the input and the output of the pulse form generator - Applies to: CoaXPress
  2497. Visibility: Expert
  2498. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator0Delay" target="_blank">Basler Product Documentation</a> may provide more information.
  2499. */
  2500. Pylon::IFloatEx& TriggerPulseFormGenerator0Delay;
  2501. //@}
  2502. //! \name Categories: PulseFormGenerator0
  2503. //@{
  2504. /*!
  2505. \brief Downscale factor at the pulse form generator input - Applies to: CoaXPress
  2506. Visibility: Expert
  2507. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator0Downscale" target="_blank">Basler Product Documentation</a> may provide more information.
  2508. */
  2509. Pylon::IIntegerEx& TriggerPulseFormGenerator0Downscale;
  2510. //@}
  2511. //! \name Categories: PulseFormGenerator0
  2512. //@{
  2513. /*!
  2514. \brief Phase for selecting the desired pulse in the sequence - Applies to: CoaXPress
  2515. Visibility: Expert
  2516. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator0DownscalePhase" target="_blank">Basler Product Documentation</a> may provide more information.
  2517. */
  2518. Pylon::IIntegerEx& TriggerPulseFormGenerator0DownscalePhase;
  2519. //@}
  2520. //! \name Categories: PulseFormGenerator0
  2521. //@{
  2522. /*!
  2523. \brief Width of the output signal - Applies to: CoaXPress
  2524. Visibility: Expert
  2525. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator0Width" target="_blank">Basler Product Documentation</a> may provide more information.
  2526. */
  2527. Pylon::IFloatEx& TriggerPulseFormGenerator0Width;
  2528. //@}
  2529. //! \name Categories: PulseFormGenerator1
  2530. //@{
  2531. /*!
  2532. \brief Delay between the input and the output of the pulse form generator - Applies to: CoaXPress
  2533. Visibility: Expert
  2534. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator1Delay" target="_blank">Basler Product Documentation</a> may provide more information.
  2535. */
  2536. Pylon::IFloatEx& TriggerPulseFormGenerator1Delay;
  2537. //@}
  2538. //! \name Categories: PulseFormGenerator1
  2539. //@{
  2540. /*!
  2541. \brief Downscale factor at the pulse form generator input - Applies to: CoaXPress
  2542. Visibility: Expert
  2543. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator1Downscale" target="_blank">Basler Product Documentation</a> may provide more information.
  2544. */
  2545. Pylon::IIntegerEx& TriggerPulseFormGenerator1Downscale;
  2546. //@}
  2547. //! \name Categories: PulseFormGenerator1
  2548. //@{
  2549. /*!
  2550. \brief Phase for selecting the desired pulse in the sequence - Applies to: CoaXPress
  2551. Visibility: Expert
  2552. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator1DownscalePhase" target="_blank">Basler Product Documentation</a> may provide more information.
  2553. */
  2554. Pylon::IIntegerEx& TriggerPulseFormGenerator1DownscalePhase;
  2555. //@}
  2556. //! \name Categories: PulseFormGenerator1
  2557. //@{
  2558. /*!
  2559. \brief Width of the output signal - Applies to: CoaXPress
  2560. Visibility: Expert
  2561. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator1Width" target="_blank">Basler Product Documentation</a> may provide more information.
  2562. */
  2563. Pylon::IFloatEx& TriggerPulseFormGenerator1Width;
  2564. //@}
  2565. //! \name Categories: PulseFormGenerator2
  2566. //@{
  2567. /*!
  2568. \brief Delay between the input and the output of the pulse form generator - Applies to: CoaXPress
  2569. Visibility: Expert
  2570. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator2Delay" target="_blank">Basler Product Documentation</a> may provide more information.
  2571. */
  2572. Pylon::IFloatEx& TriggerPulseFormGenerator2Delay;
  2573. //@}
  2574. //! \name Categories: PulseFormGenerator2
  2575. //@{
  2576. /*!
  2577. \brief Downscale factor at the pulse form generator input - Applies to: CoaXPress
  2578. Visibility: Expert
  2579. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator2Downscale" target="_blank">Basler Product Documentation</a> may provide more information.
  2580. */
  2581. Pylon::IIntegerEx& TriggerPulseFormGenerator2Downscale;
  2582. //@}
  2583. //! \name Categories: PulseFormGenerator2
  2584. //@{
  2585. /*!
  2586. \brief Phase for selecting the desired pulse in the sequence - Applies to: CoaXPress
  2587. Visibility: Expert
  2588. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator2DownscalePhase" target="_blank">Basler Product Documentation</a> may provide more information.
  2589. */
  2590. Pylon::IIntegerEx& TriggerPulseFormGenerator2DownscalePhase;
  2591. //@}
  2592. //! \name Categories: PulseFormGenerator2
  2593. //@{
  2594. /*!
  2595. \brief Width of the output signal - Applies to: CoaXPress
  2596. Visibility: Expert
  2597. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator2Width" target="_blank">Basler Product Documentation</a> may provide more information.
  2598. */
  2599. Pylon::IFloatEx& TriggerPulseFormGenerator2Width;
  2600. //@}
  2601. //! \name Categories: PulseFormGenerator3
  2602. //@{
  2603. /*!
  2604. \brief Delay between the input and the output of the pulse form generator - Applies to: CoaXPress
  2605. Visibility: Expert
  2606. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator3Delay" target="_blank">Basler Product Documentation</a> may provide more information.
  2607. */
  2608. Pylon::IFloatEx& TriggerPulseFormGenerator3Delay;
  2609. //@}
  2610. //! \name Categories: PulseFormGenerator3
  2611. //@{
  2612. /*!
  2613. \brief Downscale factor at the pulse form generator input - Applies to: CoaXPress
  2614. Visibility: Expert
  2615. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator3Downscale" target="_blank">Basler Product Documentation</a> may provide more information.
  2616. */
  2617. Pylon::IIntegerEx& TriggerPulseFormGenerator3Downscale;
  2618. //@}
  2619. //! \name Categories: PulseFormGenerator3
  2620. //@{
  2621. /*!
  2622. \brief Phase for selecting the desired pulse in the sequence - Applies to: CoaXPress
  2623. Visibility: Expert
  2624. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator3DownscalePhase" target="_blank">Basler Product Documentation</a> may provide more information.
  2625. */
  2626. Pylon::IIntegerEx& TriggerPulseFormGenerator3DownscalePhase;
  2627. //@}
  2628. //! \name Categories: PulseFormGenerator3
  2629. //@{
  2630. /*!
  2631. \brief Width of the output signal - Applies to: CoaXPress
  2632. Visibility: Expert
  2633. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerPulseFormGenerator3Width" target="_blank">Basler Product Documentation</a> may provide more information.
  2634. */
  2635. Pylon::IFloatEx& TriggerPulseFormGenerator3Width;
  2636. //@}
  2637. //! \name Categories: Queue
  2638. //@{
  2639. /*!
  2640. \brief Fill level of the trigger queue - Applies to: CoaXPress
  2641. Visibility: Expert
  2642. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerQueueFillLevel" target="_blank">Basler Product Documentation</a> may provide more information.
  2643. */
  2644. Pylon::IIntegerEx& TriggerQueueFillLevel;
  2645. //@}
  2646. //! \name Categories: Queue
  2647. //@{
  2648. /*!
  2649. \brief Enables/disable the trigger queue mode - Applies to: CoaXPress
  2650. Enables/disable the trigger queue mode. The maximum output frequency is specified by the Trigger Output Frequency parameter.
  2651. Visibility: Expert
  2652. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerQueueMode" target="_blank">Basler Product Documentation</a> may provide more information.
  2653. */
  2654. Pylon::IEnumParameterT<TriggerQueueModeEnums>& TriggerQueueMode;
  2655. //@}
  2656. //! \name Categories: Trigger
  2657. //@{
  2658. /*!
  2659. \brief Sets the state of the trigger system - Applies to: CoaXPress
  2660. Sets the state of the trigger system. The state of the trigger system is related to the trigger mode. This parameter enables or disables the trigger processing.
  2661. Visibility: Expert
  2662. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerState" target="_blank">Basler Product Documentation</a> may provide more information.
  2663. */
  2664. Pylon::IEnumParameterT<TriggerStateEnums>& TriggerState;
  2665. //@}
  2666. //! \name Categories: CoaXPress
  2667. //@{
  2668. /*!
  2669. \brief Indicates a trigger frequency violation - Applies to: CoaXPress
  2670. Indicates a distance of two trigger edges violating the minimum edge frequency.
  2671. Visibility: Expert
  2672. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=TriggerWaveViolation" target="_blank">Basler Product Documentation</a> may provide more information.
  2673. */
  2674. Pylon::IIntegerEx& TriggerWaveViolation;
  2675. //@}
  2676. //! \name Categories: CoaXPress
  2677. //@{
  2678. /*!
  2679. \brief Number of uncorrected errors - Applies to: CoaXPress
  2680. Number of uncorrected errors. Bit[2] indicates multiple byte errors in CXP stream packets.
  2681. Visibility: Expert
  2682. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=UncorrectedErrorCount" target="_blank">Basler Product Documentation</a> may provide more information.
  2683. */
  2684. Pylon::IIntegerEx& UncorrectedErrorCount;
  2685. //@}
  2686. //! \name Categories: ROI
  2687. //@{
  2688. /*!
  2689. \brief Width of the image ROI on the host side - Applies to: CoaXPress
  2690. Width of the image ROI on the host side. This parameter is linked with the Width camera parameter. If the camera parameter changes, the host parameter changes accordingly, but not vice versa. The host parameter should not be set to a value different from the camera parameter.
  2691. Visibility: Expert
  2692. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=Width" target="_blank">Basler Product Documentation</a> may provide more information.
  2693. */
  2694. Pylon::IIntegerEx& Width;
  2695. //@}
  2696. //! \name Categories: Root
  2697. //@{
  2698. /*!
  2699. \brief Write access timeout in milliseconds - Applies to: GigE
  2700. Visibility: Beginner
  2701. The <a href="https://docs.baslerweb.com/?rhcsh=1&rhmapid=WriteTimeout" target="_blank">Basler Product Documentation</a> may provide more information.
  2702. */
  2703. Pylon::IIntegerEx& WriteTimeout;
  2704. //@}
  2705. private:
  2706. //! \cond HIDE_CLASS_METHODS
  2707. //! not implemented copy constructor
  2708. CUniversalTLParams_Params_v6_3_0(CUniversalTLParams_Params_v6_3_0&);
  2709. //! not implemented assignment operator
  2710. CUniversalTLParams_Params_v6_3_0& operator=(CUniversalTLParams_Params_v6_3_0&);
  2711. //! \endcond
  2712. };
  2713. /*!
  2714. \brief A parameter class containing all parameters as members that are available for pylon device transport layers
  2715. The parameter class is used by the \c Pylon::CBaslerUniversalInstantCamera class.
  2716. The \ref sample_ParametrizeCamera_NativeParameterAccess code sample shows how to access camera parameters via the \c Pylon::CBaslerUniversalInstantCamera class.
  2717. */
  2718. class CUniversalTLParams_Params : public CUniversalTLParams_Params_v6_3_0
  2719. {
  2720. //----------------------------------------------------------------------------------------------------------------
  2721. // Implementation
  2722. //----------------------------------------------------------------------------------------------------------------
  2723. protected:
  2724. // If you want to show the following methods in the help file
  2725. // add the string HIDE_CLASS_METHODS to the ENABLED_SECTIONS tag in the doxygen file
  2726. //! \cond HIDE_CLASS_METHODS
  2727. //! Constructor
  2728. CUniversalTLParams_Params( void )
  2729. {
  2730. }
  2731. //! Destructor
  2732. ~CUniversalTLParams_Params( void )
  2733. {
  2734. }
  2735. //! Initializes the references
  2736. void _Initialize( GENAPI_NAMESPACE::INodeMap* pNodeMap )
  2737. {
  2738. CUniversalTLParams_Params_v6_3_0::_Initialize( pNodeMap );
  2739. }
  2740. //! \endcond
  2741. };
  2742. } // namespace Basler_UniversalTLParams
  2743. #endif // BASLER_PYLON_UNIVERSALTLPARAMS_H