10 #if ( defined( __STDC_VERSION__ ) && __STDC_VERSION__ >= 199901L ) || ( defined( __GNUC__ ) && defined( __cplusplus ) ) 12 #elif defined( INCLUDED_BY_MATLAB ) // MathWorks Matlab, see libtiepiematlab.h 16 typedef INT8_T int8_t;
17 typedef INT16_T int16_t;
18 typedef INT32_T int32_t;
19 typedef INT64_T int64_t;
21 typedef UINT8_T uint8_t;
22 typedef UINT16_T uint16_t;
23 typedef UINT32_T uint32_t;
24 typedef UINT64_T uint64_t;
25 #elif defined( _CVI_ ) || defined( LIBTIEPIE_LABVIEW ) // National Instruments LabWindows/CVI/LabView 26 #ifdef _CVI_C99_EXTENSIONS_ 31 typedef short int16_t;
33 typedef __int64 int64_t;
35 typedef unsigned char uint8_t;
36 typedef unsigned short uint16_t;
37 typedef unsigned int uint32_t;
38 typedef unsigned __int64 uint64_t;
40 #elif defined( _MSC_VER ) 43 #error "C99 stdint types not defined!" 47 #if defined( _WIN32 ) || defined( _WIN64 ) || defined( __WIN32__ ) || defined( __TOS_WIN__ ) || defined( __WINDOWS__ ) 48 #define LIBTIEPIE_WINDOWS 50 #elif defined( __linux__ ) || defined( _NI_linux_ ) 51 #define LIBTIEPIE_LINUX 59 #define LIBTIEPIE_VERSION_MAJOR 0 60 #define LIBTIEPIE_VERSION_MINOR 7 61 #define LIBTIEPIE_VERSION_RELEASE 1 62 #define LIBTIEPIE_VERSION_NUMBER "0.7.1" 63 #define LIBTIEPIE_VERSION "0.7.1" 64 #define LIBTIEPIE_REVISION 12259 416 #define LIBTIEPIE_HANDLE_INVALID 0 417 #define TPDEVICEHANDLE_INVALID LIBTIEPIE_HANDLE_INVALID 425 #define LIBTIEPIE_INTERFACE_DEVICE 0x0000000000000001 426 #define LIBTIEPIE_INTERFACE_OSCILLOSCOPE 0x0000000000000002 427 #define LIBTIEPIE_INTERFACE_GENERATOR 0x0000000000000004 428 #define LIBTIEPIE_INTERFACE_I2CHOST 0x0000000000000008 436 #define DEVICETYPE_OSCILLOSCOPE 0x00000001 437 #define DEVICETYPE_GENERATOR 0x00000002 438 #define DEVICETYPE_I2CHOST 0x00000004 440 #define DEVICETYPE_COUNT 3 448 #define IDKIND_PRODUCTID 0x00000001 449 #define IDKIND_INDEX 0x00000002 450 #define IDKIND_SERIALNUMBER 0x00000004 452 #define IDKIND_COUNT 3 466 #define LIBTIEPIESTATUS_SUCCESS 0 467 #define LIBTIEPIESTATUS_VALUE_CLIPPED 1 468 #define LIBTIEPIESTATUS_VALUE_MODIFIED 2 469 #define LIBTIEPIESTATUS_UNSUCCESSFUL -1 470 #define LIBTIEPIESTATUS_NOT_SUPPORTED -2 471 #define LIBTIEPIESTATUS_INVALID_HANDLE -3 472 #define LIBTIEPIESTATUS_INVALID_VALUE -4 473 #define LIBTIEPIESTATUS_INVALID_CHANNEL -5 474 #define LIBTIEPIESTATUS_INVALID_TRIGGER_SOURCE -6 475 #define LIBTIEPIESTATUS_INVALID_DEVICE_TYPE -7 476 #define LIBTIEPIESTATUS_INVALID_DEVICE_INDEX -8 477 #define LIBTIEPIESTATUS_INVALID_PRODUCT_ID -9 478 #define LIBTIEPIESTATUS_INVALID_DEVICE_SERIALNUMBER -10 479 #define LIBTIEPIESTATUS_OBJECT_GONE -11 480 #define LIBTIEPIESTATUS_DEVICE_GONE LIBTIEPIESTATUS_OBJECT_GONE 481 #define LIBTIEPIESTATUS_INTERNAL_ADDRESS -12 482 #define LIBTIEPIESTATUS_NOT_CONTROLLABLE -13 483 #define LIBTIEPIESTATUS_BIT_ERROR -14 484 #define LIBTIEPIESTATUS_NO_ACKNOWLEDGE -15 485 #define LIBTIEPIESTATUS_INVALID_CONTAINED_DEVICE_SERIALNUMBER -16 486 #define LIBTIEPIESTATUS_INVALID_INPUT -17 487 #define LIBTIEPIESTATUS_INVALID_OUTPUT -18 488 #define LIBTIEPIESTATUS_INVALID_DRIVER -19 489 #define LIBTIEPIESTATUS_NOT_AVAILABLE -20 490 #define LIBTIEPIESTATUS_INVALID_FIRMWARE -21 491 #define LIBTIEPIESTATUS_INVALID_INDEX -22 492 #define LIBTIEPIESTATUS_INVALID_EEPROM -23 493 #define LIBTIEPIESTATUS_INITIALIZATION_FAILED -24 494 #define LIBTIEPIESTATUS_LIBRARY_NOT_INITIALIZED -25 495 #define LIBTIEPIESTATUS_NO_TRIGGER_ENABLED -26 496 #define LIBTIEPIESTATUS_SYNCHRONIZATION_FAILED -29 497 #define LIBTIEPIESTATUS_INVALID_HS56_COMBINED_DEVICE -30 498 #define LIBTIEPIESTATUS_MEASUREMENT_RUNNING -31 506 #define CONNECTORTYPE_UNKNOWN 0x00000000 508 #define CONNECTORTYPE_BNC 0x00000001 509 #define CONNECTORTYPE_BANANA 0x00000002 510 #define CONNECTORTYPE_POWERPLUG 0x00000004 512 #define CONNECTORTYPE_COUNT 3 519 #define CONNECTORTYPE_MASK ( CONNECTORTYPE_BNC | CONNECTORTYPE_BANANA | CONNECTORTYPE_POWERPLUG ) 528 #define DATARAWTYPE_UNKNOWN 0x00000000 530 #define DATARAWTYPE_INT8 0x00000001 531 #define DATARAWTYPE_INT16 0x00000002 532 #define DATARAWTYPE_INT32 0x00000004 533 #define DATARAWTYPE_INT64 0x00000008 535 #define DATARAWTYPE_UINT8 0x00000010 536 #define DATARAWTYPE_UINT16 0x00000020 537 #define DATARAWTYPE_UINT32 0x00000040 538 #define DATARAWTYPE_UINT64 0x00000080 540 #define DATARAWTYPE_FLOAT32 0x00000100 541 #define DATARAWTYPE_FLOAT64 0x00000200 543 #define DATARAWTYPE_COUNT 10 550 #define DATARAWTYPE_MASK_INT ( DATARAWTYPE_INT8 | DATARAWTYPE_INT16 | DATARAWTYPE_INT32 | DATARAWTYPE_INT64 ) 551 #define DATARAWTYPE_MASK_UINT ( DATARAWTYPE_UINT8 | DATARAWTYPE_UINT16 | DATARAWTYPE_UINT32 | DATARAWTYPE_UINT64 ) 552 #define DATARAWTYPE_MASK_FLOAT ( DATARAWTYPE_FLOAT32 | DATARAWTYPE_FLOAT64 ) 553 #define DATARAWTYPE_MASK_FIXED ( DATARAWTYPE_MASK_INT | DATARAWTYPE_MASK_UINT ) 562 #define BOOL8_FALSE 0 571 #define LIBTIEPIE_TRISTATE_UNDEFINED 0 572 #define LIBTIEPIE_TRISTATE_FALSE 1 573 #define LIBTIEPIE_TRISTATE_TRUE 2 581 #define LIBTIEPIE_TRIGGERIO_INDEX_INVALID 0xffff 589 #define LIBTIEPIE_STRING_LENGTH_NULL_TERMINATED 0xffffffff 602 #define LIBTIEPIE_RANGEINDEX_AUTO 0xffffffff 615 #define LIBTIEPIE_POINTER_ARRAY_MAX_LENGTH 256 630 #define ARB_DISABLED 0 631 #define ARB_NATIVEONLY 1 640 #define AR_DISABLED ( 1 << ARB_DISABLED ) 641 #define AR_NATIVEONLY ( 1 << ARB_NATIVEONLY ) 642 #define AR_ALL ( 1 << ARB_ALL ) 650 #define ARM_ALL ( ( 1 << ARN_COUNT ) - 1 ) 651 #define ARM_ENABLED ( ARM_ALL & ~AR_DISABLED ) 679 #define CK_DCV ( 1 << CKB_DCV ) 680 #define CK_ACV ( 1 << CKB_ACV ) 681 #define CK_DCA ( 1 << CKB_DCA ) 682 #define CK_ACA ( 1 << CKB_ACA ) 683 #define CK_OHM ( 1 << CKB_OHM ) 691 #define CKM_V ( CK_DCV | CK_ACV ) 692 #define CKM_A ( CK_DCA | CK_ACA ) 693 #define CKM_OHM ( CK_OHM ) 695 #define CKM_ASYMMETRICRANGE ( CKM_OHM ) 696 #define CKM_SYMMETRICRANGE ( CKM_V | CKM_A ) 712 #define COB_DISABLED 0 720 #define CO_DISABLED ( 1 << COB_DISABLED ) 721 #define CO_SAMPLE ( 1 << COB_SAMPLE ) 722 #define CO_FIXED ( 1 << COB_FIXED ) 730 #define COM_ALL ( ( 1 << CON_COUNT ) - 1 ) 731 #define COM_ENABLED ( COM_ALL & ~CO_DISABLED ) 732 #define COM_FREQUENCY ( CO_FIXED ) 748 #define CSB_EXTERNAL 0 749 #define CSB_INTERNAL 1 755 #define CS_EXTERNAL ( 1 << CSB_EXTERNAL ) 756 #define CS_INTERNAL ( 1 << CSB_INTERNAL ) 764 #define CSM_ALL ( ( 1 << CSN_COUNT ) - 1 ) 765 #define CSM_FREQUENCY ( CS_EXTERNAL ) 781 #define FMB_SIGNALFREQUENCY 0 782 #define FMB_SAMPLEFREQUENCY 1 788 #define FM_UNKNOWN 0x00000000 790 #define FM_SIGNALFREQUENCY ( 1 << FMB_SIGNALFREQUENCY ) 791 #define FM_SAMPLEFREQUENCY ( 1 << FMB_SAMPLEFREQUENCY ) 798 #define FMM_NONE 0x00000000 799 #define FMM_ALL ( ( 1 << FMN_COUNT ) - 1 ) 815 #define GMB_CONTINUOUS 0 816 #define GMB_BURST_COUNT 1 817 #define GMB_GATED_PERIODS 2 819 #define GMB_GATED_PERIOD_START 4 820 #define GMB_GATED_PERIOD_FINISH 5 821 #define GMB_GATED_RUN 6 822 #define GMB_GATED_RUN_OUTPUT 7 823 #define GMB_BURST_SAMPLE_COUNT 8 824 #define GMB_BURST_SAMPLE_COUNT_OUTPUT 9 825 #define GMB_BURST_SEGMENT_COUNT 10 826 #define GMB_BURST_SEGMENT_COUNT_OUTPUT 11 834 #define GM_CONTINUOUS ( 1 << GMB_CONTINUOUS ) 835 #define GM_BURST_COUNT ( 1 << GMB_BURST_COUNT ) 836 #define GM_GATED_PERIODS ( 1 << GMB_GATED_PERIODS ) 837 #define GM_GATED ( 1 << GMB_GATED ) 838 #define GM_GATED_PERIOD_START ( 1 << GMB_GATED_PERIOD_START ) 839 #define GM_GATED_PERIOD_FINISH ( 1 << GMB_GATED_PERIOD_FINISH ) 840 #define GM_GATED_RUN ( 1 << GMB_GATED_RUN ) 841 #define GM_GATED_RUN_OUTPUT ( 1 << GMB_GATED_RUN_OUTPUT ) 842 #define GM_BURST_SAMPLE_COUNT ( 1 << GMB_BURST_SAMPLE_COUNT ) 843 #define GM_BURST_SAMPLE_COUNT_OUTPUT ( 1 << GMB_BURST_SAMPLE_COUNT_OUTPUT ) 844 #define GM_BURST_SEGMENT_COUNT ( 1 << GMB_BURST_SEGMENT_COUNT ) 845 #define GM_BURST_SEGMENT_COUNT_OUTPUT ( 1 << GMB_BURST_SEGMENT_COUNT_OUTPUT ) 853 #define GMM_BURST_COUNT ( GM_BURST_COUNT ) 854 #define GMM_GATED ( GM_GATED_PERIODS | GM_GATED | GM_GATED_PERIOD_START | GM_GATED_PERIOD_FINISH | GM_GATED_RUN | GM_GATED_RUN_OUTPUT ) 855 #define GMM_BURST_SAMPLE_COUNT ( GM_BURST_SAMPLE_COUNT | GM_BURST_SAMPLE_COUNT_OUTPUT ) 856 #define GMM_BURST_SEGMENT_COUNT ( GM_BURST_SEGMENT_COUNT | GM_BURST_SEGMENT_COUNT_OUTPUT ) 857 #define GMM_BURST ( GMM_BURST_COUNT | GMM_BURST_SAMPLE_COUNT | GMM_BURST_SEGMENT_COUNT ) 858 #define GMM_REQUIRE_TRIGGER ( GMM_GATED | GMM_BURST_SAMPLE_COUNT | GMM_BURST_SEGMENT_COUNT ) 859 #define GMM_ALL ( ( 1ULL << GMN_COUNT ) - 1 ) 861 #define GMM_SIGNALFREQUENCY ( GMM_ALL & ~GMM_BURST_SAMPLE_COUNT ) 862 #define GMM_SAMPLEFREQUENCY ( GMM_ALL ) 864 #define GMM_SINE ( GMM_SIGNALFREQUENCY ) 865 #define GMM_TRIANGLE ( GMM_SIGNALFREQUENCY ) 866 #define GMM_SQUARE ( GMM_SIGNALFREQUENCY ) 867 #define GMM_DC ( GM_CONTINUOUS ) 868 #define GMM_NOISE ( GM_CONTINUOUS | GM_GATED ) 869 #define GMM_ARBITRARY ( GMM_SIGNALFREQUENCY | GMM_SAMPLEFREQUENCY ) 870 #define GMM_PULSE ( GMM_SIGNALFREQUENCY & ~GMM_BURST_SEGMENT_COUNT ) 888 #define GSB_STOPPED 0 889 #define GSB_RUNNING 1 890 #define GSB_BURSTACTIVE 2 891 #define GSB_WAITING 3 897 #define GS_STOPPED ( 1 << GSB_STOPPED ) 898 #define GS_RUNNING ( 1 << GSB_RUNNING ) 899 #define GS_BURSTACTIVE ( 1 << GSB_BURSTACTIVE ) 900 #define GS_WAITING ( 1 << GSB_WAITING ) 908 #define GSM_ALL ( ( 1UL << GSN_COUNT ) - 1 ) 934 #define MMM_ALL ( ( 1 << MMN_COUNT ) - 1 ) 942 #define MM_STREAM ( 1 << MMB_STREAM ) 943 #define MM_BLOCK ( 1 << MMB_BLOCK ) 959 #define STB_TRIANGLE 1 963 #define STB_ARBITRARY 5 972 #define ST_SINE ( 1 << STB_SINE ) 973 #define ST_TRIANGLE ( 1 << STB_TRIANGLE ) 974 #define ST_SQUARE ( 1 << STB_SQUARE ) 975 #define ST_DC ( 1 << STB_DC ) 976 #define ST_NOISE ( 1 << STB_NOISE ) 977 #define ST_ARBITRARY ( 1 << STB_ARBITRARY ) 978 #define ST_PULSE ( 1 << STB_PULSE ) 987 #define STM_AMPLITUDE ( ST_SINE | ST_TRIANGLE | ST_SQUARE | ST_NOISE | ST_ARBITRARY | ST_PULSE ) 988 #define STM_OFFSET ( ST_SINE | ST_TRIANGLE | ST_SQUARE | ST_DC | ST_NOISE | ST_ARBITRARY | ST_PULSE ) 989 #define STM_FREQUENCY ( ST_SINE | ST_TRIANGLE | ST_SQUARE | ST_NOISE | ST_ARBITRARY | ST_PULSE ) 990 #define STM_PHASE ( ST_SINE | ST_TRIANGLE | ST_SQUARE | ST_ARBITRARY | ST_PULSE ) 991 #define STM_SYMMETRY ( ST_SINE | ST_TRIANGLE | ST_SQUARE ) 992 #define STM_WIDTH ( ST_PULSE ) 993 #define STM_LEADINGEDGETIME ( ST_PULSE ) 994 #define STM_TRAILINGEDGETIME ( ST_PULSE ) 995 #define STM_DATALENGTH ( ST_ARBITRARY ) 996 #define STM_DATA ( ST_ARBITRARY ) 998 #define STM_EDGETIME ( STM_LEADINGEDGETIME & STM_TRAILINGEDGETIME ) 1015 #define TCB_SMALLER 1 1016 #define TCB_LARGER 2 1017 #define TCB_INSIDE 3 1018 #define TCB_OUTSIDE 4 1024 #define TC_UNKNOWN 0 1026 #define TC_NONE ( 1 << TCB_NONE ) 1027 #define TC_SMALLER ( 1 << TCB_SMALLER ) 1028 #define TC_LARGER ( 1 << TCB_LARGER ) 1029 #define TC_INSIDE ( 1 << TCB_INSIDE ) 1030 #define TC_OUTSIDE ( 1 << TCB_OUTSIDE ) 1038 #define TCM_ALL ( ( 1 << TCN_COUNT ) - 1 ) 1039 #define TCM_ENABLED ( TCM_ALL & ~TC_NONE ) 1048 #define TH_ALLPRESAMPLES 0xffffffffffffffffULL 1059 #define DN_SUB_FIRST 1 1060 #define DN_SUB_SECOND 2 1068 #define PGID_OSCILLOSCOPE 1 1069 #define PGID_GENERATOR 2 1070 #define PGID_EXTERNAL_DSUB 3 1081 #define SGID_CHANNEL1 1 1082 #define SGID_CHANNEL2 2 1103 #define FID_SCP_TRIGGERED 0 1111 #define FID_GEN_START 0 1112 #define FID_GEN_STOP 1 1113 #define FID_GEN_NEW_PERIOD 2 1121 #define FID_EXT_TRIGGERED 0 1130 #define TIOID_SHIFT_PGID 20 1131 #define TIOID_SHIFT_DN 24 1132 #define TIOID_SHIFT_SGID 8 1133 #define TIOID_SHIFT_FID 0 1141 #define TIID_INVALID 0 1142 #define TIID_EXT1 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN1 , FID_EXT_TRIGGERED ) 1143 #define TIID_EXT2 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN2 , FID_EXT_TRIGGERED ) 1144 #define TIID_EXT3 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN3 , FID_EXT_TRIGGERED ) 1145 #define TIID_GENERATOR_START TRIGGER_IO_ID( PGID_GENERATOR , SGID_MAIN , FID_GEN_START ) 1146 #define TIID_GENERATOR_STOP TRIGGER_IO_ID( PGID_GENERATOR , SGID_MAIN , FID_GEN_STOP ) 1147 #define TIID_GENERATOR_NEW_PERIOD TRIGGER_IO_ID( PGID_GENERATOR , SGID_MAIN , FID_GEN_NEW_PERIOD ) 1155 #define TOID_INVALID 0 1156 #define TOID_EXT1 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN1 , FID_EXT_TRIGGERED ) 1157 #define TOID_EXT2 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN2 , FID_EXT_TRIGGERED ) 1158 #define TOID_EXT3 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN3 , FID_EXT_TRIGGERED ) 1167 #define TKN_COUNT 13 1174 #define TKB_RISINGEDGE 0 1175 #define TKB_FALLINGEDGE 1 1176 #define TKB_INWINDOW 2 1177 #define TKB_OUTWINDOW 3 1178 #define TKB_ANYEDGE 4 1179 #define TKB_ENTERWINDOW 5 1180 #define TKB_EXITWINDOW 6 1181 #define TKB_PULSEWIDTHPOSITIVE 7 1182 #define TKB_PULSEWIDTHNEGATIVE 8 1183 #define TKB_PULSEWIDTHEITHER 9 1184 #define TKB_RUNTPULSEPOSITIVE 10 1185 #define TKB_RUNTPULSENEGATIVE 11 1186 #define TKB_RUNTPULSEEITHER 12 1192 #define TK_UNKNOWN 0 1193 #define TK_RISINGEDGE ( 1ULL << TKB_RISINGEDGE ) 1194 #define TK_FALLINGEDGE ( 1ULL << TKB_FALLINGEDGE ) 1195 #define TK_INWINDOW ( 1ULL << TKB_INWINDOW ) 1196 #define TK_OUTWINDOW ( 1ULL << TKB_OUTWINDOW ) 1197 #define TK_ANYEDGE ( 1ULL << TKB_ANYEDGE ) 1198 #define TK_ENTERWINDOW ( 1ULL << TKB_ENTERWINDOW ) 1199 #define TK_EXITWINDOW ( 1ULL << TKB_EXITWINDOW ) 1200 #define TK_PULSEWIDTHPOSITIVE ( 1ULL << TKB_PULSEWIDTHPOSITIVE ) 1201 #define TK_PULSEWIDTHNEGATIVE ( 1ULL << TKB_PULSEWIDTHNEGATIVE ) 1202 #define TK_PULSEWIDTHEITHER ( 1ULL << TKB_PULSEWIDTHEITHER ) 1203 #define TK_RUNTPULSEPOSITIVE ( 1ULL << TKB_RUNTPULSEPOSITIVE ) 1204 #define TK_RUNTPULSENEGATIVE ( 1ULL << TKB_RUNTPULSENEGATIVE ) 1205 #define TK_RUNTPULSEEITHER ( 1ULL << TKB_RUNTPULSEEITHER ) 1213 #define TKM_EDGE ( TK_RISINGEDGE | TK_FALLINGEDGE | TK_ANYEDGE ) 1214 #define TKM_WINDOW ( TK_INWINDOW | TK_OUTWINDOW | TK_ENTERWINDOW | TK_EXITWINDOW ) 1215 #define TKM_PULSEWIDTH ( TK_PULSEWIDTHPOSITIVE | TK_PULSEWIDTHNEGATIVE | TK_PULSEWIDTHEITHER ) 1216 #define TKM_RUNTPULSE ( TK_RUNTPULSEPOSITIVE | TK_RUNTPULSENEGATIVE | TK_RUNTPULSEEITHER ) 1217 #define TKM_PULSE ( TKM_PULSEWIDTH | TKM_RUNTPULSE ) 1218 #define TKM_TIME ( TKM_PULSEWIDTH | TKM_WINDOW ) 1219 #define TKM_ALL ( ( 1ULL << TKN_COUNT ) - 1 ) 1228 #define TLMN_COUNT 2 1235 #define TLMB_RELATIVE 0 1236 #define TLMB_ABSOLUTE 1 1242 #define TLM_UNKNOWN 0 1244 #define TLM_RELATIVE ( 1 << TLMB_RELATIVE ) 1245 #define TLM_ABSOLUTE ( 1 << TLMB_ABSOLUTE ) 1253 #define TLMM_ALL ( ( 1 << TLMN_COUNT ) - 1 ) 1262 #define TO_INFINITY -1 1270 #define TOEN_COUNT 6 1277 #define TOEB_GENERATOR_START 0 1278 #define TOEB_GENERATOR_STOP 1 1279 #define TOEB_GENERATOR_NEWPERIOD 2 1280 #define TOEB_OSCILLOSCOPE_RUNNING 3 1281 #define TOEB_OSCILLOSCOPE_TRIGGERED 4 1282 #define TOEB_MANUAL 5 1288 #define TOE_UNKNOWN 0 1289 #define TOE_GENERATOR_START ( 1 << TOEB_GENERATOR_START ) 1290 #define TOE_GENERATOR_STOP ( 1 << TOEB_GENERATOR_STOP ) 1291 #define TOE_GENERATOR_NEWPERIOD ( 1 << TOEB_GENERATOR_NEWPERIOD ) 1292 #define TOE_OSCILLOSCOPE_RUNNING ( 1 << TOEB_OSCILLOSCOPE_RUNNING ) 1293 #define TOE_OSCILLOSCOPE_TRIGGERED ( 1 << TOEB_OSCILLOSCOPE_TRIGGERED ) 1294 #define TOE_MANUAL ( 1 << TOEB_MANUAL ) 1302 #define TOEM_GENERATOR ( TOE_GENERATOR_START | TOE_GENERATOR_STOP | TOE_GENERATOR_NEWPERIOD ) 1303 #define TOEM_OSCILLOSCOPE ( TOE_OSCILLOSCOPE_RUNNING | TOE_OSCILLOSCOPE_TRIGGERED ) 1304 #define TOEM_ALL ( ( 1ULL << TOEN_COUNT ) - 1 ) 1319 #define PID_TP450 19 1323 #define PID_ATS610004D 31 1324 #define PID_ATS605004D 32 1335 #define LIBTIEPIE_EVENTID_INVALID 0 1336 #define LIBTIEPIE_EVENTID_OBJ_REMOVED 1 1337 #define LIBTIEPIE_EVENTID_SCP_DATAREADY 2 1338 #define LIBTIEPIE_EVENTID_SCP_DATAOVERFLOW 3 1339 #define LIBTIEPIE_EVENTID_SCP_CONNECTIONTESTCOMPLETED 4 1340 #define LIBTIEPIE_EVENTID_SCP_TRIGGERED 5 1341 #define LIBTIEPIE_EVENTID_GEN_BURSTCOMPLETED 6 1342 #define LIBTIEPIE_EVENTID_GEN_CONTROLLABLECHANGED 7 1343 #define LIBTIEPIE_EVENTID_SRV_STATUSCHANGED 8 1344 #define LIBTIEPIE_EVENTID_SCP_SAFEGROUNDERROR 9 1347 #define LIBTIEPIE_EVENTID_SCP_GETDATAASYNCCOMPLETED 10 1358 typedef int32_t LibTiePieStatus_t; 1359 typedef uint32_t LibTiePieHandle_t; 1360 typedef LibTiePieHandle_t TpDeviceHandle_t; 1417 #ifdef INCLUDED_BY_MATLAB 1423 typedef void(*TpCallback_t)(
void* pData );
1424 typedef void(*TpCallbackDeviceList_t)(
void* pData , uint32_t dwDeviceTypes , uint32_t dwSerialNumber );
1426 typedef void(*TpCallbackEvent_t)(
void* pData , uint32_t dwEvent , uint32_t dwValue );
1435 #define TPVERSION_MAJOR( x ) ( x >> 48 ) 1436 #define TPVERSION_MINOR( x ) ( ( x >> 32 ) & 0xffff ) 1437 #define TPVERSION_RELEASE( x ) ( ( x >> 16 ) & 0xffff ) 1438 #define TPVERSION_BUILD( x ) ( x & 0xffff ) 1440 #define TPDATE_YEAR( x ) ( x >> 16 ) 1441 #define TPDATE_MONTH( x ) ( ( x >> 8 ) & 0xff ) 1442 #define TPDATE_DAY( x ) ( x & 0xff ) 1444 #define TRIGGER_IO_ID( pgid , sgid , fid ) ( ( DN_MAIN << TIOID_SHIFT_DN ) | ( ( pgid ) << TIOID_SHIFT_PGID ) | ( ( sgid ) << TIOID_SHIFT_SGID ) | ( ( fid ) << TIOID_SHIFT_FID ) ) 1446 #define COMBI_TRIGGER_IO_ID( dn , tiid ) ( ( ( dn ) << TIOID_SHIFT_DN ) | ( ( tiid ) & ( ( 1 << TIOID_SHIFT_DN ) - 1 ) ) ) 1452 #ifdef LIBTIEPIE_WINDOWS 1459 #define WM_LIBTIEPIE ( WM_USER + 1337 ) 1461 #define WM_LIBTIEPIE_LST_DEVICEADDED ( WM_LIBTIEPIE + 2 ) 1462 #define WM_LIBTIEPIE_LST_DEVICEREMOVED ( WM_LIBTIEPIE + 3 ) 1463 #define WM_LIBTIEPIE_LST_DEVICECANOPENCHANGED ( WM_LIBTIEPIE + 9 ) 1465 #define WM_LIBTIEPIE_DEV_REMOVED ( WM_LIBTIEPIE + 4 ) 1467 #define WM_LIBTIEPIE_SCP_DATAREADY ( WM_LIBTIEPIE + 0 ) 1468 #define WM_LIBTIEPIE_SCP_DATAOVERFLOW ( WM_LIBTIEPIE + 1 ) 1469 #define WM_LIBTIEPIE_SCP_CONNECTIONTESTCOMPLETED ( WM_LIBTIEPIE + 7 ) 1470 #define WM_LIBTIEPIE_SCP_TRIGGERED ( WM_LIBTIEPIE + 8 ) 1472 #define WM_LIBTIEPIE_GEN_BURSTCOMPLETED ( WM_LIBTIEPIE + 5 ) 1473 #define WM_LIBTIEPIE_GEN_CONTROLLABLECHANGED ( WM_LIBTIEPIE + 6 ) 1475 #define WM_LIBTIEPIE_EVENT ( WM_LIBTIEPIE + 10 ) 1518 #ifdef LIBTIEPIE_DYNAMIC 1519 typedef void(*LibTiePieLibInit_t)( void );
1534 #ifdef LIBTIEPIE_DYNAMIC 1535 typedef bool8_t(*LibTiePieLibIsInitialized_t)( void );
1551 #ifdef LIBTIEPIE_DYNAMIC 1552 typedef void(*LibTiePieLibExit_t)( void );
1577 #ifdef LIBTIEPIE_DYNAMIC 1578 typedef TpVersion_t(*LibTiePieLibGetVersion_t)( void );
1593 #ifdef LIBTIEPIE_DYNAMIC 1594 typedef const char*(*LibTiePieLibGetVersionExtra_t)( void );
1623 #ifdef LIBTIEPIE_DYNAMIC 1624 typedef uint32_t(*LibTiePieLibGetConfig_t)( uint8_t* pBuffer , uint32_t dwBufferLength );
1626 uint32_t
LibGetConfig( uint8_t* pBuffer , uint32_t dwBufferLength );
1646 #ifdef LIBTIEPIE_DYNAMIC 1669 #ifdef LIBTIEPIE_DYNAMIC 1670 typedef const char*(*LibTiePieLibGetLastStatusStr_t)( void );
1785 #ifdef LIBTIEPIE_DYNAMIC 1786 typedef void(*LibTiePieLstUpdate_t)( void );
1802 #ifdef LIBTIEPIE_DYNAMIC 1803 typedef uint32_t(*LibTiePieLstGetCount_t)( void );
1847 #ifdef LIBTIEPIE_DYNAMIC 1848 typedef LibTiePieHandle_t(*LibTiePieLstOpenDevice_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwDeviceType );
1890 #ifdef LIBTIEPIE_DYNAMIC 1891 typedef LibTiePieHandle_t(*LibTiePieLstOpenOscilloscope_t)( uint32_t dwIdKind , uint32_t dwId );
1933 #ifdef LIBTIEPIE_DYNAMIC 1934 typedef LibTiePieHandle_t(*LibTiePieLstOpenGenerator_t)( uint32_t dwIdKind , uint32_t dwId );
1976 #ifdef LIBTIEPIE_DYNAMIC 1977 typedef LibTiePieHandle_t(*LibTiePieLstOpenI2CHost_t)( uint32_t dwIdKind , uint32_t dwId );
2002 #ifdef LIBTIEPIE_DYNAMIC 2003 typedef uint32_t(*LibTiePieLstCreateCombinedDevice_t)(
const LibTiePieHandle_t* pDeviceHandles , uint32_t dwCount );
2029 #ifdef LIBTIEPIE_DYNAMIC 2049 #ifdef LIBTIEPIE_DYNAMIC 2050 typedef void(*LibTiePieLstRemoveDevice_t)( uint32_t dwSerialNumber );
2106 #ifdef LIBTIEPIE_DYNAMIC 2107 typedef bool8_t(*LibTiePieLstDevCanOpen_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwDeviceType );
2109 bool8_t
LstDevCanOpen( uint32_t dwIdKind , uint32_t dwId , uint32_t dwDeviceType );
2130 #ifdef LIBTIEPIE_DYNAMIC 2131 typedef uint32_t(*LibTiePieLstDevGetProductId_t)( uint32_t dwIdKind , uint32_t dwId );
2156 #ifdef LIBTIEPIE_DYNAMIC 2157 typedef uint32_t(*LibTiePieLstDevGetVendorId_t)( uint32_t dwIdKind , uint32_t dwId );
2159 uint32_t LstDevGetVendorId( uint32_t dwIdKind , uint32_t dwId );
2200 #ifdef LIBTIEPIE_DYNAMIC 2201 typedef uint32_t(*LibTiePieLstDevGetName_t)( uint32_t dwIdKind , uint32_t dwId ,
char* pBuffer , uint32_t dwBufferLength );
2203 uint32_t
LstDevGetName( uint32_t dwIdKind , uint32_t dwId ,
char* pBuffer , uint32_t dwBufferLength );
2242 #ifdef LIBTIEPIE_DYNAMIC 2243 typedef uint32_t(*LibTiePieLstDevGetNameShort_t)( uint32_t dwIdKind , uint32_t dwId ,
char* pBuffer , uint32_t dwBufferLength );
2245 uint32_t
LstDevGetNameShort( uint32_t dwIdKind , uint32_t dwId ,
char* pBuffer , uint32_t dwBufferLength );
2284 #ifdef LIBTIEPIE_DYNAMIC 2285 typedef uint32_t(*LibTiePieLstDevGetNameShortest_t)( uint32_t dwIdKind , uint32_t dwId ,
char* pBuffer , uint32_t dwBufferLength );
2287 uint32_t
LstDevGetNameShortest( uint32_t dwIdKind , uint32_t dwId ,
char* pBuffer , uint32_t dwBufferLength );
2308 #ifdef LIBTIEPIE_DYNAMIC 2309 typedef TpVersion_t(*LibTiePieLstDevGetDriverVersion_t)( uint32_t dwIdKind , uint32_t dwId );
2332 #ifdef LIBTIEPIE_DYNAMIC 2333 typedef TpVersion_t(*LibTiePieLstDevGetRecommendedDriverVersion_t)( uint32_t dwIdKind , uint32_t dwId );
2356 #ifdef LIBTIEPIE_DYNAMIC 2357 typedef TpVersion_t(*LibTiePieLstDevGetFirmwareVersion_t)( uint32_t dwIdKind , uint32_t dwId );
2382 #ifdef LIBTIEPIE_DYNAMIC 2383 typedef TpVersion_t(*LibTiePieLstDevGetRecommendedFirmwareVersion_t)( uint32_t dwIdKind , uint32_t dwId );
2385 TpVersion_t LstDevGetRecommendedFirmwareVersion( uint32_t dwIdKind , uint32_t dwId );
2417 #ifdef LIBTIEPIE_DYNAMIC 2418 typedef TpDate_t(*LibTiePieLstDevGetCalibrationDate_t)( uint32_t dwIdKind , uint32_t dwId );
2445 #ifdef LIBTIEPIE_DYNAMIC 2446 typedef uint32_t(*LibTiePieLstDevGetSerialNumber_t)( uint32_t dwIdKind , uint32_t dwId );
2489 #ifdef LIBTIEPIE_DYNAMIC 2490 typedef uint32_t(*LibTiePieLstDevGetTypes_t)( uint32_t dwIdKind , uint32_t dwId );
2557 #ifdef LIBTIEPIE_DYNAMIC 2558 typedef uint32_t(*LibTiePieLstDevGetContainedSerialNumbers_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t* pBuffer , uint32_t dwBufferLength );
2583 #ifdef LIBTIEPIE_DYNAMIC 2584 typedef uint32_t(*LibTiePieLstCbDevGetProductId_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2586 uint32_t
LstCbDevGetProductId( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2611 #ifdef LIBTIEPIE_DYNAMIC 2612 typedef uint32_t(*LibTiePieLstCbDevGetVendorId_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2614 uint32_t LstCbDevGetVendorId( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2643 #ifdef LIBTIEPIE_DYNAMIC 2644 typedef uint32_t(*LibTiePieLstCbDevGetName_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber ,
char* pBuffer , uint32_t dwBufferLength );
2646 uint32_t
LstCbDevGetName( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber ,
char* pBuffer , uint32_t dwBufferLength );
2673 #ifdef LIBTIEPIE_DYNAMIC 2674 typedef uint32_t(*LibTiePieLstCbDevGetNameShort_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber ,
char* pBuffer , uint32_t dwBufferLength );
2676 uint32_t
LstCbDevGetNameShort( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber ,
char* pBuffer , uint32_t dwBufferLength );
2703 #ifdef LIBTIEPIE_DYNAMIC 2704 typedef uint32_t(*LibTiePieLstCbDevGetNameShortest_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber ,
char* pBuffer , uint32_t dwBufferLength );
2706 uint32_t
LstCbDevGetNameShortest( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber ,
char* pBuffer , uint32_t dwBufferLength );
2729 #ifdef LIBTIEPIE_DYNAMIC 2730 typedef TpVersion_t(*LibTiePieLstCbDevGetDriverVersion_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2732 TpVersion_t
LstCbDevGetDriverVersion( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2755 #ifdef LIBTIEPIE_DYNAMIC 2756 typedef TpVersion_t(*LibTiePieLstCbDevGetFirmwareVersion_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2781 #ifdef LIBTIEPIE_DYNAMIC 2782 typedef TpDate_t(*LibTiePieLstCbDevGetCalibrationDate_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2807 #ifdef LIBTIEPIE_DYNAMIC 2808 typedef uint16_t(*LibTiePieLstCbScpGetChannelCount_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2810 uint16_t
LstCbScpGetChannelCount( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2844 #ifdef LIBTIEPIE_DYNAMIC 2845 typedef void(*LibTiePieLstSetCallbackDeviceAdded_t)( TpCallbackDeviceList_t pCallback ,
void* pData );
2871 #ifdef LIBTIEPIE_DYNAMIC 2872 typedef void(*LibTiePieLstSetCallbackDeviceRemoved_t)( TpCallbackDeviceList_t pCallback ,
void* pData );
2898 #ifdef LIBTIEPIE_DYNAMIC 2899 typedef void(*LibTiePieLstSetCallbackDeviceCanOpenChanged_t)( TpCallbackDeviceList_t pCallback ,
void* pData );
2908 #ifdef LIBTIEPIE_LINUX 2923 #ifdef LIBTIEPIE_DYNAMIC 2924 typedef void(*LibTiePieLstSetEventDeviceAdded_t)(
int fdEvent );
2942 #ifdef LIBTIEPIE_DYNAMIC 2943 typedef void(*LibTiePieLstSetEventDeviceRemoved_t)(
int fdEvent );
2961 #ifdef LIBTIEPIE_DYNAMIC 2962 typedef void(*LibTiePieLstSetEventDeviceCanOpenChanged_t)(
int fdEvent );
2969 #ifdef LIBTIEPIE_WINDOWS 2984 #ifdef LIBTIEPIE_DYNAMIC 2985 typedef void(*LibTiePieLstSetEventDeviceAdded_t)( HANDLE hEvent );
3003 #ifdef LIBTIEPIE_DYNAMIC 3004 typedef void(*LibTiePieLstSetEventDeviceRemoved_t)( HANDLE hEvent );
3022 #ifdef LIBTIEPIE_DYNAMIC 3023 typedef void(*LibTiePieLstSetEventDeviceCanOpenChanged_t)( HANDLE hEvent );
3045 #ifdef LIBTIEPIE_DYNAMIC 3046 typedef void(*LibTiePieLstSetMessageDeviceAdded_t)( HWND hWnd );
3068 #ifdef LIBTIEPIE_DYNAMIC 3069 typedef void(*LibTiePieLstSetMessageDeviceRemoved_t)( HWND hWnd );
3091 #ifdef LIBTIEPIE_DYNAMIC 3092 typedef void(*LibTiePieLstSetMessageDeviceCanOpenChanged_t)( HWND hWnd );
3142 #ifdef LIBTIEPIE_DYNAMIC 3161 #ifdef LIBTIEPIE_DYNAMIC 3180 #ifdef LIBTIEPIE_DYNAMIC 3208 #ifdef LIBTIEPIE_DYNAMIC 3209 typedef void(*LibTiePieObjSetEventCallback_t)(
LibTiePieHandle_t hHandle , TpCallbackEvent_t pCallback ,
void* pData );
3224 #ifdef LIBTIEPIE_DYNAMIC 3230 #ifdef LIBTIEPIE_LINUX 3240 #ifdef LIBTIEPIE_DYNAMIC 3241 typedef void(*LibTiePieObjSetEventEvent_t)(
LibTiePieHandle_t hHandle ,
int fdEvent );
3248 #ifdef LIBTIEPIE_WINDOWS 3258 #ifdef LIBTIEPIE_DYNAMIC 3259 typedef void(*LibTiePieObjSetEventEvent_t)(
LibTiePieHandle_t hHandle , HANDLE hEvent );
3276 #ifdef LIBTIEPIE_DYNAMIC 3277 typedef void(*LibTiePieObjSetEventWindowHandle_t)(
LibTiePieHandle_t hHandle , HWND hWnd );
3315 #ifdef LIBTIEPIE_DYNAMIC 3343 #ifdef LIBTIEPIE_DYNAMIC 3384 #ifdef LIBTIEPIE_DYNAMIC 3416 #ifdef LIBTIEPIE_DYNAMIC 3447 #ifdef LIBTIEPIE_DYNAMIC 3483 #ifdef LIBTIEPIE_DYNAMIC 3484 typedef uint32_t(*LibTiePieDevGetCalibrationToken_t)(
LibTiePieHandle_t hDevice ,
char* pBuffer , uint32_t dwBufferLength );
3486 uint32_t DevGetCalibrationToken(
LibTiePieHandle_t hDevice ,
char* pBuffer , uint32_t dwBufferLength );
3506 #ifdef LIBTIEPIE_DYNAMIC 3527 #ifdef LIBTIEPIE_DYNAMIC 3550 #ifdef LIBTIEPIE_DYNAMIC 3573 #ifdef LIBTIEPIE_DYNAMIC 3612 #ifdef LIBTIEPIE_DYNAMIC 3613 typedef uint32_t(*LibTiePieDevGetName_t)(
LibTiePieHandle_t hDevice ,
char* pBuffer , uint32_t dwBufferLength );
3651 #ifdef LIBTIEPIE_DYNAMIC 3652 typedef uint32_t(*LibTiePieDevGetNameShort_t)(
LibTiePieHandle_t hDevice ,
char* pBuffer , uint32_t dwBufferLength );
3690 #ifdef LIBTIEPIE_DYNAMIC 3691 typedef uint32_t(*LibTiePieDevGetNameShortest_t)(
LibTiePieHandle_t hDevice ,
char* pBuffer , uint32_t dwBufferLength );
3731 #ifdef LIBTIEPIE_DYNAMIC 3732 typedef void(*LibTiePieDevSetCallbackRemoved_t)(
LibTiePieHandle_t hDevice , TpCallback_t pCallback ,
void* pData );
3737 #ifdef LIBTIEPIE_LINUX 3755 #ifdef LIBTIEPIE_DYNAMIC 3756 typedef void(*LibTiePieDevSetEventRemoved_t)(
LibTiePieHandle_t hDevice ,
int fdEvent );
3763 #ifdef LIBTIEPIE_WINDOWS 3781 #ifdef LIBTIEPIE_DYNAMIC 3782 typedef void(*LibTiePieDevSetEventRemoved_t)(
LibTiePieHandle_t hDevice , HANDLE hEvent );
3805 #ifdef LIBTIEPIE_DYNAMIC 3806 typedef void(*LibTiePieDevSetMessageRemoved_t)(
LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
3845 #ifdef LIBTIEPIE_DYNAMIC 3871 #ifdef LIBTIEPIE_DYNAMIC 3872 typedef uint16_t(*LibTiePieDevTrGetInputIndexById_t)(
LibTiePieHandle_t hDevice , uint32_t dwId );
3896 #ifdef LIBTIEPIE_DYNAMIC 3932 #ifdef LIBTIEPIE_DYNAMIC 3958 #ifdef LIBTIEPIE_DYNAMIC 3998 #ifdef LIBTIEPIE_DYNAMIC 3999 typedef uint64_t(*LibTiePieDevTrInGetKinds_t)(
LibTiePieHandle_t hDevice , uint16_t wInput );
4028 #ifdef LIBTIEPIE_DYNAMIC 4029 typedef uint64_t(*LibTiePieScpTrInGetKindsEx_t)(
LibTiePieHandle_t hDevice , uint16_t wInput , uint32_t dwMeasureMode );
4031 uint64_t ScpTrInGetKindsEx(
LibTiePieHandle_t hDevice , uint16_t wInput , uint32_t dwMeasureMode );
4056 #ifdef LIBTIEPIE_DYNAMIC 4057 typedef uint64_t(*LibTiePieDevTrInGetKind_t)(
LibTiePieHandle_t hDevice , uint16_t wInput );
4084 #ifdef LIBTIEPIE_DYNAMIC 4085 typedef uint64_t(*LibTiePieDevTrInSetKind_t)(
LibTiePieHandle_t hDevice , uint16_t wInput , uint64_t qwKind );
4125 #ifdef LIBTIEPIE_DYNAMIC 4142 #ifdef LIBTIEPIE_DYNAMIC 4143 typedef bool8_t(*LibTiePieScpTrInIsAvailableEx_t)(
LibTiePieHandle_t hDevice , uint16_t wInput , uint32_t dwMeasureMode );
4145 bool8_t ScpTrInIsAvailableEx(
LibTiePieHandle_t hDevice , uint16_t wInput , uint32_t dwMeasureMode );
4168 #ifdef LIBTIEPIE_DYNAMIC 4169 typedef uint32_t(*LibTiePieDevTrInGetId_t)(
LibTiePieHandle_t hDevice , uint16_t wInput );
4193 #ifdef LIBTIEPIE_DYNAMIC 4194 typedef uint32_t(*LibTiePieDevTrInGetName_t)(
LibTiePieHandle_t hDevice , uint16_t wInput ,
char* pBuffer , uint32_t dwBufferLength );
4229 #ifdef LIBTIEPIE_DYNAMIC 4253 #ifdef LIBTIEPIE_DYNAMIC 4254 typedef uint16_t(*LibTiePieDevTrGetOutputIndexById_t)(
LibTiePieHandle_t hDevice , uint32_t dwId );
4287 #ifdef LIBTIEPIE_DYNAMIC 4312 #ifdef LIBTIEPIE_DYNAMIC 4355 #ifdef LIBTIEPIE_DYNAMIC 4356 typedef uint64_t(*LibTiePieDevTrOutGetEvents_t)(
LibTiePieHandle_t hDevice , uint16_t wOutput );
4380 #ifdef LIBTIEPIE_DYNAMIC 4381 typedef uint64_t(*LibTiePieDevTrOutGetEvent_t)(
LibTiePieHandle_t hDevice , uint16_t wOutput );
4407 #ifdef LIBTIEPIE_DYNAMIC 4408 typedef uint64_t(*LibTiePieDevTrOutSetEvent_t)(
LibTiePieHandle_t hDevice , uint16_t wOutput , uint64_t qwEvent );
4444 #ifdef LIBTIEPIE_DYNAMIC 4445 typedef uint32_t(*LibTiePieDevTrOutGetId_t)(
LibTiePieHandle_t hDevice , uint16_t wOutput );
4469 #ifdef LIBTIEPIE_DYNAMIC 4470 typedef uint32_t(*LibTiePieDevTrOutGetName_t)(
LibTiePieHandle_t hDevice , uint16_t wOutput ,
char* pBuffer , uint32_t dwBufferLength );
4493 #ifdef LIBTIEPIE_DYNAMIC 4539 #ifdef LIBTIEPIE_DYNAMIC 4564 #ifdef LIBTIEPIE_DYNAMIC 4585 #ifdef LIBTIEPIE_DYNAMIC 4586 typedef bool8_t(*LibTiePieScpChIsAvailableEx_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode ,
double dSampleFrequency , uint8_t byResolution ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
4588 bool8_t ScpChIsAvailableEx(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode ,
double dSampleFrequency , uint8_t byResolution ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
4618 #ifdef LIBTIEPIE_DYNAMIC 4619 typedef uint32_t(*LibTiePieScpChGetConnectorType_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
4640 #ifdef LIBTIEPIE_DYNAMIC 4663 #ifdef LIBTIEPIE_DYNAMIC 4664 typedef double(*LibTiePieScpChGetImpedance_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
4701 #ifdef LIBTIEPIE_DYNAMIC 4702 typedef uint32_t(*LibTiePieScpChGetBandwidths_t)(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double* pList , uint32_t dwLength );
4726 #ifdef LIBTIEPIE_DYNAMIC 4727 typedef double(*LibTiePieScpChGetBandwidth_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
4752 #ifdef LIBTIEPIE_DYNAMIC 4753 typedef double(*LibTiePieScpChSetBandwidth_t)(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double dBandwidth );
4787 #ifdef LIBTIEPIE_DYNAMIC 4788 typedef uint64_t(*LibTiePieScpChGetCouplings_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
4811 #ifdef LIBTIEPIE_DYNAMIC 4812 typedef uint64_t(*LibTiePieScpChGetCoupling_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
4839 #ifdef LIBTIEPIE_DYNAMIC 4840 typedef uint64_t(*LibTiePieScpChSetCoupling_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwCoupling );
4875 #ifdef LIBTIEPIE_DYNAMIC 4900 #ifdef LIBTIEPIE_DYNAMIC 4946 #ifdef LIBTIEPIE_DYNAMIC 4947 typedef double(*LibTiePieScpChGetProbeGain_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
4975 #ifdef LIBTIEPIE_DYNAMIC 4976 typedef double(*LibTiePieScpChSetProbeGain_t)(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double dProbeGain );
5003 #ifdef LIBTIEPIE_DYNAMIC 5004 typedef double(*LibTiePieScpChGetProbeOffset_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5033 #ifdef LIBTIEPIE_DYNAMIC 5034 typedef double(*LibTiePieScpChSetProbeOffset_t)(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double dProbeOffset );
5079 #ifdef LIBTIEPIE_DYNAMIC 5104 #ifdef LIBTIEPIE_DYNAMIC 5148 #ifdef LIBTIEPIE_DYNAMIC 5149 typedef uint32_t(*LibTiePieScpChGetRanges_t)(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double* pList , uint32_t dwLength );
5168 #ifdef LIBTIEPIE_DYNAMIC 5169 typedef uint32_t(*LibTiePieScpChGetRangesEx_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwCoupling ,
double* pList , uint32_t dwLength );
5171 uint32_t ScpChGetRangesEx(
LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwCoupling ,
double* pList , uint32_t dwLength );
5194 #ifdef LIBTIEPIE_DYNAMIC 5195 typedef double(*LibTiePieScpChGetRange_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5236 #ifdef LIBTIEPIE_DYNAMIC 5237 typedef double(*LibTiePieScpChSetRange_t)(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double dRange );
5281 #ifdef LIBTIEPIE_DYNAMIC 5306 #ifdef LIBTIEPIE_DYNAMIC 5338 #ifdef LIBTIEPIE_DYNAMIC 5339 typedef bool8_t(*LibTiePieScpChSetSafeGroundEnabled_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , bool8_t bEnable );
5365 #ifdef LIBTIEPIE_DYNAMIC 5366 typedef double(*LibTiePieScpChGetSafeGroundThresholdMin_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5392 #ifdef LIBTIEPIE_DYNAMIC 5393 typedef double(*LibTiePieScpChGetSafeGroundThresholdMax_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5419 #ifdef LIBTIEPIE_DYNAMIC 5420 typedef double(*LibTiePieScpChGetSafeGroundThreshold_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5453 #ifdef LIBTIEPIE_DYNAMIC 5454 typedef double(*LibTiePieScpChSetSafeGroundThreshold_t)(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double dThreshold );
5470 #ifdef LIBTIEPIE_DYNAMIC 5471 typedef double(*LibTiePieScpChVerifySafeGroundThreshold_t)(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double dThreshold );
5473 double ScpChVerifySafeGroundThreshold(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double dThreshold );
5511 #ifdef LIBTIEPIE_DYNAMIC 5536 #ifdef LIBTIEPIE_DYNAMIC 5537 typedef bool8_t(*LibTiePieScpChHasTriggerEx_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode );
5539 bool8_t ScpChHasTriggerEx(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode );
5560 #ifdef LIBTIEPIE_DYNAMIC 5582 #ifdef LIBTIEPIE_DYNAMIC 5583 typedef bool8_t(*LibTiePieScpChTrIsAvailableEx_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode ,
double dSampleFrequency , uint8_t byResolution ,
const bool8_t* pChannelEnabled ,
const bool8_t* pChannelTriggerEnabled , uint16_t wChannelCount );
5585 bool8_t ScpChTrIsAvailableEx(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode ,
double dSampleFrequency , uint8_t byResolution ,
const bool8_t* pChannelEnabled ,
const bool8_t* pChannelTriggerEnabled , uint16_t wChannelCount );
5602 #ifdef LIBTIEPIE_DYNAMIC 5640 #ifdef LIBTIEPIE_DYNAMIC 5667 #ifdef LIBTIEPIE_DYNAMIC 5707 #ifdef LIBTIEPIE_DYNAMIC 5708 typedef uint64_t(*LibTiePieScpChTrGetKinds_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5724 #ifdef LIBTIEPIE_DYNAMIC 5725 typedef uint64_t(*LibTiePieScpChTrGetKindsEx_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode );
5727 uint64_t ScpChTrGetKindsEx(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode );
5751 #ifdef LIBTIEPIE_DYNAMIC 5752 typedef uint64_t(*LibTiePieScpChTrGetKind_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5779 #ifdef LIBTIEPIE_DYNAMIC 5780 typedef uint64_t(*LibTiePieScpChTrSetKind_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwTriggerKind );
5824 #ifdef LIBTIEPIE_DYNAMIC 5825 typedef uint32_t(*LibTiePieScpChTrGetLevelModes_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5847 #ifdef LIBTIEPIE_DYNAMIC 5848 typedef uint32_t(*LibTiePieScpChTrGetLevelMode_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5872 #ifdef LIBTIEPIE_DYNAMIC 5873 typedef uint32_t(*LibTiePieScpChTrSetLevelMode_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwLevelMode );
5919 #ifdef LIBTIEPIE_DYNAMIC 5920 typedef uint32_t(*LibTiePieScpChTrGetLevelCount_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
5946 #ifdef LIBTIEPIE_DYNAMIC 5947 typedef double(*LibTiePieScpChTrGetLevel_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex );
5976 #ifdef LIBTIEPIE_DYNAMIC 5977 typedef double(*LibTiePieScpChTrSetLevel_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex ,
double dLevel );
6021 #ifdef LIBTIEPIE_DYNAMIC 6022 typedef uint32_t(*LibTiePieScpChTrGetHysteresisCount_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6048 #ifdef LIBTIEPIE_DYNAMIC 6049 typedef double(*LibTiePieScpChTrGetHysteresis_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex );
6077 #ifdef LIBTIEPIE_DYNAMIC 6078 typedef double(*LibTiePieScpChTrSetHysteresis_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex ,
double dHysteresis );
6118 #ifdef LIBTIEPIE_DYNAMIC 6119 typedef uint32_t(*LibTiePieScpChTrGetConditions_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6134 #ifdef LIBTIEPIE_DYNAMIC 6135 typedef uint32_t(*LibTiePieScpChTrGetConditionsEx_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode , uint64_t qwTriggerKind );
6137 uint32_t ScpChTrGetConditionsEx(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode , uint64_t qwTriggerKind );
6161 #ifdef LIBTIEPIE_DYNAMIC 6162 typedef uint32_t(*LibTiePieScpChTrGetCondition_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6188 #ifdef LIBTIEPIE_DYNAMIC 6189 typedef uint32_t(*LibTiePieScpChTrSetCondition_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwCondition );
6236 #ifdef LIBTIEPIE_DYNAMIC 6237 typedef uint32_t(*LibTiePieScpChTrGetTimeCount_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6267 #ifdef LIBTIEPIE_DYNAMIC 6268 typedef double(*LibTiePieScpChTrGetTime_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex );
6301 #ifdef LIBTIEPIE_DYNAMIC 6302 typedef double(*LibTiePieScpChTrSetTime_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex ,
double dTime );
6323 #ifdef LIBTIEPIE_DYNAMIC 6324 typedef double(*LibTiePieScpChTrVerifyTime_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex ,
double dTime );
6326 double ScpChTrVerifyTime(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex ,
double dTime );
6345 #ifdef LIBTIEPIE_DYNAMIC 6346 typedef double(*LibTiePieScpChTrVerifyTimeEx2_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex ,
double dTime , uint32_t dwMeasureMode ,
double dSampleFrequency , uint64_t qwTriggerKind , uint32_t dwTriggerCondition );
6348 double ScpChTrVerifyTimeEx2(
LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex ,
double dTime , uint32_t dwMeasureMode ,
double dSampleFrequency , uint64_t qwTriggerKind , uint32_t dwTriggerCondition );
6474 #ifdef INCLUDED_BY_MATLAB 6475 #ifdef LIBTIEPIE_DYNAMIC 6476 typedef uint64_t(*LibTiePieScpGetData_t)(
LibTiePieHandle_t hDevice ,
void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6478 uint64_t
ScpGetData(
LibTiePieHandle_t hDevice ,
void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6481 #ifdef LIBTIEPIE_DYNAMIC 6482 typedef uint64_t(*LibTiePieScpGetData_t)(
LibTiePieHandle_t hDevice ,
float** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6484 uint64_t
ScpGetData(
LibTiePieHandle_t hDevice ,
float** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6511 #ifdef LIBTIEPIE_DYNAMIC 6512 typedef uint64_t(*LibTiePieScpGetData1Ch_t)(
LibTiePieHandle_t hDevice ,
float* pBufferCh1 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6541 #ifdef LIBTIEPIE_DYNAMIC 6542 typedef uint64_t(*LibTiePieScpGetData2Ch_t)(
LibTiePieHandle_t hDevice ,
float* pBufferCh1 ,
float* pBufferCh2 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6572 #ifdef LIBTIEPIE_DYNAMIC 6573 typedef uint64_t(*LibTiePieScpGetData3Ch_t)(
LibTiePieHandle_t hDevice ,
float* pBufferCh1 ,
float* pBufferCh2 ,
float* pBufferCh3 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6575 uint64_t
ScpGetData3Ch(
LibTiePieHandle_t hDevice ,
float* pBufferCh1 ,
float* pBufferCh2 ,
float* pBufferCh3 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6604 #ifdef LIBTIEPIE_DYNAMIC 6605 typedef uint64_t(*LibTiePieScpGetData4Ch_t)(
LibTiePieHandle_t hDevice ,
float* pBufferCh1 ,
float* pBufferCh2 ,
float* pBufferCh3 ,
float* pBufferCh4 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6607 uint64_t
ScpGetData4Ch(
LibTiePieHandle_t hDevice ,
float* pBufferCh1 ,
float* pBufferCh2 ,
float* pBufferCh3 ,
float* pBufferCh4 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6629 #ifdef LIBTIEPIE_DYNAMIC 6630 typedef uint64_t(*LibTiePieScpGetValidPreSampleCount_t)(
LibTiePieHandle_t hDevice );
6657 #ifdef LIBTIEPIE_DYNAMIC 6658 typedef void(*LibTiePieScpChGetDataValueRange_t)(
LibTiePieHandle_t hDevice , uint16_t wCh ,
double* pMin ,
double* pMax );
6682 #ifdef LIBTIEPIE_DYNAMIC 6683 typedef double(*LibTiePieScpChGetDataValueMin_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6707 #ifdef LIBTIEPIE_DYNAMIC 6708 typedef double(*LibTiePieScpChGetDataValueMax_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6733 #ifdef LIBTIEPIE_DYNAMIC 6734 typedef uint64_t(*LibTiePieScpGetDataRaw_t)(
LibTiePieHandle_t hDevice ,
void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6736 uint64_t ScpGetDataRaw(
LibTiePieHandle_t hDevice ,
void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6749 #ifdef LIBTIEPIE_DYNAMIC 6750 typedef uint64_t(*LibTiePieScpGetDataRaw1Ch_t)(
LibTiePieHandle_t hDevice ,
void* pBufferCh1 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6752 uint64_t ScpGetDataRaw1Ch(
LibTiePieHandle_t hDevice ,
void* pBufferCh1 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6766 #ifdef LIBTIEPIE_DYNAMIC 6767 typedef uint64_t(*LibTiePieScpGetDataRaw2Ch_t)(
LibTiePieHandle_t hDevice ,
void* pBufferCh1 ,
void* pBufferCh2 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6769 uint64_t ScpGetDataRaw2Ch(
LibTiePieHandle_t hDevice ,
void* pBufferCh1 ,
void* pBufferCh2 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6784 #ifdef LIBTIEPIE_DYNAMIC 6785 typedef uint64_t(*LibTiePieScpGetDataRaw3Ch_t)(
LibTiePieHandle_t hDevice ,
void* pBufferCh1 ,
void* pBufferCh2 ,
void* pBufferCh3 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6787 uint64_t ScpGetDataRaw3Ch(
LibTiePieHandle_t hDevice ,
void* pBufferCh1 ,
void* pBufferCh2 ,
void* pBufferCh3 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6803 #ifdef LIBTIEPIE_DYNAMIC 6804 typedef uint64_t(*LibTiePieScpGetDataRaw4Ch_t)(
LibTiePieHandle_t hDevice ,
void* pBufferCh1 ,
void* pBufferCh2 ,
void* pBufferCh3 ,
void* pBufferCh4 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6806 uint64_t ScpGetDataRaw4Ch(
LibTiePieHandle_t hDevice ,
void* pBufferCh1 ,
void* pBufferCh2 ,
void* pBufferCh3 ,
void* pBufferCh4 , uint64_t qwStartIndex , uint64_t qwSampleCount );
6817 #ifdef LIBTIEPIE_DYNAMIC 6818 typedef uint32_t(*LibTiePieScpChGetDataRawType_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6836 #ifdef LIBTIEPIE_DYNAMIC 6837 typedef void(*LibTiePieScpChGetDataRawValueRange_t)(
LibTiePieHandle_t hDevice , uint16_t wCh , int64_t* pMin , int64_t* pZero , int64_t* pMax );
6839 void ScpChGetDataRawValueRange(
LibTiePieHandle_t hDevice , uint16_t wCh , int64_t* pMin , int64_t* pZero , int64_t* pMax );
6853 #ifdef LIBTIEPIE_DYNAMIC 6854 typedef int64_t(*LibTiePieScpChGetDataRawValueMin_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6870 #ifdef LIBTIEPIE_DYNAMIC 6871 typedef int64_t(*LibTiePieScpChGetDataRawValueZero_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6887 #ifdef LIBTIEPIE_DYNAMIC 6888 typedef int64_t(*LibTiePieScpChGetDataRawValueMax_t)(
LibTiePieHandle_t hDevice , uint16_t wCh );
6901 #ifdef LIBTIEPIE_DYNAMIC 6921 #ifdef LIBTIEPIE_DYNAMIC 6938 #ifdef LIBTIEPIE_DYNAMIC 6939 typedef bool8_t(*LibTiePieScpStartGetDataAsync_t)(
LibTiePieHandle_t hDevice ,
float** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6941 bool8_t ScpStartGetDataAsync(
LibTiePieHandle_t hDevice ,
float** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6955 #ifdef LIBTIEPIE_DYNAMIC 6956 typedef bool8_t(*LibTiePieScpStartGetDataAsyncRaw_t)(
LibTiePieHandle_t hDevice ,
void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6958 bool8_t ScpStartGetDataAsyncRaw(
LibTiePieHandle_t hDevice ,
void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
6968 #ifdef LIBTIEPIE_DYNAMIC 7011 #ifdef LIBTIEPIE_DYNAMIC 7012 typedef void(*LibTiePieScpSetCallbackDataReady_t)(
LibTiePieHandle_t hDevice , TpCallback_t pCallback ,
void* pData );
7046 #ifdef LIBTIEPIE_DYNAMIC 7047 typedef void(*LibTiePieScpSetCallbackDataOverflow_t)(
LibTiePieHandle_t hDevice , TpCallback_t pCallback ,
void* pData );
7078 #ifdef LIBTIEPIE_DYNAMIC 7079 typedef void(*LibTiePieScpSetCallbackConnectionTestCompleted_t)(
LibTiePieHandle_t hDevice , TpCallback_t pCallback ,
void* pData );
7109 #ifdef LIBTIEPIE_DYNAMIC 7110 typedef void(*LibTiePieScpSetCallbackTriggered_t)(
LibTiePieHandle_t hDevice , TpCallback_t pCallback ,
void* pData );
7119 #ifdef LIBTIEPIE_LINUX 7139 #ifdef LIBTIEPIE_DYNAMIC 7140 typedef void(*LibTiePieScpSetEventDataReady_t)(
LibTiePieHandle_t hDevice ,
int fdEvent );
7163 #ifdef LIBTIEPIE_DYNAMIC 7164 typedef void(*LibTiePieScpSetEventDataOverflow_t)(
LibTiePieHandle_t hDevice ,
int fdEvent );
7187 #ifdef LIBTIEPIE_DYNAMIC 7188 typedef void(*LibTiePieScpSetEventConnectionTestCompleted_t)(
LibTiePieHandle_t hDevice ,
int fdEvent );
7210 #ifdef LIBTIEPIE_DYNAMIC 7211 typedef void(*LibTiePieScpSetEventTriggered_t)(
LibTiePieHandle_t hDevice ,
int fdEvent );
7218 #ifdef LIBTIEPIE_WINDOWS 7238 #ifdef LIBTIEPIE_DYNAMIC 7239 typedef void(*LibTiePieScpSetEventDataReady_t)(
LibTiePieHandle_t hDevice , HANDLE hEvent );
7262 #ifdef LIBTIEPIE_DYNAMIC 7263 typedef void(*LibTiePieScpSetEventDataOverflow_t)(
LibTiePieHandle_t hDevice , HANDLE hEvent );
7286 #ifdef LIBTIEPIE_DYNAMIC 7287 typedef void(*LibTiePieScpSetEventConnectionTestCompleted_t)(
LibTiePieHandle_t hDevice , HANDLE hEvent );
7309 #ifdef LIBTIEPIE_DYNAMIC 7310 typedef void(*LibTiePieScpSetEventTriggered_t)(
LibTiePieHandle_t hDevice , HANDLE hEvent );
7335 #ifdef LIBTIEPIE_DYNAMIC 7336 typedef void(*LibTiePieScpSetMessageDataReady_t)(
LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7361 #ifdef LIBTIEPIE_DYNAMIC 7362 typedef void(*LibTiePieScpSetMessageDataOverflow_t)(
LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7387 #ifdef LIBTIEPIE_DYNAMIC 7388 typedef void(*LibTiePieScpSetMessageConnectionTestCompleted_t)(
LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7412 #ifdef LIBTIEPIE_DYNAMIC 7413 typedef void(*LibTiePieScpSetMessageTriggered_t)(
LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7451 #ifdef LIBTIEPIE_DYNAMIC 7472 #ifdef LIBTIEPIE_DYNAMIC 7499 #ifdef LIBTIEPIE_DYNAMIC 7562 #ifdef LIBTIEPIE_DYNAMIC 7584 #ifdef LIBTIEPIE_DYNAMIC 7609 #ifdef LIBTIEPIE_DYNAMIC 7610 typedef uint32_t(*LibTiePieScpSetMeasureMode_t)(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
7641 #ifdef LIBTIEPIE_DYNAMIC 7667 #ifdef LIBTIEPIE_DYNAMIC 7691 #ifdef LIBTIEPIE_DYNAMIC 7715 #ifdef LIBTIEPIE_DYNAMIC 7744 #ifdef LIBTIEPIE_DYNAMIC 7770 #ifdef LIBTIEPIE_DYNAMIC 7835 #ifdef LIBTIEPIE_DYNAMIC 7836 typedef uint32_t(*LibTiePieScpGetAutoResolutionModes_t)(
LibTiePieHandle_t hDevice );
7858 #ifdef LIBTIEPIE_DYNAMIC 7859 typedef uint32_t(*LibTiePieScpGetAutoResolutionMode_t)(
LibTiePieHandle_t hDevice );
7883 #ifdef LIBTIEPIE_DYNAMIC 7884 typedef uint32_t(*LibTiePieScpSetAutoResolutionMode_t)(
LibTiePieHandle_t hDevice , uint32_t dwAutoResolutionMode );
7924 #ifdef LIBTIEPIE_DYNAMIC 7925 typedef uint32_t(*LibTiePieScpGetResolutions_t)(
LibTiePieHandle_t hDevice , uint8_t* pList , uint32_t dwLength );
7946 #ifdef LIBTIEPIE_DYNAMIC 7972 #ifdef LIBTIEPIE_DYNAMIC 7973 typedef uint8_t(*LibTiePieScpSetResolution_t)(
LibTiePieHandle_t hDevice , uint8_t byResolution );
7992 #ifdef LIBTIEPIE_DYNAMIC 8008 #ifdef LIBTIEPIE_DYNAMIC 8011 bool8_t ScpIsResolutionEnhancedEx(
LibTiePieHandle_t hDevice , uint8_t byResolution );
8059 #ifdef LIBTIEPIE_DYNAMIC 8084 #ifdef LIBTIEPIE_DYNAMIC 8111 #ifdef LIBTIEPIE_DYNAMIC 8112 typedef uint32_t(*LibTiePieScpSetClockSource_t)(
LibTiePieHandle_t hDevice , uint32_t dwClockSource );
8155 #ifdef LIBTIEPIE_DYNAMIC 8156 typedef uint32_t(*LibTiePieScpGetClockSourceFrequencies_t)(
LibTiePieHandle_t hDevice ,
double* pList , uint32_t dwLength );
8191 #ifdef LIBTIEPIE_DYNAMIC 8192 typedef uint32_t(*LibTiePieScpGetClockSourceFrequenciesEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwClockSource ,
double* pList , uint32_t dwLength );
8194 uint32_t ScpGetClockSourceFrequenciesEx(
LibTiePieHandle_t hDevice , uint32_t dwClockSource ,
double* pList , uint32_t dwLength );
8221 #ifdef LIBTIEPIE_DYNAMIC 8222 typedef double(*LibTiePieScpGetClockSourceFrequency_t)(
LibTiePieHandle_t hDevice );
8253 #ifdef LIBTIEPIE_DYNAMIC 8254 typedef double(*LibTiePieScpSetClockSourceFrequency_t)(
LibTiePieHandle_t hDevice ,
double dClockSourceFrequency );
8298 #ifdef LIBTIEPIE_DYNAMIC 8323 #ifdef LIBTIEPIE_DYNAMIC 8350 #ifdef LIBTIEPIE_DYNAMIC 8351 typedef uint32_t(*LibTiePieScpSetClockOutput_t)(
LibTiePieHandle_t hDevice , uint32_t dwClockOutput );
8394 #ifdef LIBTIEPIE_DYNAMIC 8395 typedef uint32_t(*LibTiePieScpGetClockOutputFrequencies_t)(
LibTiePieHandle_t hDevice ,
double* pList , uint32_t dwLength );
8430 #ifdef LIBTIEPIE_DYNAMIC 8431 typedef uint32_t(*LibTiePieScpGetClockOutputFrequenciesEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwClockOutput ,
double* pList , uint32_t dwLength );
8433 uint32_t ScpGetClockOutputFrequenciesEx(
LibTiePieHandle_t hDevice , uint32_t dwClockOutput ,
double* pList , uint32_t dwLength );
8460 #ifdef LIBTIEPIE_DYNAMIC 8461 typedef double(*LibTiePieScpGetClockOutputFrequency_t)(
LibTiePieHandle_t hDevice );
8492 #ifdef LIBTIEPIE_DYNAMIC 8493 typedef double(*LibTiePieScpSetClockOutputFrequency_t)(
LibTiePieHandle_t hDevice ,
double dClockOutputFrequency );
8539 #ifdef LIBTIEPIE_DYNAMIC 8540 typedef double(*LibTiePieScpGetSampleFrequencyMax_t)(
LibTiePieHandle_t hDevice );
8561 #ifdef LIBTIEPIE_DYNAMIC 8589 #ifdef LIBTIEPIE_DYNAMIC 8590 typedef double(*LibTiePieScpSetSampleFrequency_t)(
LibTiePieHandle_t hDevice ,
double dSampleFrequency );
8610 #ifdef LIBTIEPIE_DYNAMIC 8611 typedef double(*LibTiePieScpVerifySampleFrequency_t)(
LibTiePieHandle_t hDevice ,
double dSampleFrequency );
8613 double ScpVerifySampleFrequency(
LibTiePieHandle_t hDevice ,
double dSampleFrequency );
8633 #ifdef LIBTIEPIE_DYNAMIC 8634 typedef double(*LibTiePieScpVerifySampleFrequencyEx_t)(
LibTiePieHandle_t hDevice ,
double dSampleFrequency , uint32_t dwMeasureMode , uint8_t byResolution ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
8636 double ScpVerifySampleFrequencyEx(
LibTiePieHandle_t hDevice ,
double dSampleFrequency , uint32_t dwMeasureMode , uint8_t byResolution ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
8656 #ifdef LIBTIEPIE_DYNAMIC 8657 typedef void(*LibTiePieScpVerifySampleFrequenciesEx_t)(
LibTiePieHandle_t hDevice ,
double* pSampleFrequencies , uint32_t dwSampleFrequencyCount , uint32_t dwMeasureMode , uint32_t dwAutoResolutionMode , uint8_t byResolution ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
8659 void ScpVerifySampleFrequenciesEx(
LibTiePieHandle_t hDevice ,
double* pSampleFrequencies , uint32_t dwSampleFrequencyCount , uint32_t dwMeasureMode , uint32_t dwAutoResolutionMode , uint8_t byResolution ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
8700 #ifdef LIBTIEPIE_DYNAMIC 8701 typedef uint64_t(*LibTiePieScpGetRecordLengthMax_t)(
LibTiePieHandle_t hDevice );
8722 #ifdef LIBTIEPIE_DYNAMIC 8723 typedef uint64_t(*LibTiePieScpGetRecordLengthMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode , uint8_t byResolution );
8725 uint64_t ScpGetRecordLengthMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode , uint8_t byResolution );
8746 #ifdef LIBTIEPIE_DYNAMIC 8773 #ifdef LIBTIEPIE_DYNAMIC 8774 typedef uint64_t(*LibTiePieScpSetRecordLength_t)(
LibTiePieHandle_t hDevice , uint64_t qwRecordLength );
8794 #ifdef LIBTIEPIE_DYNAMIC 8795 typedef uint64_t(*LibTiePieScpVerifyRecordLength_t)(
LibTiePieHandle_t hDevice , uint64_t qwRecordLength );
8797 uint64_t ScpVerifyRecordLength(
LibTiePieHandle_t hDevice , uint64_t qwRecordLength );
8817 #ifdef LIBTIEPIE_DYNAMIC 8818 typedef uint64_t(*LibTiePieScpVerifyRecordLengthEx_t)(
LibTiePieHandle_t hDevice , uint64_t qwRecordLength , uint32_t dwMeasureMode , uint8_t byResolution ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
8820 uint64_t ScpVerifyRecordLengthEx(
LibTiePieHandle_t hDevice , uint64_t qwRecordLength , uint32_t dwMeasureMode , uint8_t byResolution ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
8866 #ifdef LIBTIEPIE_DYNAMIC 8892 #ifdef LIBTIEPIE_DYNAMIC 8893 typedef double(*LibTiePieScpSetPreSampleRatio_t)(
LibTiePieHandle_t hDevice ,
double dPreSampleRatio );
8926 #ifdef LIBTIEPIE_DYNAMIC 8927 typedef uint32_t(*LibTiePieScpGetSegmentCountMax_t)(
LibTiePieHandle_t hDevice );
8946 #ifdef LIBTIEPIE_DYNAMIC 8947 typedef uint32_t(*LibTiePieScpGetSegmentCountMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
8949 uint32_t ScpGetSegmentCountMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
8972 #ifdef LIBTIEPIE_DYNAMIC 8999 #ifdef LIBTIEPIE_DYNAMIC 9000 typedef uint32_t(*LibTiePieScpSetSegmentCount_t)(
LibTiePieHandle_t hDevice , uint32_t dwSegmentCount );
9020 #ifdef LIBTIEPIE_DYNAMIC 9021 typedef uint32_t(*LibTiePieScpVerifySegmentCount_t)(
LibTiePieHandle_t hDevice , uint32_t dwSegmentCount );
9023 uint32_t ScpVerifySegmentCount(
LibTiePieHandle_t hDevice , uint32_t dwSegmentCount );
9043 #ifdef LIBTIEPIE_DYNAMIC 9044 typedef uint32_t(*LibTiePieScpVerifySegmentCountEx2_t)(
LibTiePieHandle_t hDevice , uint32_t dwSegmentCount , uint32_t dwMeasureMode , uint64_t qwRecordLength ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9046 uint32_t ScpVerifySegmentCountEx2(
LibTiePieHandle_t hDevice , uint32_t dwSegmentCount , uint32_t dwMeasureMode , uint64_t qwRecordLength ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9077 #ifdef LIBTIEPIE_DYNAMIC 9102 #ifdef LIBTIEPIE_DYNAMIC 9152 #ifdef LIBTIEPIE_DYNAMIC 9177 #ifdef LIBTIEPIE_DYNAMIC 9178 typedef double(*LibTiePieScpSetTriggerTimeOut_t)(
LibTiePieHandle_t hDevice ,
double dTimeOut );
9196 #ifdef LIBTIEPIE_DYNAMIC 9197 typedef double(*LibTiePieScpVerifyTriggerTimeOut_t)(
LibTiePieHandle_t hDevice ,
double dTimeOut );
9215 #ifdef LIBTIEPIE_DYNAMIC 9216 typedef double(*LibTiePieScpVerifyTriggerTimeOutEx_t)(
LibTiePieHandle_t hDevice ,
double dTimeOut , uint32_t dwMeasureMode ,
double dSampleFrequency );
9218 double ScpVerifyTriggerTimeOutEx(
LibTiePieHandle_t hDevice ,
double dTimeOut , uint32_t dwMeasureMode ,
double dSampleFrequency );
9254 #ifdef LIBTIEPIE_DYNAMIC 9279 #ifdef LIBTIEPIE_DYNAMIC 9282 bool8_t ScpHasTriggerDelayEx(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9305 #ifdef LIBTIEPIE_DYNAMIC 9337 #ifdef LIBTIEPIE_DYNAMIC 9338 typedef double(*LibTiePieScpGetTriggerDelayMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode ,
double dSampleFrequency );
9340 double ScpGetTriggerDelayMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode ,
double dSampleFrequency );
9363 #ifdef LIBTIEPIE_DYNAMIC 9390 #ifdef LIBTIEPIE_DYNAMIC 9391 typedef double(*LibTiePieScpSetTriggerDelay_t)(
LibTiePieHandle_t hDevice ,
double dDelay );
9412 #ifdef LIBTIEPIE_DYNAMIC 9413 typedef double(*LibTiePieScpVerifyTriggerDelay_t)(
LibTiePieHandle_t hDevice ,
double dDelay );
9434 #ifdef LIBTIEPIE_DYNAMIC 9435 typedef double(*LibTiePieScpVerifyTriggerDelayEx_t)(
LibTiePieHandle_t hDevice ,
double dDelay , uint32_t dwMeasureMode ,
double dSampleFrequency );
9437 double ScpVerifyTriggerDelayEx(
LibTiePieHandle_t hDevice ,
double dDelay , uint32_t dwMeasureMode ,
double dSampleFrequency );
9477 #ifdef LIBTIEPIE_DYNAMIC 9506 #ifdef LIBTIEPIE_DYNAMIC 9509 bool8_t ScpHasTriggerHoldOffEx(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9532 #ifdef LIBTIEPIE_DYNAMIC 9533 typedef uint64_t(*LibTiePieScpGetTriggerHoldOffCountMax_t)(
LibTiePieHandle_t hDevice );
9553 #ifdef LIBTIEPIE_DYNAMIC 9554 typedef uint64_t(*LibTiePieScpGetTriggerHoldOffCountMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9556 uint64_t ScpGetTriggerHoldOffCountMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9579 #ifdef LIBTIEPIE_DYNAMIC 9580 typedef uint64_t(*LibTiePieScpGetTriggerHoldOffCount_t)(
LibTiePieHandle_t hDevice );
9605 #ifdef LIBTIEPIE_DYNAMIC 9606 typedef uint64_t(*LibTiePieScpSetTriggerHoldOffCount_t)(
LibTiePieHandle_t hDevice , uint64_t qwTriggerHoldOffCount );
9647 #ifdef LIBTIEPIE_DYNAMIC 9670 #ifdef LIBTIEPIE_DYNAMIC 9696 #ifdef LIBTIEPIE_DYNAMIC 9732 #ifdef LIBTIEPIE_DYNAMIC 9733 typedef bool8_t(*LibTiePieScpStartConnectionTestEx_t)(
LibTiePieHandle_t hDevice ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9735 bool8_t ScpStartConnectionTestEx(
LibTiePieHandle_t hDevice ,
const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9760 #ifdef LIBTIEPIE_DYNAMIC 9824 #ifdef LIBTIEPIE_DYNAMIC 9825 typedef uint16_t(*LibTiePieScpGetConnectionTestData_t)(
LibTiePieHandle_t hDevice , LibTiePieTriState_t* pBuffer , uint16_t wChannelCount );
9865 #ifdef LIBTIEPIE_DYNAMIC 9885 #ifdef LIBTIEPIE_DYNAMIC 9906 #ifdef LIBTIEPIE_DYNAMIC 9927 #ifdef LIBTIEPIE_DYNAMIC 9948 #ifdef LIBTIEPIE_DYNAMIC 9969 #ifdef LIBTIEPIE_DYNAMIC 9992 #ifdef LIBTIEPIE_DYNAMIC 9993 typedef void(*LibTiePieGenGetOutputValueMinMax_t)(
LibTiePieHandle_t hDevice ,
double* pMin ,
double* pMax );
9995 void GenGetOutputValueMinMax(
LibTiePieHandle_t hDevice ,
double* pMin ,
double* pMax );
10038 #ifdef LIBTIEPIE_DYNAMIC 10051 #ifdef LIBTIEPIE_DYNAMIC 10073 #ifdef LIBTIEPIE_DYNAMIC 10094 #ifdef LIBTIEPIE_DYNAMIC 10118 #ifdef LIBTIEPIE_DYNAMIC 10140 #ifdef LIBTIEPIE_DYNAMIC 10163 #ifdef LIBTIEPIE_DYNAMIC 10189 #ifdef LIBTIEPIE_DYNAMIC 10213 #ifdef LIBTIEPIE_DYNAMIC 10236 #ifdef LIBTIEPIE_DYNAMIC 10290 #ifdef LIBTIEPIE_DYNAMIC 10312 #ifdef LIBTIEPIE_DYNAMIC 10340 #ifdef LIBTIEPIE_DYNAMIC 10341 typedef uint32_t(*LibTiePieGenSetSignalType_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType );
10388 #ifdef LIBTIEPIE_DYNAMIC 10412 #ifdef LIBTIEPIE_DYNAMIC 10415 bool8_t GenHasAmplitudeEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType );
10441 #ifdef LIBTIEPIE_DYNAMIC 10468 #ifdef LIBTIEPIE_DYNAMIC 10502 #ifdef LIBTIEPIE_DYNAMIC 10503 typedef void(*LibTiePieGenGetAmplitudeMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
10505 void GenGetAmplitudeMinMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
10528 #ifdef LIBTIEPIE_DYNAMIC 10559 #ifdef LIBTIEPIE_DYNAMIC 10560 typedef double(*LibTiePieGenSetAmplitude_t)(
LibTiePieHandle_t hDevice ,
double dAmplitude );
10593 #ifdef LIBTIEPIE_DYNAMIC 10594 typedef double(*LibTiePieGenVerifyAmplitude_t)(
LibTiePieHandle_t hDevice ,
double dAmplitude );
10627 #ifdef LIBTIEPIE_DYNAMIC 10628 typedef double(*LibTiePieGenVerifyAmplitudeEx_t)(
LibTiePieHandle_t hDevice ,
double dAmplitude , uint32_t dwSignalType , uint32_t dwAmplitudeRangeIndex ,
double dOffset );
10630 double GenVerifyAmplitudeEx(
LibTiePieHandle_t hDevice ,
double dAmplitude , uint32_t dwSignalType , uint32_t dwAmplitudeRangeIndex ,
double dOffset );
10685 #ifdef LIBTIEPIE_DYNAMIC 10686 typedef uint32_t(*LibTiePieGenGetAmplitudeRanges_t)(
LibTiePieHandle_t hDevice ,
double* pList , uint32_t dwLength );
10710 #ifdef LIBTIEPIE_DYNAMIC 10752 #ifdef LIBTIEPIE_DYNAMIC 10753 typedef double(*LibTiePieGenSetAmplitudeRange_t)(
LibTiePieHandle_t hDevice ,
double dRange );
10777 #ifdef LIBTIEPIE_DYNAMIC 10805 #ifdef LIBTIEPIE_DYNAMIC 10851 #ifdef LIBTIEPIE_DYNAMIC 10875 #ifdef LIBTIEPIE_DYNAMIC 10901 #ifdef LIBTIEPIE_DYNAMIC 10925 #ifdef LIBTIEPIE_DYNAMIC 10957 #ifdef LIBTIEPIE_DYNAMIC 10958 typedef void(*LibTiePieGenGetOffsetMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
10960 void GenGetOffsetMinMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
10983 #ifdef LIBTIEPIE_DYNAMIC 11011 #ifdef LIBTIEPIE_DYNAMIC 11012 typedef double(*LibTiePieGenSetOffset_t)(
LibTiePieHandle_t hDevice ,
double dOffset );
11043 #ifdef LIBTIEPIE_DYNAMIC 11044 typedef double(*LibTiePieGenVerifyOffset_t)(
LibTiePieHandle_t hDevice ,
double dOffset );
11076 #ifdef LIBTIEPIE_DYNAMIC 11077 typedef double(*LibTiePieGenVerifyOffsetEx_t)(
LibTiePieHandle_t hDevice ,
double dOffset , uint32_t dwSignalType ,
double dAmplitude );
11079 double GenVerifyOffsetEx(
LibTiePieHandle_t hDevice ,
double dOffset , uint32_t dwSignalType ,
double dAmplitude );
11137 #ifdef LIBTIEPIE_DYNAMIC 11138 typedef uint32_t(*LibTiePieGenGetFrequencyModes_t)(
LibTiePieHandle_t hDevice );
11165 #ifdef LIBTIEPIE_DYNAMIC 11166 typedef uint32_t(*LibTiePieGenGetFrequencyModesEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType );
11168 uint32_t GenGetFrequencyModesEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType );
11190 #ifdef LIBTIEPIE_DYNAMIC 11191 typedef uint32_t(*LibTiePieGenGetFrequencyMode_t)(
LibTiePieHandle_t hDevice );
11220 #ifdef LIBTIEPIE_DYNAMIC 11221 typedef uint32_t(*LibTiePieGenSetFrequencyMode_t)(
LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode );
11250 #ifdef LIBTIEPIE_DYNAMIC 11275 #ifdef LIBTIEPIE_DYNAMIC 11276 typedef bool8_t(*LibTiePieGenHasFrequencyEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , uint32_t dwSignalType );
11278 bool8_t GenHasFrequencyEx(
LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , uint32_t dwSignalType );
11301 #ifdef LIBTIEPIE_DYNAMIC 11325 #ifdef LIBTIEPIE_DYNAMIC 11358 #ifdef LIBTIEPIE_DYNAMIC 11359 typedef void(*LibTiePieGenGetFrequencyMinMax_t)(
LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode ,
double* pMin ,
double* pMax );
11361 void GenGetFrequencyMinMax(
LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode ,
double* pMin ,
double* pMax );
11390 #ifdef LIBTIEPIE_DYNAMIC 11391 typedef void(*LibTiePieGenGetFrequencyMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
11393 void GenGetFrequencyMinMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
11416 #ifdef LIBTIEPIE_DYNAMIC 11447 #ifdef LIBTIEPIE_DYNAMIC 11448 typedef double(*LibTiePieGenSetFrequency_t)(
LibTiePieHandle_t hDevice ,
double dFrequency );
11479 #ifdef LIBTIEPIE_DYNAMIC 11480 typedef double(*LibTiePieGenVerifyFrequency_t)(
LibTiePieHandle_t hDevice ,
double dFrequency );
11514 #ifdef LIBTIEPIE_DYNAMIC 11515 typedef double(*LibTiePieGenVerifyFrequencyEx2_t)(
LibTiePieHandle_t hDevice ,
double dFrequency , uint32_t dwFrequencyMode , uint32_t dwSignalType , uint64_t qwDataLength ,
double dWidth );
11517 double GenVerifyFrequencyEx2(
LibTiePieHandle_t hDevice ,
double dFrequency , uint32_t dwFrequencyMode , uint32_t dwSignalType , uint64_t qwDataLength ,
double dWidth );
11561 #ifdef LIBTIEPIE_DYNAMIC 11585 #ifdef LIBTIEPIE_DYNAMIC 11612 #ifdef LIBTIEPIE_DYNAMIC 11637 #ifdef LIBTIEPIE_DYNAMIC 11669 #ifdef LIBTIEPIE_DYNAMIC 11670 typedef void(*LibTiePieGenGetPhaseMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
11672 void GenGetPhaseMinMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
11696 #ifdef LIBTIEPIE_DYNAMIC 11727 #ifdef LIBTIEPIE_DYNAMIC 11728 typedef double(*LibTiePieGenSetPhase_t)(
LibTiePieHandle_t hDevice ,
double dPhase );
11759 #ifdef LIBTIEPIE_DYNAMIC 11760 typedef double(*LibTiePieGenVerifyPhase_t)(
LibTiePieHandle_t hDevice ,
double dPhase );
11791 #ifdef LIBTIEPIE_DYNAMIC 11792 typedef double(*LibTiePieGenVerifyPhaseEx_t)(
LibTiePieHandle_t hDevice ,
double dPhase , uint32_t dwSignalType );
11794 double GenVerifyPhaseEx(
LibTiePieHandle_t hDevice ,
double dPhase , uint32_t dwSignalType );
11839 #ifdef LIBTIEPIE_DYNAMIC 11863 #ifdef LIBTIEPIE_DYNAMIC 11889 #ifdef LIBTIEPIE_DYNAMIC 11913 #ifdef LIBTIEPIE_DYNAMIC 11945 #ifdef LIBTIEPIE_DYNAMIC 11946 typedef void(*LibTiePieGenGetSymmetryMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
11948 void GenGetSymmetryMinMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double* pMin ,
double* pMax );
11971 #ifdef LIBTIEPIE_DYNAMIC 12000 #ifdef LIBTIEPIE_DYNAMIC 12001 typedef double(*LibTiePieGenSetSymmetry_t)(
LibTiePieHandle_t hDevice ,
double dSymmetry );
12032 #ifdef LIBTIEPIE_DYNAMIC 12033 typedef double(*LibTiePieGenVerifySymmetry_t)(
LibTiePieHandle_t hDevice ,
double dSymmetry );
12064 #ifdef LIBTIEPIE_DYNAMIC 12065 typedef double(*LibTiePieGenVerifySymmetryEx_t)(
LibTiePieHandle_t hDevice ,
double dSymmetry , uint32_t dwSignalType );
12067 double GenVerifySymmetryEx(
LibTiePieHandle_t hDevice ,
double dSymmetry , uint32_t dwSignalType );
12115 #ifdef LIBTIEPIE_DYNAMIC 12139 #ifdef LIBTIEPIE_DYNAMIC 12165 #ifdef LIBTIEPIE_DYNAMIC 12189 #ifdef LIBTIEPIE_DYNAMIC 12222 #ifdef LIBTIEPIE_DYNAMIC 12223 typedef void(*LibTiePieGenGetWidthMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double dSignalFrequency ,
double* pMin ,
double* pMax );
12225 void GenGetWidthMinMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double dSignalFrequency ,
double* pMin ,
double* pMax );
12248 #ifdef LIBTIEPIE_DYNAMIC 12278 #ifdef LIBTIEPIE_DYNAMIC 12279 typedef double(*LibTiePieGenSetWidth_t)(
LibTiePieHandle_t hDevice ,
double dWidth );
12310 #ifdef LIBTIEPIE_DYNAMIC 12311 typedef double(*LibTiePieGenVerifyWidth_t)(
LibTiePieHandle_t hDevice ,
double dWidth );
12343 #ifdef LIBTIEPIE_DYNAMIC 12344 typedef double(*LibTiePieGenVerifyWidthEx_t)(
LibTiePieHandle_t hDevice ,
double dWidth , uint32_t dwSignalType ,
double dSignalFrequency );
12346 double GenVerifyWidthEx(
LibTiePieHandle_t hDevice ,
double dWidth , uint32_t dwSignalType ,
double dSignalFrequency );
12406 #ifdef LIBTIEPIE_DYNAMIC 12445 #ifdef LIBTIEPIE_DYNAMIC 12476 #ifdef LIBTIEPIE_DYNAMIC 12477 typedef double(*LibTiePieGenGetLeadingEdgeTimeMin_t)(
LibTiePieHandle_t hDevice );
12505 #ifdef LIBTIEPIE_DYNAMIC 12506 typedef double(*LibTiePieGenGetLeadingEdgeTimeMax_t)(
LibTiePieHandle_t hDevice );
12549 #ifdef LIBTIEPIE_DYNAMIC 12550 typedef void(*LibTiePieGenGetLeadingEdgeTimeMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double dSignalFrequency ,
double dSymmetry ,
double dWidth ,
double dTrailingEdgeTime ,
double* pMin ,
double* pMax );
12552 void GenGetLeadingEdgeTimeMinMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double dSignalFrequency ,
double dSymmetry ,
double dWidth ,
double dTrailingEdgeTime ,
double* pMin ,
double* pMax );
12580 #ifdef LIBTIEPIE_DYNAMIC 12581 typedef double(*LibTiePieGenGetLeadingEdgeTime_t)(
LibTiePieHandle_t hDevice );
12614 #ifdef LIBTIEPIE_DYNAMIC 12615 typedef double(*LibTiePieGenSetLeadingEdgeTime_t)(
LibTiePieHandle_t hDevice ,
double dLeadingEdgeTime );
12655 #ifdef LIBTIEPIE_DYNAMIC 12656 typedef double(*LibTiePieGenVerifyLeadingEdgeTime_t)(
LibTiePieHandle_t hDevice ,
double dLeadingEdgeTime );
12658 double GenVerifyLeadingEdgeTime(
LibTiePieHandle_t hDevice ,
double dLeadingEdgeTime );
12699 #ifdef LIBTIEPIE_DYNAMIC 12700 typedef double(*LibTiePieGenVerifyLeadingEdgeTimeEx_t)(
LibTiePieHandle_t hDevice ,
double dLeadingEdgeTime , uint32_t dwSignalType ,
double dSignalFrequency ,
double dSymmetry ,
double dWidth ,
double dTrailingEdgeTime );
12702 double GenVerifyLeadingEdgeTimeEx(
LibTiePieHandle_t hDevice ,
double dLeadingEdgeTime , uint32_t dwSignalType ,
double dSignalFrequency ,
double dSymmetry ,
double dWidth ,
double dTrailingEdgeTime );
12730 #ifdef LIBTIEPIE_DYNAMIC 12731 typedef double(*LibTiePieGenGetTrailingEdgeTimeMin_t)(
LibTiePieHandle_t hDevice );
12759 #ifdef LIBTIEPIE_DYNAMIC 12760 typedef double(*LibTiePieGenGetTrailingEdgeTimeMax_t)(
LibTiePieHandle_t hDevice );
12804 #ifdef LIBTIEPIE_DYNAMIC 12805 typedef void(*LibTiePieGenGetTrailingEdgeTimeMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double dSignalFrequency ,
double dSymmetry ,
double dWidth ,
double dLeadingEdgeTime ,
double* pMin ,
double* pMax );
12807 void GenGetTrailingEdgeTimeMinMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType ,
double dSignalFrequency ,
double dSymmetry ,
double dWidth ,
double dLeadingEdgeTime ,
double* pMin ,
double* pMax );
12835 #ifdef LIBTIEPIE_DYNAMIC 12836 typedef double(*LibTiePieGenGetTrailingEdgeTime_t)(
LibTiePieHandle_t hDevice );
12869 #ifdef LIBTIEPIE_DYNAMIC 12870 typedef double(*LibTiePieGenSetTrailingEdgeTime_t)(
LibTiePieHandle_t hDevice ,
double dTrailingEdgeTime );
12909 #ifdef LIBTIEPIE_DYNAMIC 12910 typedef double(*LibTiePieGenVerifyTrailingEdgeTime_t)(
LibTiePieHandle_t hDevice ,
double dTrailingEdgeTime );
12912 double GenVerifyTrailingEdgeTime(
LibTiePieHandle_t hDevice ,
double dTrailingEdgeTime );
12952 #ifdef LIBTIEPIE_DYNAMIC 12953 typedef double(*LibTiePieGenVerifyTrailingEdgeTimeEx_t)(
LibTiePieHandle_t hDevice ,
double dTrailingEdgeTime , uint32_t dwSignalType ,
double dSignalFrequency ,
double dSymmetry ,
double dWidth ,
double dLeadingEdgeTime );
12955 double GenVerifyTrailingEdgeTimeEx(
LibTiePieHandle_t hDevice ,
double dTrailingEdgeTime , uint32_t dwSignalType ,
double dSignalFrequency ,
double dSymmetry ,
double dWidth ,
double dLeadingEdgeTime );
13029 #ifdef LIBTIEPIE_DYNAMIC 13053 #ifdef LIBTIEPIE_DYNAMIC 13078 #ifdef LIBTIEPIE_DYNAMIC 13079 typedef uint64_t(*LibTiePieGenGetDataLengthMin_t)(
LibTiePieHandle_t hDevice );
13101 #ifdef LIBTIEPIE_DYNAMIC 13102 typedef uint64_t(*LibTiePieGenGetDataLengthMax_t)(
LibTiePieHandle_t hDevice );
13132 #ifdef LIBTIEPIE_DYNAMIC 13133 typedef void(*LibTiePieGenGetDataLengthMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType , uint64_t* pMin , uint64_t* pMax );
13135 void GenGetDataLengthMinMaxEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType , uint64_t* pMin , uint64_t* pMax );
13157 #ifdef LIBTIEPIE_DYNAMIC 13189 #ifdef LIBTIEPIE_DYNAMIC 13190 typedef uint64_t(*LibTiePieGenVerifyDataLength_t)(
LibTiePieHandle_t hDevice , uint64_t qwDataLength );
13192 uint64_t GenVerifyDataLength(
LibTiePieHandle_t hDevice , uint64_t qwDataLength );
13220 #ifdef LIBTIEPIE_DYNAMIC 13221 typedef uint64_t(*LibTiePieGenVerifyDataLengthEx_t)(
LibTiePieHandle_t hDevice , uint64_t qwDataLength , uint32_t dwSignalType );
13223 uint64_t GenVerifyDataLengthEx(
LibTiePieHandle_t hDevice , uint64_t qwDataLength , uint32_t dwSignalType );
13255 #ifdef LIBTIEPIE_DYNAMIC 13256 typedef void(*LibTiePieGenSetData_t)(
LibTiePieHandle_t hDevice ,
const float* pBuffer , uint64_t qwSampleCount );
13289 #ifdef LIBTIEPIE_DYNAMIC 13290 typedef void(*LibTiePieGenSetDataEx_t)(
LibTiePieHandle_t hDevice ,
const float* pBuffer , uint64_t qwSampleCount , uint32_t dwSignalType , uint32_t dwReserved );
13292 void GenSetDataEx(
LibTiePieHandle_t hDevice ,
const float* pBuffer , uint64_t qwSampleCount , uint32_t dwSignalType , uint32_t dwReserved );
13311 #ifdef LIBTIEPIE_DYNAMIC 13326 #ifdef LIBTIEPIE_DYNAMIC 13327 typedef void(*LibTiePieGenGetDataRawValueRange_t)(
LibTiePieHandle_t hDevice , int64_t* pMin , int64_t* pZero , int64_t* pMax );
13329 void GenGetDataRawValueRange(
LibTiePieHandle_t hDevice , int64_t* pMin , int64_t* pZero , int64_t* pMax );
13339 #ifdef LIBTIEPIE_DYNAMIC 13340 typedef int64_t(*LibTiePieGenGetDataRawValueMin_t)(
LibTiePieHandle_t hDevice );
13352 #ifdef LIBTIEPIE_DYNAMIC 13353 typedef int64_t(*LibTiePieGenGetDataRawValueZero_t)(
LibTiePieHandle_t hDevice );
13365 #ifdef LIBTIEPIE_DYNAMIC 13366 typedef int64_t(*LibTiePieGenGetDataRawValueMax_t)(
LibTiePieHandle_t hDevice );
13381 #ifdef LIBTIEPIE_DYNAMIC 13382 typedef void(*LibTiePieGenSetDataRaw_t)(
LibTiePieHandle_t hDevice ,
const void* pBuffer , uint64_t qwSampleCount );
13384 void GenSetDataRaw(
LibTiePieHandle_t hDevice ,
const void* pBuffer , uint64_t qwSampleCount );
13399 #ifdef LIBTIEPIE_DYNAMIC 13400 typedef void(*LibTiePieGenSetDataRawEx_t)(
LibTiePieHandle_t hDevice ,
const void* pBuffer , uint64_t qwSampleCount , uint32_t dwSignalType , uint32_t dwReserved );
13402 void GenSetDataRawEx(
LibTiePieHandle_t hDevice ,
const void* pBuffer , uint64_t qwSampleCount , uint32_t dwSignalType , uint32_t dwReserved );
13452 #ifdef LIBTIEPIE_DYNAMIC 13477 #ifdef LIBTIEPIE_DYNAMIC 13478 typedef uint64_t(*LibTiePieGenGetModesEx_t)(
LibTiePieHandle_t hDevice , uint32_t dwSignalType , uint32_t dwFrequencyMode );
13480 uint64_t GenGetModesEx(
LibTiePieHandle_t hDevice , uint32_t dwSignalType , uint32_t dwFrequencyMode );
13502 #ifdef LIBTIEPIE_DYNAMIC 13525 #ifdef LIBTIEPIE_DYNAMIC 13552 #ifdef LIBTIEPIE_DYNAMIC 13553 typedef uint64_t(*LibTiePieGenSetMode_t)(
LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode );
13632 #ifdef LIBTIEPIE_DYNAMIC 13656 #ifdef LIBTIEPIE_DYNAMIC 13657 typedef uint64_t(*LibTiePieGenGetBurstCountMin_t)(
LibTiePieHandle_t hDevice );
13680 #ifdef LIBTIEPIE_DYNAMIC 13681 typedef uint64_t(*LibTiePieGenGetBurstCountMax_t)(
LibTiePieHandle_t hDevice );
13710 #ifdef LIBTIEPIE_DYNAMIC 13711 typedef void(*LibTiePieGenGetBurstCountMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint64_t* pMin , uint64_t* pMax );
13713 void GenGetBurstCountMinMaxEx(
LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint64_t* pMin , uint64_t* pMax );
13736 #ifdef LIBTIEPIE_DYNAMIC 13764 #ifdef LIBTIEPIE_DYNAMIC 13765 typedef uint64_t(*LibTiePieGenSetBurstCount_t)(
LibTiePieHandle_t hDevice , uint64_t qwBurstCount );
13788 #ifdef LIBTIEPIE_DYNAMIC 13789 typedef uint64_t(*LibTiePieGenGetBurstSampleCountMin_t)(
LibTiePieHandle_t hDevice );
13812 #ifdef LIBTIEPIE_DYNAMIC 13813 typedef uint64_t(*LibTiePieGenGetBurstSampleCountMax_t)(
LibTiePieHandle_t hDevice );
13842 #ifdef LIBTIEPIE_DYNAMIC 13843 typedef void(*LibTiePieGenGetBurstSampleCountMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint64_t* pMin , uint64_t* pMax );
13845 void GenGetBurstSampleCountMinMaxEx(
LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint64_t* pMin , uint64_t* pMax );
13868 #ifdef LIBTIEPIE_DYNAMIC 13869 typedef uint64_t(*LibTiePieGenGetBurstSampleCount_t)(
LibTiePieHandle_t hDevice );
13896 #ifdef LIBTIEPIE_DYNAMIC 13897 typedef uint64_t(*LibTiePieGenSetBurstSampleCount_t)(
LibTiePieHandle_t hDevice , uint64_t qwBurstSampleCount );
13920 #ifdef LIBTIEPIE_DYNAMIC 13921 typedef uint64_t(*LibTiePieGenGetBurstSegmentCountMin_t)(
LibTiePieHandle_t hDevice );
13944 #ifdef LIBTIEPIE_DYNAMIC 13945 typedef uint64_t(*LibTiePieGenGetBurstSegmentCountMax_t)(
LibTiePieHandle_t hDevice );
13978 #ifdef LIBTIEPIE_DYNAMIC 13979 typedef void(*LibTiePieGenGetBurstSegmentCountMinMaxEx_t)(
LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint32_t dwSignalType , uint32_t dwFrequencyMode ,
double dFrequency , uint64_t qwDataLength , uint64_t* pMin , uint64_t* pMax );
13981 void GenGetBurstSegmentCountMinMaxEx(
LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint32_t dwSignalType , uint32_t dwFrequencyMode ,
double dFrequency , uint64_t qwDataLength , uint64_t* pMin , uint64_t* pMax );
14004 #ifdef LIBTIEPIE_DYNAMIC 14005 typedef uint64_t(*LibTiePieGenGetBurstSegmentCount_t)(
LibTiePieHandle_t hDevice );
14032 #ifdef LIBTIEPIE_DYNAMIC 14033 typedef uint64_t(*LibTiePieGenSetBurstSegmentCount_t)(
LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount );
14063 #ifdef LIBTIEPIE_DYNAMIC 14064 typedef uint64_t(*LibTiePieGenVerifyBurstSegmentCount_t)(
LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount );
14066 uint64_t GenVerifyBurstSegmentCount(
LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount );
14098 #ifdef LIBTIEPIE_DYNAMIC 14099 typedef uint64_t(*LibTiePieGenVerifyBurstSegmentCountEx_t)(
LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount , uint64_t qwGeneratorMode , uint32_t dwSignalType , uint32_t dwFrequencyMode ,
double dFrequency , uint64_t qwDataLength );
14101 uint64_t GenVerifyBurstSegmentCountEx(
LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount , uint64_t qwGeneratorMode , uint32_t dwSignalType , uint32_t dwFrequencyMode ,
double dFrequency , uint64_t qwDataLength );
14174 #ifdef LIBTIEPIE_DYNAMIC 14175 typedef void(*LibTiePieGenSetCallbackBurstCompleted_t)(
LibTiePieHandle_t hDevice , TpCallback_t pCallback ,
void* pData );
14180 #ifdef LIBTIEPIE_LINUX 14199 #ifdef LIBTIEPIE_DYNAMIC 14200 typedef void(*LibTiePieGenSetEventBurstCompleted_t)(
LibTiePieHandle_t hDevice ,
int fdEvent );
14207 #ifdef LIBTIEPIE_WINDOWS 14226 #ifdef LIBTIEPIE_DYNAMIC 14227 typedef void(*LibTiePieGenSetEventBurstCompleted_t)(
LibTiePieHandle_t hDevice , HANDLE hEvent );
14251 #ifdef LIBTIEPIE_DYNAMIC 14252 typedef void(*LibTiePieGenSetMessageBurstCompleted_t)(
LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
14287 #ifdef LIBTIEPIE_DYNAMIC 14288 typedef void(*LibTiePieGenSetCallbackControllableChanged_t)(
LibTiePieHandle_t hDevice , TpCallback_t pCallback ,
void* pData );
14293 #ifdef LIBTIEPIE_LINUX 14312 #ifdef LIBTIEPIE_DYNAMIC 14313 typedef void(*LibTiePieGenSetEventControllableChanged_t)(
LibTiePieHandle_t hDevice ,
int fdEvent );
14320 #ifdef LIBTIEPIE_WINDOWS 14339 #ifdef LIBTIEPIE_DYNAMIC 14340 typedef void(*LibTiePieGenSetEventControllableChanged_t)(
LibTiePieHandle_t hDevice , HANDLE hEvent );
14364 #ifdef LIBTIEPIE_DYNAMIC 14365 typedef void(*LibTiePieGenSetMessageControllableChanged_t)(
LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
14407 #ifdef LIBTIEPIE_DYNAMIC 14444 #ifdef LIBTIEPIE_DYNAMIC 14445 typedef uint32_t(*LibTiePieI2CGetInternalAddresses_t)(
LibTiePieHandle_t hDevice , uint16_t* pAddresses , uint32_t dwLength );
14481 #ifdef LIBTIEPIE_DYNAMIC 14482 typedef bool8_t(*LibTiePieI2CRead_t)(
LibTiePieHandle_t hDevice , uint16_t wAddress ,
void* pBuffer , uint32_t dwSize , bool8_t bStop );
14484 bool8_t
I2CRead(
LibTiePieHandle_t hDevice , uint16_t wAddress ,
void* pBuffer , uint32_t dwSize , bool8_t bStop );
14510 #ifdef LIBTIEPIE_DYNAMIC 14540 #ifdef LIBTIEPIE_DYNAMIC 14580 #ifdef LIBTIEPIE_DYNAMIC 14581 typedef bool8_t(*LibTiePieI2CWrite_t)(
LibTiePieHandle_t hDevice , uint16_t wAddress ,
const void* pBuffer , uint32_t dwSize , bool8_t bStop );
14583 bool8_t
I2CWrite(
LibTiePieHandle_t hDevice , uint16_t wAddress ,
const void* pBuffer , uint32_t dwSize , bool8_t bStop );
14611 #ifdef LIBTIEPIE_DYNAMIC 14643 #ifdef LIBTIEPIE_DYNAMIC 14644 typedef bool8_t(*LibTiePieI2CWriteByteByte_t)(
LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t byValue1 , uint8_t byValue2 );
14676 #ifdef LIBTIEPIE_DYNAMIC 14677 typedef bool8_t(*LibTiePieI2CWriteByteWord_t)(
LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t byValue1 , uint16_t wValue2 );
14708 #ifdef LIBTIEPIE_DYNAMIC 14752 #ifdef LIBTIEPIE_DYNAMIC 14753 typedef bool8_t(*LibTiePieI2CWriteRead_t)(
LibTiePieHandle_t hDevice , uint16_t wAddress ,
const void* pWriteBuffer , uint32_t dwWriteSize ,
void* pReadBuffer , uint32_t dwReadSize );
14755 bool8_t
I2CWriteRead(
LibTiePieHandle_t hDevice , uint16_t wAddress ,
const void* pWriteBuffer , uint32_t dwWriteSize ,
void* pReadBuffer , uint32_t dwReadSize );
14783 #ifdef LIBTIEPIE_DYNAMIC 14806 #ifdef LIBTIEPIE_DYNAMIC 14831 #ifdef LIBTIEPIE_DYNAMIC 14832 typedef double(*LibTiePieI2CSetSpeed_t)(
LibTiePieHandle_t hDevice ,
double dSpeed );
14859 #ifdef LIBTIEPIE_DYNAMIC 14860 typedef double(*LibTiePieI2CVerifySpeed_t)(
LibTiePieHandle_t hDevice ,
double dSpeed );
14922 #ifdef LIBTIEPIE_DYNAMIC 14943 #ifdef LIBTIEPIE_DYNAMIC 14944 typedef void(*LibTiePieHlpPointerArraySet_t)( LibTiePiePointerArray_t pArray , uint32_t dwIndex ,
void* pPointer );
14946 void HlpPointerArraySet( LibTiePiePointerArray_t pArray , uint32_t dwIndex ,
void* pPointer );
14961 #ifdef LIBTIEPIE_DYNAMIC 14962 typedef void(*LibTiePieHlpPointerArrayDelete_t)( LibTiePiePointerArray_t pArray );
uint64_t ScpSetRecordLength(LibTiePieHandle_t hDevice, uint64_t qwRecordLength)
Set the record length of a specified oscilloscope.
bool8_t ScpChGetSafeGroundEnabled(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether SafeGround is enabled for a specified channel.
uint64_t GenGetBurstSegmentCountMax(LibTiePieHandle_t hDevice)
Get the maximum burst segment count for the current settings of a specified generator.
bool8_t GenHasAmplitude(LibTiePieHandle_t hDevice)
Check whether the current signal type of a specified generator supports controlling the signal amplit...
uint32_t ScpGetClockSource(LibTiePieHandle_t hDevice)
Get the currently selected clock source of the specified oscilloscope.
uint16_t ScpGetConnectionTestData(LibTiePieHandle_t hDevice, LibTiePieTriState_t *pBuffer, uint16_t wChannelCount)
Get the connection test result data for a specified oscilloscope.
uint32_t GenGetFrequencyMode(LibTiePieHandle_t hDevice)
Get the current generator frequency mode of a specified generator.
uint32_t DevGetName(LibTiePieHandle_t hDevice, char *pBuffer, uint32_t dwBufferLength)
Get the full name of the device.
void ScpSetEventDataReady(LibTiePieHandle_t hDevice, int fdEvent)
Set an event file descriptor which is set when the oscilloscope has new measurement data ready...
bool8_t GenGetOutputOn(LibTiePieHandle_t hDevice)
Check whether the output of a specified generator is enabled.
bool8_t I2CWriteByteWord(LibTiePieHandle_t hDevice, uint16_t wAddress, uint8_t byValue1, uint16_t wValue2)
Write one byte and one word to a specified address on the I2C bus, using a specified I2C host...
double GenGetLeadingEdgeTimeMin(LibTiePieHandle_t hDevice)
Get the minimum leading edge time with the current pulse width and signal frequency, of a specified generator.
uint32_t LstDevGetProductId(uint32_t dwIdKind, uint32_t dwId)
Get the product id of the listed device.
TpVersion_t LstDevGetDriverVersion(uint32_t dwIdKind, uint32_t dwId)
Get the version number of the driver currently used by the listed device.
bool8_t ScpChHasSafeGround(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether the specified channel has SafeGround.
void GenSetMessageControllableChanged(LibTiePieHandle_t hDevice, HWND hWnd, WPARAM wParam, LPARAM lParam)
Set window handle to which a WM_LIBTIEPIE_GEN_CONTROLLABLECHANGED message is sent when the generator ...
uint32_t ScpGetClockSourceFrequencies(LibTiePieHandle_t hDevice, double *pList, uint32_t dwLength)
Get an array with the supported clock source frequencies of the specified oscilloscope.
double GenGetLeadingEdgeTime(LibTiePieHandle_t hDevice)
Get the current leading edge time with the current pulse width and signal frequency, of a specified generator.
double ScpChGetDataValueMax(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the maximum value of the input range the current data was measured with.
void(* TpCallbackDeviceList_t)(void *pData, uint32_t dwDeviceTypes, uint32_t dwSerialNumber)
void ObjSetEventEvent(LibTiePieHandle_t hHandle, int fdEvent)
Set an event file descriptor which is set when an event occurs.
bool8_t I2CWriteByte(LibTiePieHandle_t hDevice, uint16_t wAddress, uint8_t byValue)
Write one byte to a specified address on the I2C bus, using a specified I2C host. ...
uint8_t ScpGetResolution(LibTiePieHandle_t hDevice)
Get the current resolution of the specified oscilloscope.
uint32_t ScpChGetBandwidths(LibTiePieHandle_t hDevice, uint16_t wCh, double *pList, uint32_t dwLength)
Get the supported input bandwidths for a specified channel.
double GenGetTrailingEdgeTimeMin(LibTiePieHandle_t hDevice)
Get the minimum trailing edge time with the current pulse width and signal frequency, of a specified generator.
bool8_t ScpChTrSetEnabled(LibTiePieHandle_t hDevice, uint16_t wCh, bool8_t bEnable)
To select a channel as trigger source, set channel trigger enable.
bool8_t GenStart(LibTiePieHandle_t hDevice)
Start the signal generation of a specified generator.
uint32_t GenGetStatus(LibTiePieHandle_t hDevice)
Get the current signal generation status of a specified generator.
bool8_t ScpIsDataReady(LibTiePieHandle_t hDevice)
Check whether new, unread measured data is available.
double GenGetTrailingEdgeTime(LibTiePieHandle_t hDevice)
Get the current trailing edge time with the current pulse width and signal frequency, of a specified generator.
bool8_t GenIsDifferential(LibTiePieHandle_t hDevice)
Check whether the output of a specified generator is differential.
uint8_t ScpSetResolution(LibTiePieHandle_t hDevice, uint8_t byResolution)
Set the resolution of the specified oscilloscope.
uint32_t LstCreateCombinedDevice(const LibTiePieHandle_t *pDeviceHandles, uint32_t dwCount)
Create a combined instrument.
double ScpGetTriggerDelay(LibTiePieHandle_t hDevice)
Get the currently selected trigger delay in seconds, for a specified oscilloscope.
uint32_t DevGetSerialNumber(LibTiePieHandle_t hDevice)
Get the serial number of the device.
void(* TpCallbackEvent_t)(void *pData, uint32_t dwEvent, uint32_t dwValue)
bool8_t ScpHasTrigger(LibTiePieHandle_t hDevice)
Check whether the oscilloscope has trigger support with the currently selected measure mode...
double ScpSetTriggerDelay(LibTiePieHandle_t hDevice, double dDelay)
Set trigger delay in seconds, for a specified oscilloscope.
double ScpGetTriggerTimeOut(LibTiePieHandle_t hDevice)
Get the currently selected trigger time out in seconds, for a specified oscilloscope.
bool8_t ScpStartConnectionTest(LibTiePieHandle_t hDevice)
Perform a connection test on all enabled channels of a specified oscilloscope.
double GenGetOutputValueMin(LibTiePieHandle_t hDevice)
Get the minimum output value of a specified generator.
void LstSetMessageDeviceCanOpenChanged(HWND hWnd)
Set a window handle to which a WM_LIBTIEPIE_LST_DEVICEREMOVED message is sent when the device can ope...
double GenGetPhase(LibTiePieHandle_t hDevice)
Get the current signal phase of a specified generator.
uint32_t GenGetSignalType(LibTiePieHandle_t hDevice)
Get the currently selected signal type of a specified generator.
void LstSetEventDeviceRemoved(int fdEvent)
Set an event file descriptor which is set when a device is removed from the device list...
bool8_t I2CIsInternalAddress(LibTiePieHandle_t hDevice, uint16_t wAddress)
Check whether an address is used internally.
void GenSetCallbackControllableChanged(LibTiePieHandle_t hDevice, TpCallback_t pCallback, void *pData)
Set a callback function which is called when the generator controllable property changes.
void GenSetEventControllableChanged(LibTiePieHandle_t hDevice, int fdEvent)
Set an event file descriptor which is set when the generator controllable property changes...
TpVersion_t LstDevGetFirmwareVersion(uint32_t dwIdKind, uint32_t dwId)
Get the version number of the firmware currently used by the listed device.
TpVersion_t LibGetVersion(void)
Get the library version number.
uint64_t GenGetBurstSampleCountMax(LibTiePieHandle_t hDevice)
Get the maximum burst sample count for the current generator mode of a specified generator.
double ScpGetClockSourceFrequency(LibTiePieHandle_t hDevice)
Get the current clock source frequency of the specified oscilloscope.
void ScpSetCallbackDataOverflow(LibTiePieHandle_t hDevice, TpCallback_t pCallback, void *pData)
Set a callback function which is called when the oscilloscope streaming measurement caused an data ov...
double ScpChGetSafeGroundThresholdMax(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the maximum SafeGround threshold current for the specified channel.
bool8_t GenIsRunning(LibTiePieHandle_t hDevice)
Check whether the generator is running.
double ScpSetClockOutputFrequency(LibTiePieHandle_t hDevice, double dClockOutputFrequency)
Set the clock output frequency of the specified oscilloscope.
void LstSetCallbackDeviceRemoved(TpCallbackDeviceList_t pCallback, void *pData)
Set a callback function which is called when a device is removed from the device list.
uint32_t ScpChTrSetCondition(LibTiePieHandle_t hDevice, uint16_t wCh, uint32_t dwCondition)
Set the trigger condition for a specified channel.
uint32_t ScpChGetRanges(LibTiePieHandle_t hDevice, uint16_t wCh, double *pList, uint32_t dwLength)
Get the supported input ranges for a specified channel, with the currently selected coupling...
double GenSetFrequency(LibTiePieHandle_t hDevice, double dFrequency)
Set signal/sample frequency, of a specified generator.
uint64_t GenSetBurstSegmentCount(LibTiePieHandle_t hDevice, uint64_t qwBurstSegmentCount)
Set the burst segment count of a specified generator.
double GenSetSymmetry(LibTiePieHandle_t hDevice, double dSymmetry)
Set the signal symmetry of a specified generator.
double GenSetAmplitudeRange(LibTiePieHandle_t hDevice, double dRange)
Set the amplitude range for a specified generator.
double ScpChSetRange(LibTiePieHandle_t hDevice, uint16_t wCh, double dRange)
Set the input range for a specified channel.
uint64_t ScpGetData(LibTiePieHandle_t hDevice, float **pBuffers, uint16_t wChannelCount, uint64_t qwStartIndex, uint64_t qwSampleCount)
Get the measurement data for specified channels.
bool8_t DevIsRemoved(LibTiePieHandle_t hDevice)
Check whether a device is removed.
double GenGetSymmetryMin(LibTiePieHandle_t hDevice)
Get the minimum signal symmetry of a specified generator.
const char * LibGetLastStatusStr(void)
Get the last status value as text.
double GenGetOutputValueMax(LibTiePieHandle_t hDevice)
Get the maximum output value of a specified generator.
void LstSetMessageDeviceAdded(HWND hWnd)
Set a window handle to which a WM_LIBTIEPIE_LST_DEVICEADDED message is sent when a device is added to...
bool8_t I2CWrite(LibTiePieHandle_t hDevice, uint16_t wAddress, const void *pBuffer, uint32_t dwSize, bool8_t bStop)
Write data to a specified address on the I2C bus, using a specified I2C host.
double ScpChSetSafeGroundThreshold(LibTiePieHandle_t hDevice, uint16_t wCh, double dThreshold)
Set the SafeGround threshold current for the specified channel.
void LstSetEventDeviceAdded(int fdEvent)
Set an event file descriptor which is set when a device is added to the device list.
double ScpGetSampleFrequency(LibTiePieHandle_t hDevice)
Get the currently selected sample frequency of a specified oscilloscope.
void ScpSetMessageTriggered(LibTiePieHandle_t hDevice, HWND hWnd, WPARAM wParam, LPARAM lParam)
Set a window handle to which a WM_LIBTIEPIE_SCP_TRIGGERED message is sent when the oscilloscope is tr...
uint32_t GenSetFrequencyMode(LibTiePieHandle_t hDevice, uint32_t dwFrequencyMode)
Set the generator frequency mode of a specified generator.
bool8_t ScpChTrIsTriggered(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether the channel trigger caused a trigger.
uint32_t GenSetSignalType(LibTiePieHandle_t hDevice, uint32_t dwSignalType)
Set the signal type of a specified generator.
bool8_t GenHasPhase(LibTiePieHandle_t hDevice)
Check whether the specified generator and the current signal type of the specified generator support ...
LibTiePieHandle_t LstOpenOscilloscope(uint32_t dwIdKind, uint32_t dwId)
Open an oscilloscope and get a handle to the oscilloscope.
uint64_t DevTrOutSetEvent(LibTiePieHandle_t hDevice, uint16_t wOutput, uint64_t qwEvent)
Set the trigger output event for a specified device trigger output.
uint32_t ScpSetMeasureMode(LibTiePieHandle_t hDevice, uint32_t dwMeasureMode)
Set the measure mode.
uint64_t DevTrOutGetEvent(LibTiePieHandle_t hDevice, uint16_t wOutput)
Get the currently selected trigger output event for a specified device trigger output.
bool8_t ScpChGetEnabled(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether a specified channel is currently enabled.
bool8_t ScpHasConnectionTest(LibTiePieHandle_t hDevice)
Check whether the specified oscilloscope supports connection testing.
double ScpChSetBandwidth(LibTiePieHandle_t hDevice, uint16_t wCh, double dBandwidth)
Set the channel input bandwidth.
LibTiePieHandle_t LstOpenDevice(uint32_t dwIdKind, uint32_t dwId, uint32_t dwDeviceType)
Open a device and get a handle to the device.
LibTiePiePointerArray_t HlpPointerArrayNew(uint32_t dwLength)
Create a new pointer array.
double ScpChTrSetHysteresis(LibTiePieHandle_t hDevice, uint16_t wCh, uint32_t dwIndex, double dHysteresis)
Set the channel trigger hysteresis value for a specified channel and trigger hysteresis.
void DevSetMessageRemoved(LibTiePieHandle_t hDevice, HWND hWnd, WPARAM wParam, LPARAM lParam)
Set a window handle to which a WM_LIBTIEPIE_DEV_REMOVED message is sent when the device is removed...
void ScpSetCallbackDataReady(LibTiePieHandle_t hDevice, TpCallback_t pCallback, void *pData)
Set a callback function which is called when the oscilloscope has new measurement data ready...
void GenSetEventBurstCompleted(LibTiePieHandle_t hDevice, int fdEvent)
Set an event file descriptor which is set when the generator burst is completed.
bool8_t ScpForceTrigger(LibTiePieHandle_t hDevice)
Force a trigger.
bool8_t I2CRead(LibTiePieHandle_t hDevice, uint16_t wAddress, void *pBuffer, uint32_t dwSize, bool8_t bStop)
Read data from a specified address on the I2C bus, using a specified I2C host.
uint32_t ScpChTrGetLevelCount(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the number of channel trigger levels for a specified channel with the currently selected trigger ...
double ScpChGetSafeGroundThreshold(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the actual SafeGround threshold current for the specified channel.
double ScpChTrGetTime(LibTiePieHandle_t hDevice, uint16_t wCh, uint32_t dwIndex)
Get the current trigger time value for a specified channel and trigger type.
double GenGetAmplitudeMin(LibTiePieHandle_t hDevice)
Get the minimum signal amplitude for the current signal type of a specified generator.
uint64_t GenGetDataLength(LibTiePieHandle_t hDevice)
Get the length of the currently loaded waveform pattern of a specified generator. ...
uint64_t ScpChSetCoupling(LibTiePieHandle_t hDevice, uint16_t wCh, uint64_t qwCoupling)
Set the coupling of a specified channel.
uint64_t GenGetBurstSampleCount(LibTiePieHandle_t hDevice)
Get the current burst sample count for the current generator mode of a specified generator.
bool8_t DevTrOutTrigger(LibTiePieHandle_t hDevice, uint16_t wOutput)
Trigger the specified device trigger output.
double GenGetPhaseMin(LibTiePieHandle_t hDevice)
Get the minimum signal phase of a specified generator.
TpDate_t LstCbDevGetCalibrationDate(uint32_t dwIdKind, uint32_t dwId, uint32_t dwContainedDeviceSerialNumber)
Get the calibration date of a device contained in a combined device.
double I2CGetSpeed(LibTiePieHandle_t hDevice)
Get the current clock speed on the I2C bus controlled by a specified I2C host.
double ScpSetPreSampleRatio(LibTiePieHandle_t hDevice, double dPreSampleRatio)
Set the pre sample ratio of a specified oscilloscope.
uint8_t LibTiePieTriState_t
TriState value one byte wide.
bool8_t ScpIsConnectionTestCompleted(LibTiePieHandle_t hDevice)
Check whether the connection test on a specified oscilloscope is completed.
TpVersion_t DevGetDriverVersion(LibTiePieHandle_t hDevice)
Get the version number of the driver used by the device.
uint64_t ScpChTrGetKind(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the currently selected channel trigger kind for a specified channel.
TpVersion_t LstDevGetRecommendedDriverVersion(uint32_t dwIdKind, uint32_t dwId)
Get the version number of the recommended driver for the listed device.
double GenGetSymmetryMax(LibTiePieHandle_t hDevice)
Get the maximum signal symmetry of a specified generator.
void ScpSetEventTriggered(LibTiePieHandle_t hDevice, int fdEvent)
Set an event file descriptor which is set when the oscilloscope is triggered.
double GenGetOffset(LibTiePieHandle_t hDevice)
Get the current signal offset of a specified generator.
bool8_t ScpChSetSafeGroundEnabled(LibTiePieHandle_t hDevice, uint16_t wCh, bool8_t bEnable)
Enable or disable SafeGround for a specified channel.
uint32_t ScpGetClockOutputs(LibTiePieHandle_t hDevice)
Get the supported clock outputs of the specified oscilloscope.
double GenGetSymmetry(LibTiePieHandle_t hDevice)
Get the current signal symmetry of a specified generator.
bool8_t GenHasFrequency(LibTiePieHandle_t hDevice)
Check whether the current signal type and frequency mode of a specified generator support controlling...
uint32_t LstDevGetTypes(uint32_t dwIdKind, uint32_t dwId)
Get the device types of the listed device.
double ScpGetSampleFrequencyMax(LibTiePieHandle_t hDevice)
Get the maximum supported sample frequency of a specified oscilloscope.
bool8_t ScpStart(LibTiePieHandle_t hDevice)
Start a single measurement.
bool8_t ScpChSetAutoRanging(LibTiePieHandle_t hDevice, uint16_t wCh, bool8_t bEnable)
Set auto ranging for a specified channel.
double ScpChGetDataValueMin(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the minimum value of the input range the current data was measured with.
bool8_t GenHasSymmetry(LibTiePieHandle_t hDevice)
Check whether the current signal type of a specified generator supports controlling the signal symmet...
bool8_t ScpHasTriggerHoldOff(LibTiePieHandle_t hDevice)
Check whether the oscilloscope has trigger hold off support with the currently selected measure mode...
double ScpGetPreSampleRatio(LibTiePieHandle_t hDevice)
Get the current pre sample ratio of a specified oscilloscope.
uint16_t ScpGetChannelCount(LibTiePieHandle_t hDevice)
Get the number of channels.
uint32_t DevGetType(LibTiePieHandle_t hDevice)
Get the device type.
double GenSetTrailingEdgeTime(LibTiePieHandle_t hDevice, double dTrailingEdgeTime)
Set the trailing edge time, of a specified generator.
uint32_t ScpSetSegmentCount(LibTiePieHandle_t hDevice, uint32_t dwSegmentCount)
Set the number of segments of a specified oscilloscope.
double I2CGetSpeedMax(LibTiePieHandle_t hDevice)
Get the maximum clock speed on the I2C bus controlled by a specified I2C host.
double ScpChGetProbeGain(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the currently set channel probe gain for a specified channel.
bool8_t ScpIsResolutionEnhanced(LibTiePieHandle_t hDevice)
Check whether the currently selected resolution is enhanced or a native resolution of the hardware...
uint64_t ScpGetTriggerHoldOffCount(LibTiePieHandle_t hDevice)
Get the trigger hold off count in samples, for a specified oscilloscope.
void ObjSetEventWindowHandle(LibTiePieHandle_t hHandle, HWND hWnd)
Set a window handle to which a WM_LIBTIEPIE_EVENT message is sent when an event occurs.
LibTiePieStatus_t LibGetLastStatus(void)
Get the last status value.
uint64_t GenSetMode(LibTiePieHandle_t hDevice, uint64_t qwGeneratorMode)
Set the generator mode of a specified generator.
double ScpChTrSetTime(LibTiePieHandle_t hDevice, uint16_t wCh, uint32_t dwIndex, double dTime)
Set the required trigger time value for a specified channel and trigger type.
uint32_t LibTiePieHandle_t
Generic handle.
uint32_t ScpChTrSetLevelMode(LibTiePieHandle_t hDevice, uint16_t wCh, uint32_t dwLevelMode)
Set the trigger level mode of a specified channel.
uint32_t LstDevGetNameShortest(uint32_t dwIdKind, uint32_t dwId, char *pBuffer, uint32_t dwBufferLength)
Get the short name of the listed device wihout model postfix.
uint32_t ScpChTrGetLevelModes(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the supported trigger level modes of a specified channel.
double ScpChGetRange(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the currently selected input range for a specified channel.
bool8_t ScpChHasTrigger(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether the specified channel has trigger support with the currently selected measure mode...
uint32_t ScpGetAutoResolutionMode(LibTiePieHandle_t hDevice)
Get the current auto resolution mode of the specified oscilloscope.
uint64_t GenGetMode(LibTiePieHandle_t hDevice)
Get the current generator mode of a specified generator.
uint64_t GenGetBurstCountMin(LibTiePieHandle_t hDevice)
Get the minimum burst count for the current generator mode of a specified generator.
bool8_t ScpIsRunning(LibTiePieHandle_t hDevice)
Check whether the oscilloscope is currently measuring.
uint32_t DevGetNameShortest(LibTiePieHandle_t hDevice, char *pBuffer, uint32_t dwBufferLength)
Get the short name of the device without model postfix.
uint32_t DevTrOutGetId(LibTiePieHandle_t hDevice, uint16_t wOutput)
Get the id of a specified device trigger output.
TpVersion_t LstCbDevGetDriverVersion(uint32_t dwIdKind, uint32_t dwId, uint32_t dwContainedDeviceSerialNumber)
Get the driver version of a device contained in a combined device.
bool8_t ScpChGetAutoRanging(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether auto ranging is enabled for a specified channel.
uint64_t ScpGetData3Ch(LibTiePieHandle_t hDevice, float *pBufferCh1, float *pBufferCh2, float *pBufferCh3, uint64_t qwStartIndex, uint64_t qwSampleCount)
Get the measurement data for the first three channels.
void ScpSetCallbackTriggered(LibTiePieHandle_t hDevice, TpCallback_t pCallback, void *pData)
Set a callback function which is called when the oscilloscope is triggered.
LibTiePieHandle_t LstOpenI2CHost(uint32_t dwIdKind, uint32_t dwId)
Open an I2C host and get a handle to the I2C host.
uint32_t LstDevGetNameShort(uint32_t dwIdKind, uint32_t dwId, char *pBuffer, uint32_t dwBufferLength)
Get the short name of the listed device.
void LibInit(void)
Create and initialize internal resources used by the library.
int32_t LibTiePieStatus_t
LibTiePie status code.
uint32_t LstCbDevGetNameShort(uint32_t dwIdKind, uint32_t dwId, uint32_t dwContainedDeviceSerialNumber, char *pBuffer, uint32_t dwBufferLength)
Get the short name of a device contained in a combined device.
uint32_t GenGetAmplitudeRanges(LibTiePieHandle_t hDevice, double *pList, uint32_t dwLength)
Get the supported amplitude ranges for a specified generator.
TpVersion_t LstCbDevGetFirmwareVersion(uint32_t dwIdKind, uint32_t dwId, uint32_t dwContainedDeviceSerialNumber)
Get the firmware version of a device contained in a combined device.
void ScpSetCallbackConnectionTestCompleted(LibTiePieHandle_t hDevice, TpCallback_t pCallback, void *pData)
Set a callback function which is called when the oscilloscope connection test is completed.
bool8_t DevTrOutSetEnabled(LibTiePieHandle_t hDevice, uint16_t wOutput, bool8_t bEnable)
Set trigger output enable.
bool8_t ScpIsTriggered(LibTiePieHandle_t hDevice)
Check whether the oscilloscope has triggered.
double ScpGetTriggerDelayMax(LibTiePieHandle_t hDevice)
Get the maximum trigger delay in seconds, for the currently selected measure mode and sample frequenc...
double ScpChTrGetLevel(LibTiePieHandle_t hDevice, uint16_t wCh, uint32_t dwIndex)
Get the currently set channel trigger level value for a specified channel and trigger level...
double GenGetWidth(LibTiePieHandle_t hDevice)
Get the current pulse width, of a specified generator.
uint32_t ScpGetClockOutputFrequencies(LibTiePieHandle_t hDevice, double *pList, uint32_t dwLength)
Get an array with the supported clock output frequencies of the specified oscilloscope.
uint32_t ScpSetClockOutput(LibTiePieHandle_t hDevice, uint32_t dwClockOutput)
Set the clock output of the specified oscilloscope.
uint64_t ScpChTrSetKind(LibTiePieHandle_t hDevice, uint16_t wCh, uint64_t qwTriggerKind)
Set the channel trigger kind for a specified channel.
uint8_t bool8_t
Boolean value one byte wide.
uint64_t TpVersion_t
Data type representing a version number.
uint16_t DevTrGetOutputCount(LibTiePieHandle_t hDevice)
Get the number of trigger outputs.
double GenGetOffsetMin(LibTiePieHandle_t hDevice)
Get the minimum offset for the current signal type, of a specified generator.
void LstSetMessageDeviceRemoved(HWND hWnd)
Set a window handle to which a WM_LIBTIEPIE_LST_DEVICEREMOVED message is sent when a device is remove...
double GenSetWidth(LibTiePieHandle_t hDevice, double dWidth)
Set the pulse width, of a specified generator.
uint16_t DevTrGetOutputIndexById(LibTiePieHandle_t hDevice, uint32_t dwId)
Get the index of trigger output identified by its ID.
bool8_t ScpStop(LibTiePieHandle_t hDevice)
Stop a running measurement.
bool8_t ScpChHasConnectionTest(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether a specified channel of a specified oscilloscope supports connection testing...
bool8_t ScpIsDataOverflow(LibTiePieHandle_t hDevice)
Check whether a data overflow has occurred.
uint64_t ScpGetTriggerHoldOffCountMax(LibTiePieHandle_t hDevice)
Get the maximum trigger hold off count in samples, for a specified oscilloscope.
void DevSetEventRemoved(LibTiePieHandle_t hDevice, int fdEvent)
Set an event file descriptor which is set when the device is removed.
uint64_t ScpChGetCoupling(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the currently set coupling of a specified channel.
void LstSetCallbackDeviceAdded(TpCallbackDeviceList_t pCallback, void *pData)
Set a callback function which is called when a device is added to the device list.
uint32_t ScpGetAutoResolutionModes(LibTiePieHandle_t hDevice)
Get the supported auto resolution modes of the specified oscilloscope.
void GenSetMessageBurstCompleted(LibTiePieHandle_t hDevice, HWND hWnd, WPARAM wParam, LPARAM lParam)
Set a window handle to which a WM_LIBTIEPIE_GEN_BURSTCOMPLETED message is sent when the generator bur...
bool8_t I2CReadByte(LibTiePieHandle_t hDevice, uint16_t wAddress, uint8_t *pValue)
Read one byte from a specified address on the I2C bus, using a specified I2C host.
double GenSetAmplitude(LibTiePieHandle_t hDevice, double dAmplitude)
Set the signal amplitude of a specified generator.
double ScpGetClockOutputFrequency(LibTiePieHandle_t hDevice)
Get the current clock output frequency of the specified oscilloscope.
uint32_t ScpGetClockOutput(LibTiePieHandle_t hDevice)
Get the currently selected clock output of the specified oscilloscope.
uint32_t LibGetConfig(uint8_t *pBuffer, uint32_t dwBufferLength)
Get the library configuration number.
uint64_t GenGetBurstSampleCountMin(LibTiePieHandle_t hDevice)
Get the minimum burst sample count for the current generator mode of a specified generator.
bool8_t DevTrOutGetEnabled(LibTiePieHandle_t hDevice, uint16_t wOutput)
Check whether a trigger output is enabled.
void(* TpCallbackHandle_t)(void *pData, LibTiePieHandle_t hHandle)
TpDate_t LstDevGetCalibrationDate(uint32_t dwIdKind, uint32_t dwId)
Get the calibration date of the listed device.
uint32_t ScpChGetConnectorType(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the channel connector type.
void ScpSetMessageConnectionTestCompleted(LibTiePieHandle_t hDevice, HWND hWnd, WPARAM wParam, LPARAM lParam)
Set a window handle to which a WM_LIBTIEPIE_SCP_CONNECTIONTESTCOMPLETED message is sent when the osci...
uint64_t ScpGetRecordLength(LibTiePieHandle_t hDevice)
Get the currently selected record length of a specified oscilloscope.
uint64_t GenSetBurstCount(LibTiePieHandle_t hDevice, uint64_t qwBurstCount)
Set the burst count for the current generator mode of a specified generator.
void ObjClose(LibTiePieHandle_t hHandle)
Close a object.
uint32_t GenGetConnectorType(LibTiePieHandle_t hDevice)
Get the output connector type for a specified generator.
uint32_t LstDevGetContainedSerialNumbers(uint32_t dwIdKind, uint32_t dwId, uint32_t *pBuffer, uint32_t dwBufferLength)
Get the serial numbers of the individual devices contained in a combined device.
void ScpSetEventConnectionTestCompleted(LibTiePieHandle_t hDevice, int fdEvent)
Set an event file descriptor which is set when the oscilloscope connection test is completed...
void GenSetData(LibTiePieHandle_t hDevice, const float *pBuffer, uint64_t qwSampleCount)
Load a waveform pattern into the waveform buffer of a specified generator.
uint32_t ScpGetResolutions(LibTiePieHandle_t hDevice, uint8_t *pList, uint32_t dwLength)
Get an array with the supported resolutions of the specified oscilloscope.
void ScpChGetDataValueRange(LibTiePieHandle_t hDevice, uint16_t wCh, double *pMin, double *pMax)
Get the minimum and maximum values of the input range the current data was measured with...
uint64_t GenGetBurstCountMax(LibTiePieHandle_t hDevice)
Get the maximum burst count for the current generator mode of a specified generator.
double GenGetTrailingEdgeTimeMax(LibTiePieHandle_t hDevice)
Get the maximum trailing edge time with the current pulse width and signal frequency, of a specified generator.
void LstRemoveDevice(uint32_t dwSerialNumber)
Remove an instrument from the device list so it can be used by other applications.
double GenGetImpedance(LibTiePieHandle_t hDevice)
Get the output impedance of a specified generator.
uint32_t GenGetFrequencyModes(LibTiePieHandle_t hDevice)
Get the supported generator frequency modes of a specified generator.
void LibExit(void)
Clear and free internal resources used by the library.
double GenGetFrequencyMax(LibTiePieHandle_t hDevice)
Get the maximum signal/sample frequency with the current frequency mode and signal type...
uint64_t DevTrOutGetEvents(LibTiePieHandle_t hDevice, uint16_t wOutput)
Get the supported trigger output events for a specified device trigger output.
void ObjSetEventCallback(LibTiePieHandle_t hHandle, TpCallbackEvent_t pCallback, void *pData)
Set a callback function which is called when an event occurs.
uint32_t LstDevGetName(uint32_t dwIdKind, uint32_t dwId, char *pBuffer, uint32_t dwBufferLength)
Get the full name of the listed device.
uint32_t ScpChTrGetHysteresisCount(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the number of trigger hystereses for a specified channel with the currently selected trigger kind...
bool8_t GenSetAmplitudeAutoRanging(LibTiePieHandle_t hDevice, bool8_t bEnable)
Set the amplitude auto ranging setting for a specified generator.
double GenGetFrequency(LibTiePieHandle_t hDevice)
Get the current signal/sample frequency, of a specified generator.
uint64_t GenGetBurstCount(LibTiePieHandle_t hDevice)
Get the current burst count for the current generator mode of a specified generator.
double GenSetPhase(LibTiePieHandle_t hDevice, double dPhase)
Set the signal phase of a specified generator.
double ScpChGetSafeGroundThresholdMin(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the minimum SafeGround threshold current for the specified channel.
void GenSetCallbackBurstCompleted(LibTiePieHandle_t hDevice, TpCallback_t pCallback, void *pData)
Set a callback function which is called when the generator burst is completed.
uint8_t GenGetResolution(LibTiePieHandle_t hDevice)
Get the DAC resolution of a specified generator.
uint32_t ScpGetClockSources(LibTiePieHandle_t hDevice)
Get the supported clock sources of the specified oscilloscope.
uint64_t ScpChGetCouplings(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the supported coupling kinds of a specified channel.
void HlpPointerArraySet(LibTiePiePointerArray_t pArray, uint32_t dwIndex, void *pPointer)
Set a pointer at a specified index in a specified pointer array.
uint32_t TpDate_t
Data type representing a date.
TpVersion_t DevGetFirmwareVersion(LibTiePieHandle_t hDevice)
Get the version number of the firmware used by the device.
bool8_t GenGetAmplitudeAutoRanging(LibTiePieHandle_t hDevice)
Get the amplitude auto ranging setting for a specified generator.
bool8_t GenIsControllable(LibTiePieHandle_t hDevice)
Check whether a specified generator can be controlled.
double GenGetFrequencyMin(LibTiePieHandle_t hDevice)
Get the minimum signal/sample frequency with the current frequency mode, of a specified generator...
uint32_t ScpSetAutoResolutionMode(LibTiePieHandle_t hDevice, uint32_t dwAutoResolutionMode)
Set the auto resolution mode of the specified oscilloscope.
uint64_t GenGetDataLengthMax(LibTiePieHandle_t hDevice)
Get the maximum length of the waveform buffer of a specified generator.
uint64_t GenGetDataLengthMin(LibTiePieHandle_t hDevice)
Get the minimum length of the waveform buffer of a specified generator.
uint16_t LstCbScpGetChannelCount(uint32_t dwIdKind, uint32_t dwId, uint32_t dwContainedDeviceSerialNumber)
Get the channel count of an oscilloscope contained in a combined oscilloscope.
uint64_t ScpGetData1Ch(LibTiePieHandle_t hDevice, float *pBufferCh1, uint64_t qwStartIndex, uint64_t qwSampleCount)
Get the measurement data for the first channel.
bool8_t GenHasOffset(LibTiePieHandle_t hDevice)
Check whether the current signal type of a specified generator supports controlling the signal offset...
double ScpChGetProbeOffset(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the currently set channel probe offset for a specified channel.
uint32_t ScpGetMeasureModes(LibTiePieHandle_t hDevice)
Get the supported measure modes for a specified oscilloscope.
bool8_t GenHasEdgeTime(LibTiePieHandle_t hDevice)
Check whether the current signal type of a specified generator supports controlling the edge times...
uint64_t ScpSetTriggerHoldOffCount(LibTiePieHandle_t hDevice, uint64_t qwTriggerHoldOffCount)
Set the trigger hold off count in samples, for a specified oscilloscope.
uint64_t GenGetModes(LibTiePieHandle_t hDevice)
Get the supported generator modes for the current signal type and frequency mode of a specified gener...
uint32_t ScpGetMeasureMode(LibTiePieHandle_t hDevice)
Get the current measure mode.
LibTiePieHandle_t LstCreateAndOpenCombinedDevice(const LibTiePieHandle_t *pDeviceHandles, uint32_t dwCount)
Create and open a combined instrument.
uint32_t DevGetNameShort(LibTiePieHandle_t hDevice, char *pBuffer, uint32_t dwBufferLength)
Get the short name of the device.
bool8_t ScpChSetEnabled(LibTiePieHandle_t hDevice, uint16_t wCh, bool8_t bEnable)
Set channel enable.
bool8_t GenGetOutputInvert(LibTiePieHandle_t hDevice)
Check whether the output of a specified generator is inverted.
void(* TpCallback_t)(void *pData)
bool8_t ScpIsForceTriggered(LibTiePieHandle_t hDevice)
Check whether the trigger was caused by ScpForceTrigger.
bool8_t GenStop(LibTiePieHandle_t hDevice)
Stop the signal generation of a specified generator.
double I2CSetSpeed(LibTiePieHandle_t hDevice, double dSpeed)
Set the clock speed on the I2C bus controlled by a specified I2C host.
uint32_t ScpChTrGetTimeCount(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the number of trigger times for the current trigger kind and trigger condition.
double ScpSetSampleFrequency(LibTiePieHandle_t hDevice, double dSampleFrequency)
Set the sample frequency of a specified oscilloscope.
bool8_t GenSetOutputInvert(LibTiePieHandle_t hDevice, bool8_t bInvert)
Enable or disable the output invert of a specified generator.
double ScpSetClockSourceFrequency(LibTiePieHandle_t hDevice, double dClockSourceFrequency)
Set the clock source frequency of the specified oscilloscope.
double ScpChSetProbeGain(LibTiePieHandle_t hDevice, uint16_t wCh, double dProbeGain)
Set the channel probe gain for a specified channel.
bool8_t ObjIsRemoved(LibTiePieHandle_t hHandle)
Check whether an object is removed.
uint32_t I2CGetInternalAddresses(LibTiePieHandle_t hDevice, uint16_t *pAddresses, uint32_t dwLength)
Get all addresses which are used internally.
bool8_t I2CWriteWord(LibTiePieHandle_t hDevice, uint16_t wAddress, uint16_t wValue)
Write one word to a specified address on the I2C bus, using a specified I2C host. ...
double ScpChSetProbeOffset(LibTiePieHandle_t hDevice, uint16_t wCh, double dProbeOffset)
Set the channel probe offset for a specified channel.
void DevSetCallbackRemoved(LibTiePieHandle_t hDevice, TpCallback_t pCallback, void *pData)
Set a callback function which is called when the device is removed.
bool8_t ScpChTrIsAvailable(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether the channel trigger for the specified channel is available, with the current oscillosco...
void ScpSetEventDataOverflow(LibTiePieHandle_t hDevice, int fdEvent)
Set an event file descriptor which is set when the oscilloscope streaming measurement caused an data ...
uint32_t LstGetCount(void)
Get the number of devices in the device list.
uint64_t ScpGetData4Ch(LibTiePieHandle_t hDevice, float *pBufferCh1, float *pBufferCh2, float *pBufferCh3, float *pBufferCh4, uint64_t qwStartIndex, uint64_t qwSampleCount)
Get the measurement data for the first four channels.
void HlpPointerArrayDelete(LibTiePiePointerArray_t pArray)
Delete an existing pointer array.
uint32_t DevTrOutGetName(LibTiePieHandle_t hDevice, uint16_t wOutput, char *pBuffer, uint32_t dwBufferLength)
Get the name of a specified device trigger output.
uint32_t ScpSetClockSource(LibTiePieHandle_t hDevice, uint32_t dwClockSource)
Set the clock source of the specified oscilloscope.
uint64_t GenGetBurstSegmentCountMin(LibTiePieHandle_t hDevice)
Get the minimum burst segment count for the current settings of a specified generator.
uint32_t DevGetProductId(LibTiePieHandle_t hDevice)
Get the product id of the device.
const char * LibGetVersionExtra(void)
Get the library version postfix.
bool8_t I2CWriteRead(LibTiePieHandle_t hDevice, uint16_t wAddress, const void *pWriteBuffer, uint32_t dwWriteSize, void *pReadBuffer, uint32_t dwReadSize)
Write and read data to/from to a specified address on the I2C bus, using a specified I2C host...
bool8_t LstDevCanOpen(uint32_t dwIdKind, uint32_t dwId, uint32_t dwDeviceType)
Check whether the listed device can be opened.
uint64_t ScpGetRecordLengthMax(LibTiePieHandle_t hDevice)
Get the maximum supported record length of a specified oscilloscope.
bool8_t GenIsBurstActive(LibTiePieHandle_t hDevice)
Check whether a burst is active, of a specified generator.
uint64_t GenGetModesNative(LibTiePieHandle_t hDevice)
Get all supported generator modes of a specified generator, regardless of the signal type and frequen...
uint64_t ScpGetData2Ch(LibTiePieHandle_t hDevice, float *pBufferCh1, float *pBufferCh2, uint64_t qwStartIndex, uint64_t qwSampleCount)
Get the measurement data for the first two channels.
TpDate_t DevGetCalibrationDate(LibTiePieHandle_t hDevice)
Get the calibration date of the device.
double GenGetWidthMin(LibTiePieHandle_t hDevice)
Get the minimum pulse width with the current signal frequency, of a specified generator.
bool8_t ObjGetEvent(LibTiePieHandle_t hHandle, uint32_t *pEvent, uint32_t *pValue)
Get an event form the event queue.
double GenGetPhaseMax(LibTiePieHandle_t hDevice)
Get the maximum signal phase of a specified generator.
uint64_t GenSetBurstSampleCount(LibTiePieHandle_t hDevice, uint64_t qwBurstSampleCount)
Set the burst sample count for the current generator mode of a specified generator.
uint32_t GenGetSignalTypes(LibTiePieHandle_t hDevice)
Get the supported signal types of a specified generator.
uint64_t ScpChTrGetKinds(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the supported channel trigger kinds for a specified channel with the currently selected measure m...
bool8_t GenHasWidth(LibTiePieHandle_t hDevice)
Check whether the current signal type of a specified generator supports controlling the signal pulse ...
uint32_t ScpChTrGetConditions(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the supported trigger conditions for a specified channel with the currently selected trigger kind...
void LstSetEventDeviceCanOpenChanged(int fdEvent)
Set an event file descriptor which is set when the device can open property changes.
double GenGetAmplitudeMax(LibTiePieHandle_t hDevice)
Get the maximum signal amplitude for the current signal type of a specified generator.
uint64_t ScpGetValidPreSampleCount(LibTiePieHandle_t hDevice)
Get the number of valid pre samples in the measurement.
double ScpSetTriggerTimeOut(LibTiePieHandle_t hDevice, double dTimeOut)
Set the trigger time out in seconds, for a specified oscilloscope.
void ScpSetMessageDataReady(LibTiePieHandle_t hDevice, HWND hWnd, WPARAM wParam, LPARAM lParam)
Set a window handle to which a WM_LIBTIEPIE_SCP_DATAREADY message is sent when the oscilloscope has n...
uint64_t GenGetBurstSegmentCount(LibTiePieHandle_t hDevice)
Get the current burst segment count of a specified generator.
uint32_t LstDevGetSerialNumber(uint32_t dwIdKind, uint32_t dwId)
Get the serial number of the listed device.
double GenGetLeadingEdgeTimeMax(LibTiePieHandle_t hDevice)
Get the maximum leading edge time with the current pulse width and signal frequency, of a specified generator.
bool8_t ScpHasTriggerDelay(LibTiePieHandle_t hDevice)
Check whether the oscilloscope has trigger delay support with the currently selected measure mode...
uint32_t ScpGetSegmentCount(LibTiePieHandle_t hDevice)
Get the currently selected number of segments of a specified oscilloscope.
bool8_t I2CWriteByteByte(LibTiePieHandle_t hDevice, uint16_t wAddress, uint8_t byValue1, uint8_t byValue2)
Write two bytes to a specified address on the I2C bus, using a specified I2C host.
double ScpChGetBandwidth(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the current channel input bandwidth.
uint32_t ScpChTrGetLevelMode(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the current trigger level mode of a specified channel.
void LstSetCallbackDeviceCanOpenChanged(TpCallbackDeviceList_t pCallback, void *pData)
Set a callback function which is called when the device can open property changes.
uint32_t LstCbDevGetProductId(uint32_t dwIdKind, uint32_t dwId, uint32_t dwContainedDeviceSerialNumber)
Get the product id of a device contained in a combined device.
void DevClose(LibTiePieHandle_t hDevice)
Close a device.
bool8_t ScpChIsDifferential(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether the channel has a differential input.
void ** LibTiePiePointerArray_t
Pointer array.
double ScpChTrGetHysteresis(LibTiePieHandle_t hDevice, uint16_t wCh, uint32_t dwIndex)
Get the currently set channel trigger hysteresis value for a specified channel and trigger hysteresis...
double GenSetLeadingEdgeTime(LibTiePieHandle_t hDevice, double dLeadingEdgeTime)
Set the leading edge time, of a specified generator.
double ScpChGetImpedance(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the channel input impedance.
bool8_t GenSetOutputOn(LibTiePieHandle_t hDevice, bool8_t bOutputOn)
Enable or disable the output of a specified generator.
double ScpChTrSetLevel(LibTiePieHandle_t hDevice, uint16_t wCh, uint32_t dwIndex, double dLevel)
Set the channel trigger level value for a specified channel and trigger level.
bool8_t ScpIsTimeOutTriggered(LibTiePieHandle_t hDevice)
Check whether the trigger was caused by the trigger time out.
LibTiePieHandle_t LstOpenGenerator(uint32_t dwIdKind, uint32_t dwId)
Open a generator and get a handle to the generator.
uint32_t LstCbDevGetNameShortest(uint32_t dwIdKind, uint32_t dwId, uint32_t dwContainedDeviceSerialNumber, char *pBuffer, uint32_t dwBufferLength)
Get the short name without model postfix of a device contained in a combined device.
bool8_t GenHasOutputInvert(LibTiePieHandle_t hDevice)
Check whether the output of a specified generator can be inverted.
bool8_t ScpChIsAvailable(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether the channel is available.
double GenGetAmplitude(LibTiePieHandle_t hDevice)
Get the currently set signal amplitude of a specified generator.
bool8_t LibIsInitialized(void)
Check whether the library's internal resources are initialized.
bool8_t I2CReadWord(LibTiePieHandle_t hDevice, uint16_t wAddress, uint16_t *pValue)
Read one word from a specified address on the I2C bus, using a specified I2C host.
double GenSetOffset(LibTiePieHandle_t hDevice, double dOffset)
Set the signal offset of a specified generator.
double GenGetAmplitudeRange(LibTiePieHandle_t hDevice)
Get the currently set amplitude range for a specified generator.
uint32_t LstCbDevGetName(uint32_t dwIdKind, uint32_t dwId, uint32_t dwContainedDeviceSerialNumber, char *pBuffer, uint32_t dwBufferLength)
Get the full name of a device contained in a combined device.
bool8_t ScpChTrGetEnabled(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether channel trigger for a specified channel is enabled.
double GenGetWidthMax(LibTiePieHandle_t hDevice)
Get the maximum pulse width with the current signal frequency, of a specified generator.
uint32_t ScpGetSegmentCountMax(LibTiePieHandle_t hDevice)
Get the maximum supported number of segments of a specified oscilloscope.
double GenGetOffsetMax(LibTiePieHandle_t hDevice)
Get the maximum offset for the current signal type, of a specified generator.
uint32_t ScpChTrGetCondition(LibTiePieHandle_t hDevice, uint16_t wCh)
Get the current selected trigger condition for a specified channel.
void ScpSetMessageDataOverflow(LibTiePieHandle_t hDevice, HWND hWnd, WPARAM wParam, LPARAM lParam)
Set a window handle to which a WM_LIBTIEPIE_SCP_DATAOVERFLOW message is sent when the oscilloscope st...
void LstUpdate(void)
Update the device list.
uint64_t ObjGetInterfaces(LibTiePieHandle_t hHandle)
Check which interface are supported by the specified object.
bool8_t GenHasData(LibTiePieHandle_t hDevice)
Check whether the current signal type of a specified generator supports controlling the Arbitrary wav...