LibTiePie  0.9.8
Library for interfacing TiePie engineering instruments
libtiepie.h
Go to the documentation of this file.
1 
6 #ifndef _LIBTIEPIE_H_
7 #define _LIBTIEPIE_H_
8 
9 // This section tries to define the C99 stdint types by detecting the used compiler/C version:
10 #if ( defined( __STDC_VERSION__ ) && __STDC_VERSION__ >= 199901L ) || ( defined( __GNUC__ ) && defined( __cplusplus ) )
11  #include <stdint.h>
12 #elif defined( INCLUDED_BY_MATLAB ) // MathWorks Matlab, see libtiepiematlab.h
13  #include <tmwtypes.h>
14 
15  // Define types:
16  typedef INT8_T int8_t;
17  typedef INT16_T int16_t;
18  typedef INT32_T int32_t;
19  typedef INT64_T int64_t;
20 
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_
27  #include <stdint.h>
28  #else
29  // Define types:
30  typedef char int8_t;
31  typedef short int16_t;
32  typedef int int32_t;
33  typedef __int64 int64_t;
34 
35  typedef unsigned char uint8_t;
36  typedef unsigned short uint16_t;
37  typedef unsigned int uint32_t;
38  typedef unsigned __int64 uint64_t;
39  #endif
40 #elif defined( _MSC_VER )
41  #include "stdint.h" // Note: You can find a stdint.h for microsoft compilers at http://msinttypes.googlecode.com/svn/trunk/stdint.h .
42 #else
43  #error "C99 stdint types not defined!"
44 #endif
45 
46 // Check whether we are on a Windows NT or Linux based operating system:
47 #if defined( _WIN32 ) || defined( _WIN64 ) || defined( __WIN32__ ) || defined( __TOS_WIN__ ) || defined( __WINDOWS__ )
48  #define LIBTIEPIE_WINDOWS
49  #include <windows.h>
50 #elif defined( __linux__ ) || defined( _NI_linux_ )
51  #define LIBTIEPIE_LINUX
52 #endif
53 
54 #ifdef __cplusplus
55 extern "C"
56 {
57 #endif
58 
59 #define LIBTIEPIE_VERSION_MAJOR 0
60 #define LIBTIEPIE_VERSION_MINOR 9
61 #define LIBTIEPIE_VERSION_RELEASE 8
62 #define LIBTIEPIE_VERSION_NUMBER "0.9.8"
63 #define LIBTIEPIE_VERSION "0.9.8"
64 #define LIBTIEPIE_REVISION 14110
65 
423 #define LIBTIEPIE_HANDLE_INVALID 0
424 #define TPDEVICEHANDLE_INVALID LIBTIEPIE_HANDLE_INVALID
425 
426 
432 #define LIBTIEPIE_INTERFACE_DEVICE 0x0000000000000001
433 #define LIBTIEPIE_INTERFACE_OSCILLOSCOPE 0x0000000000000002
434 #define LIBTIEPIE_INTERFACE_GENERATOR 0x0000000000000004
435 #define LIBTIEPIE_INTERFACE_I2CHOST 0x0000000000000008
436 #define LIBTIEPIE_INTERFACE_SERVER 0x0000000000000010
437 
444 #define DEVICETYPE_OSCILLOSCOPE 0x00000001
445 #define DEVICETYPE_GENERATOR 0x00000002
446 #define DEVICETYPE_I2CHOST 0x00000004
447 
448 #define DEVICETYPE_COUNT 3
449 
450 
456 #define IDKIND_PRODUCTID 0x00000001
457 #define IDKIND_INDEX 0x00000002
458 #define IDKIND_SERIALNUMBER 0x00000004
459 
460 #define IDKIND_COUNT 3
461 
462 
474 #define LIBTIEPIESTATUS_SUCCESS 0
475 #define LIBTIEPIESTATUS_VALUE_CLIPPED 1
476 #define LIBTIEPIESTATUS_VALUE_MODIFIED 2
477 #define LIBTIEPIESTATUS_UNSUCCESSFUL -1
478 #define LIBTIEPIESTATUS_NOT_SUPPORTED -2
479 #define LIBTIEPIESTATUS_INVALID_HANDLE -3
480 #define LIBTIEPIESTATUS_INVALID_VALUE -4
481 #define LIBTIEPIESTATUS_INVALID_CHANNEL -5
482 #define LIBTIEPIESTATUS_INVALID_TRIGGER_SOURCE -6
483 #define LIBTIEPIESTATUS_INVALID_DEVICE_TYPE -7
484 #define LIBTIEPIESTATUS_INVALID_DEVICE_INDEX -8
485 #define LIBTIEPIESTATUS_INVALID_PRODUCT_ID -9
486 #define LIBTIEPIESTATUS_INVALID_DEVICE_SERIALNUMBER -10
487 #define LIBTIEPIESTATUS_OBJECT_GONE -11
488 #define LIBTIEPIESTATUS_DEVICE_GONE LIBTIEPIESTATUS_OBJECT_GONE
489 #define LIBTIEPIESTATUS_INTERNAL_ADDRESS -12
490 #define LIBTIEPIESTATUS_NOT_CONTROLLABLE -13
491 #define LIBTIEPIESTATUS_BIT_ERROR -14
492 #define LIBTIEPIESTATUS_NO_ACKNOWLEDGE -15
493 #define LIBTIEPIESTATUS_INVALID_CONTAINED_DEVICE_SERIALNUMBER -16
494 #define LIBTIEPIESTATUS_INVALID_INPUT -17
495 #define LIBTIEPIESTATUS_INVALID_OUTPUT -18
496 #define LIBTIEPIESTATUS_INVALID_DRIVER -19
497 #define LIBTIEPIESTATUS_NOT_AVAILABLE -20
498 #define LIBTIEPIESTATUS_INVALID_FIRMWARE -21
499 #define LIBTIEPIESTATUS_INVALID_INDEX -22
500 #define LIBTIEPIESTATUS_INVALID_EEPROM -23
501 #define LIBTIEPIESTATUS_INITIALIZATION_FAILED -24
502 #define LIBTIEPIESTATUS_LIBRARY_NOT_INITIALIZED -25
503 #define LIBTIEPIESTATUS_NO_TRIGGER_ENABLED -26
504 
505 #define LIBTIEPIESTATUS_SYNCHRONIZATION_FAILED -29
506 #define LIBTIEPIESTATUS_INVALID_HS56_COMBINED_DEVICE -30
507 #define LIBTIEPIESTATUS_MEASUREMENT_RUNNING -31
508 
509 #define LIBTIEPIESTATUS_INITIALIZATION_ERROR_10001 -10001
510 #define LIBTIEPIESTATUS_INITIALIZATION_ERROR_10002 -10002
511 #define LIBTIEPIESTATUS_INITIALIZATION_ERROR_10003 -10003
512 #define LIBTIEPIESTATUS_INITIALIZATION_ERROR_10004 -10004
513 #define LIBTIEPIESTATUS_INITIALIZATION_ERROR_10005 -10005
514 #define LIBTIEPIESTATUS_INITIALIZATION_ERROR_10006 -10006
515 
516 
522 #define CONNECTORTYPE_UNKNOWN 0x00000000
523 
524 #define CONNECTORTYPE_BNC 0x00000001
525 #define CONNECTORTYPE_BANANA 0x00000002
526 #define CONNECTORTYPE_POWERPLUG 0x00000004
527 
528 #define CONNECTORTYPE_COUNT 3
529 
530 
535 #define CONNECTORTYPE_MASK ( CONNECTORTYPE_BNC | CONNECTORTYPE_BANANA | CONNECTORTYPE_POWERPLUG )
536 
544 #define DATARAWTYPE_UNKNOWN 0x00000000
545 
546 #define DATARAWTYPE_INT8 0x00000001
547 #define DATARAWTYPE_INT16 0x00000002
548 #define DATARAWTYPE_INT32 0x00000004
549 #define DATARAWTYPE_INT64 0x00000008
550 
551 #define DATARAWTYPE_UINT8 0x00000010
552 #define DATARAWTYPE_UINT16 0x00000020
553 #define DATARAWTYPE_UINT32 0x00000040
554 #define DATARAWTYPE_UINT64 0x00000080
555 
556 #define DATARAWTYPE_FLOAT32 0x00000100
557 #define DATARAWTYPE_FLOAT64 0x00000200
558 
559 #define DATARAWTYPE_COUNT 10
560 
561 
566 #define DATARAWTYPE_MASK_INT ( DATARAWTYPE_INT8 | DATARAWTYPE_INT16 | DATARAWTYPE_INT32 | DATARAWTYPE_INT64 )
567 #define DATARAWTYPE_MASK_UINT ( DATARAWTYPE_UINT8 | DATARAWTYPE_UINT16 | DATARAWTYPE_UINT32 | DATARAWTYPE_UINT64 )
568 #define DATARAWTYPE_MASK_FLOAT ( DATARAWTYPE_FLOAT32 | DATARAWTYPE_FLOAT64 )
569 #define DATARAWTYPE_MASK_FIXED ( DATARAWTYPE_MASK_INT | DATARAWTYPE_MASK_UINT )
570 
578 #define BOOL8_FALSE 0
579 #define BOOL8_TRUE 1
580 
587 #define LIBTIEPIE_TRISTATE_UNDEFINED 0
588 #define LIBTIEPIE_TRISTATE_FALSE 1
589 #define LIBTIEPIE_TRISTATE_TRUE 2
590 
591 
597 #define LIBTIEPIE_TRIGGERIO_INDEX_INVALID 0xffff
598 
605 #define LIBTIEPIE_STRING_LENGTH_NULL_TERMINATED 0xffffffff
606 
613 #define LIBTIEPIE_SERVER_STATUS_DISCONNECTED 0
614 #define LIBTIEPIE_SERVER_STATUS_CONNECTING 1
615 #define LIBTIEPIE_SERVER_STATUS_CONNECTED 2
616 #define LIBTIEPIE_SERVER_STATUS_DISCONNECTING 3
617 
624 #define LIBTIEPIE_SERVER_ERROR_NONE 0
625 #define LIBTIEPIE_SERVER_ERROR_UNKNOWN 1
626 #define LIBTIEPIE_SERVER_ERROR_CONNECTIONREFUSED 2
627 #define LIBTIEPIE_SERVER_ERROR_NETWORKUNREACHABLE 3
628 #define LIBTIEPIE_SERVER_ERROR_TIMEDOUT 4
629 #define LIBTIEPIE_SERVER_ERROR_HOSTNAMELOOKUPFAILED 5
630 
635 
642 #define LIBTIEPIE_RANGEINDEX_AUTO 0xffffffff
643 
644 
648 
655 #define LIBTIEPIE_POINTER_ARRAY_MAX_LENGTH 256
656 
663 #define ARN_COUNT 3
664 
665 
670 #define ARB_DISABLED 0
671 #define ARB_NATIVEONLY 1
672 #define ARB_ALL 2
673 
678 #define AR_UNKNOWN 0
679 
680 #define AR_DISABLED ( 1 << ARB_DISABLED )
681 #define AR_NATIVEONLY ( 1 << ARB_NATIVEONLY )
682 #define AR_ALL ( 1 << ARB_ALL )
683 
684 
689 #define ARM_NONE 0
690 #define ARM_ALL ( ( 1 << ARN_COUNT ) - 1 )
691 #define ARM_ENABLED ( ARM_ALL & ~AR_DISABLED )
692 
700 #define CKN_COUNT 5
701 
702 
707 #define CKB_DCV 0
708 #define CKB_ACV 1
709 #define CKB_DCA 2
710 #define CKB_ACA 3
711 #define CKB_OHM 4
712 
713 
717 #define CK_UNKNOWN 0
718 
719 #define CK_DCV ( 1 << CKB_DCV )
720 #define CK_ACV ( 1 << CKB_ACV )
721 #define CK_DCA ( 1 << CKB_DCA )
722 #define CK_ACA ( 1 << CKB_ACA )
723 #define CK_OHM ( 1 << CKB_OHM )
724 
725 
730 #define CKM_NONE 0
731 #define CKM_V ( CK_DCV | CK_ACV )
732 #define CKM_A ( CK_DCA | CK_ACA )
733 #define CKM_OHM ( CK_OHM )
734 
735 #define CKM_ASYMMETRICRANGE ( CKM_OHM )
736 #define CKM_SYMMETRICRANGE ( CKM_V | CKM_A )
737 
738 
745 #define CON_COUNT 3
746 
747 
752 #define COB_DISABLED 0
753 #define COB_SAMPLE 1
754 #define COB_FIXED 2
755 
756 
760 #define CO_DISABLED ( 1 << COB_DISABLED )
761 #define CO_SAMPLE ( 1 << COB_SAMPLE )
762 #define CO_FIXED ( 1 << COB_FIXED )
763 
764 
769 #define COM_NONE 0
770 #define COM_ALL ( ( 1 << CON_COUNT ) - 1 )
771 #define COM_ENABLED ( COM_ALL & ~CO_DISABLED )
772 #define COM_FREQUENCY ( CO_FIXED )
773 
781 #define CSN_COUNT 2
782 
783 
788 #define CSB_EXTERNAL 0
789 #define CSB_INTERNAL 1
790 
791 
795 #define CS_EXTERNAL ( 1 << CSB_EXTERNAL )
796 #define CS_INTERNAL ( 1 << CSB_INTERNAL )
797 
798 
803 #define CSM_NONE 0
804 #define CSM_ALL ( ( 1 << CSN_COUNT ) - 1 )
805 #define CSM_FREQUENCY ( CS_EXTERNAL )
806 
814 #define FMN_COUNT 2
815 
816 
821 #define FMB_SIGNALFREQUENCY 0
822 #define FMB_SAMPLEFREQUENCY 1
823 
828 #define FM_UNKNOWN 0x00000000
829 
830 #define FM_SIGNALFREQUENCY ( 1 << FMB_SIGNALFREQUENCY )
831 #define FM_SAMPLEFREQUENCY ( 1 << FMB_SAMPLEFREQUENCY )
832 
838 #define FMM_NONE 0x00000000
839 #define FMM_ALL ( ( 1 << FMN_COUNT ) - 1 )
840 
848 #define GMN_COUNT 12
849 
850 
855 #define GMB_CONTINUOUS 0
856 #define GMB_BURST_COUNT 1
857 #define GMB_GATED_PERIODS 2
858 #define GMB_GATED 3
859 #define GMB_GATED_PERIOD_START 4
860 #define GMB_GATED_PERIOD_FINISH 5
861 #define GMB_GATED_RUN 6
862 #define GMB_GATED_RUN_OUTPUT 7
863 #define GMB_BURST_SAMPLE_COUNT 8
864 #define GMB_BURST_SAMPLE_COUNT_OUTPUT 9
865 #define GMB_BURST_SEGMENT_COUNT 10
866 #define GMB_BURST_SEGMENT_COUNT_OUTPUT 11
867 
872 #define GM_UNKNOWN 0
873 
874 #define GM_CONTINUOUS ( 1 << GMB_CONTINUOUS )
875 #define GM_BURST_COUNT ( 1 << GMB_BURST_COUNT )
876 #define GM_GATED_PERIODS ( 1 << GMB_GATED_PERIODS )
877 #define GM_GATED ( 1 << GMB_GATED )
878 #define GM_GATED_PERIOD_START ( 1 << GMB_GATED_PERIOD_START )
879 #define GM_GATED_PERIOD_FINISH ( 1 << GMB_GATED_PERIOD_FINISH )
880 #define GM_GATED_RUN ( 1 << GMB_GATED_RUN )
881 #define GM_GATED_RUN_OUTPUT ( 1 << GMB_GATED_RUN_OUTPUT )
882 #define GM_BURST_SAMPLE_COUNT ( 1 << GMB_BURST_SAMPLE_COUNT )
883 #define GM_BURST_SAMPLE_COUNT_OUTPUT ( 1 << GMB_BURST_SAMPLE_COUNT_OUTPUT )
884 #define GM_BURST_SEGMENT_COUNT ( 1 << GMB_BURST_SEGMENT_COUNT )
885 #define GM_BURST_SEGMENT_COUNT_OUTPUT ( 1 << GMB_BURST_SEGMENT_COUNT_OUTPUT )
886 
892 #define GMM_NONE 0
893 #define GMM_BURST_COUNT ( GM_BURST_COUNT )
894 #define GMM_GATED ( GM_GATED_PERIODS | GM_GATED | GM_GATED_PERIOD_START | GM_GATED_PERIOD_FINISH | GM_GATED_RUN | GM_GATED_RUN_OUTPUT )
895 #define GMM_BURST_SAMPLE_COUNT ( GM_BURST_SAMPLE_COUNT | GM_BURST_SAMPLE_COUNT_OUTPUT )
896 #define GMM_BURST_SEGMENT_COUNT ( GM_BURST_SEGMENT_COUNT | GM_BURST_SEGMENT_COUNT_OUTPUT )
897 #define GMM_BURST ( GMM_BURST_COUNT | GMM_BURST_SAMPLE_COUNT | GMM_BURST_SEGMENT_COUNT )
898 #define GMM_REQUIRE_TRIGGER ( GMM_GATED | GMM_BURST_SAMPLE_COUNT | GMM_BURST_SEGMENT_COUNT )
899 #define GMM_ALL ( ( 1ULL << GMN_COUNT ) - 1 )
900 
901 #define GMM_SIGNALFREQUENCY ( GMM_ALL & ~GMM_BURST_SAMPLE_COUNT )
902 #define GMM_SAMPLEFREQUENCY ( GMM_ALL )
903 
904 #define GMM_SINE ( GMM_SIGNALFREQUENCY )
905 #define GMM_TRIANGLE ( GMM_SIGNALFREQUENCY )
906 #define GMM_SQUARE ( GMM_SIGNALFREQUENCY )
907 #define GMM_DC ( GM_CONTINUOUS )
908 #define GMM_NOISE ( GM_CONTINUOUS | GM_GATED )
909 #define GMM_ARBITRARY ( GMM_SIGNALFREQUENCY | GMM_SAMPLEFREQUENCY )
910 #define GMM_PULSE ( GMM_SIGNALFREQUENCY & ~GMM_BURST_SEGMENT_COUNT )
911 
912 
920 #define GSN_COUNT 4
921 
922 
928 #define GSB_STOPPED 0
929 #define GSB_RUNNING 1
930 #define GSB_BURSTACTIVE 2
931 #define GSB_WAITING 3
932 
937 #define GS_STOPPED ( 1 << GSB_STOPPED )
938 #define GS_RUNNING ( 1 << GSB_RUNNING )
939 #define GS_BURSTACTIVE ( 1 << GSB_BURSTACTIVE )
940 #define GS_WAITING ( 1 << GSB_WAITING )
941 
942 
947 #define GSM_NONE 0
948 #define GSM_ALL ( ( 1UL << GSN_COUNT ) - 1 )
949 
957 #define MMN_COUNT 2
958 
959 
964 #define MMB_STREAM 0
965 #define MMB_BLOCK 1
966 
967 
973 #define MMM_NONE 0
974 #define MMM_ALL ( ( 1 << MMN_COUNT ) - 1 )
975 
980 #define MM_UNKNOWN 0
981 
982 #define MM_STREAM ( 1 << MMB_STREAM )
983 #define MM_BLOCK ( 1 << MMB_BLOCK )
984 
985 
991 #define STN_COUNT 7
992 
993 
998 #define STB_SINE 0
999 #define STB_TRIANGLE 1
1000 #define STB_SQUARE 2
1001 #define STB_DC 3
1002 #define STB_NOISE 4
1003 #define STB_ARBITRARY 5
1004 #define STB_PULSE 6
1005 
1010 #define ST_UNKNOWN 0
1011 
1012 #define ST_SINE ( 1 << STB_SINE )
1013 #define ST_TRIANGLE ( 1 << STB_TRIANGLE )
1014 #define ST_SQUARE ( 1 << STB_SQUARE )
1015 #define ST_DC ( 1 << STB_DC )
1016 #define ST_NOISE ( 1 << STB_NOISE )
1017 #define ST_ARBITRARY ( 1 << STB_ARBITRARY )
1018 #define ST_PULSE ( 1 << STB_PULSE )
1019 
1025 #define STM_NONE 0
1026 
1027 #define STM_AMPLITUDE ( ST_SINE | ST_TRIANGLE | ST_SQUARE | ST_NOISE | ST_ARBITRARY | ST_PULSE )
1028 #define STM_OFFSET ( ST_SINE | ST_TRIANGLE | ST_SQUARE | ST_DC | ST_NOISE | ST_ARBITRARY | ST_PULSE )
1029 #define STM_FREQUENCY ( ST_SINE | ST_TRIANGLE | ST_SQUARE | ST_NOISE | ST_ARBITRARY | ST_PULSE )
1030 #define STM_PHASE ( ST_SINE | ST_TRIANGLE | ST_SQUARE | ST_ARBITRARY | ST_PULSE )
1031 #define STM_SYMMETRY ( ST_SINE | ST_TRIANGLE | ST_SQUARE )
1032 #define STM_WIDTH ( ST_PULSE )
1033 #define STM_LEADINGEDGETIME ( ST_PULSE )
1034 #define STM_TRAILINGEDGETIME ( ST_PULSE )
1035 #define STM_DATALENGTH ( ST_ARBITRARY )
1036 #define STM_DATA ( ST_ARBITRARY )
1037 
1038 #define STM_EDGETIME ( STM_LEADINGEDGETIME & STM_TRAILINGEDGETIME )
1039 
1047 #define TCN_COUNT 5
1048 
1049 
1054 #define TCB_NONE 0
1055 #define TCB_SMALLER 1
1056 #define TCB_LARGER 2
1057 #define TCB_INSIDE 3
1058 #define TCB_OUTSIDE 4
1059 
1064 #define TC_UNKNOWN 0
1065 
1066 #define TC_NONE ( 1 << TCB_NONE )
1067 #define TC_SMALLER ( 1 << TCB_SMALLER )
1068 #define TC_LARGER ( 1 << TCB_LARGER )
1069 #define TC_INSIDE ( 1 << TCB_INSIDE )
1070 #define TC_OUTSIDE ( 1 << TCB_OUTSIDE )
1071 
1077 #define TCM_NONE 0
1078 #define TCM_ALL ( ( 1 << TCN_COUNT ) - 1 )
1079 #define TCM_ENABLED ( TCM_ALL & ~TC_NONE )
1080 
1081 
1088 #define TH_ALLPRESAMPLES 0xffffffffffffffffULL
1089 
1090 
1098 #define DN_MAIN 0
1099 #define DN_SUB_FIRST 1
1100 #define DN_SUB_SECOND 2
1101 
1102 
1108 #define PGID_OSCILLOSCOPE 1
1109 #define PGID_GENERATOR 2
1110 #define PGID_EXTERNAL_DSUB 3
1111 
1112 
1120 #define SGID_MAIN 0
1121 #define SGID_CHANNEL1 1
1122 #define SGID_CHANNEL2 2
1123 
1130 #define SGID_PIN1 1
1131 #define SGID_PIN2 2
1132 #define SGID_PIN3 3
1133 
1143 #define FID_SCP_TRIGGERED 0
1144 
1151 #define FID_GEN_START 0
1152 #define FID_GEN_STOP 1
1153 #define FID_GEN_NEW_PERIOD 2
1154 
1161 #define FID_EXT_TRIGGERED 0
1162 
1170 #define TIOID_SHIFT_PGID 20
1171 #define TIOID_SHIFT_DN 24
1172 #define TIOID_SHIFT_SGID 8
1173 #define TIOID_SHIFT_FID 0
1174 
1181 #define TIID_INVALID 0
1182 #define TIID_EXT1 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN1 , FID_EXT_TRIGGERED )
1183 #define TIID_EXT2 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN2 , FID_EXT_TRIGGERED )
1184 #define TIID_EXT3 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN3 , FID_EXT_TRIGGERED )
1185 #define TIID_GENERATOR_START TRIGGER_IO_ID( PGID_GENERATOR , SGID_MAIN , FID_GEN_START )
1186 #define TIID_GENERATOR_STOP TRIGGER_IO_ID( PGID_GENERATOR , SGID_MAIN , FID_GEN_STOP )
1187 #define TIID_GENERATOR_NEW_PERIOD TRIGGER_IO_ID( PGID_GENERATOR , SGID_MAIN , FID_GEN_NEW_PERIOD )
1188 
1195 #define TOID_INVALID 0
1196 #define TOID_EXT1 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN1 , FID_EXT_TRIGGERED )
1197 #define TOID_EXT2 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN2 , FID_EXT_TRIGGERED )
1198 #define TOID_EXT3 TRIGGER_IO_ID( PGID_EXTERNAL_DSUB , SGID_PIN3 , FID_EXT_TRIGGERED )
1199 
1207 #define TKN_COUNT 15
1208 
1209 
1214 #define TKB_RISINGEDGE 0
1215 #define TKB_FALLINGEDGE 1
1216 #define TKB_INWINDOW 2
1217 #define TKB_OUTWINDOW 3
1218 #define TKB_ANYEDGE 4
1219 #define TKB_ENTERWINDOW 5
1220 #define TKB_EXITWINDOW 6
1221 #define TKB_PULSEWIDTHPOSITIVE 7
1222 #define TKB_PULSEWIDTHNEGATIVE 8
1223 #define TKB_PULSEWIDTHEITHER 9
1224 #define TKB_RUNTPULSEPOSITIVE 10
1225 #define TKB_RUNTPULSENEGATIVE 11
1226 #define TKB_RUNTPULSEEITHER 12
1227 #define TKB_INTERVALRISING 13
1228 #define TKB_INTERVALFALLING 14
1229 
1234 #define TK_UNKNOWN 0
1235 #define TK_RISINGEDGE ( 1ULL << TKB_RISINGEDGE )
1236 #define TK_FALLINGEDGE ( 1ULL << TKB_FALLINGEDGE )
1237 #define TK_INWINDOW ( 1ULL << TKB_INWINDOW )
1238 #define TK_OUTWINDOW ( 1ULL << TKB_OUTWINDOW )
1239 #define TK_ANYEDGE ( 1ULL << TKB_ANYEDGE )
1240 #define TK_ENTERWINDOW ( 1ULL << TKB_ENTERWINDOW )
1241 #define TK_EXITWINDOW ( 1ULL << TKB_EXITWINDOW )
1242 #define TK_PULSEWIDTHPOSITIVE ( 1ULL << TKB_PULSEWIDTHPOSITIVE )
1243 #define TK_PULSEWIDTHNEGATIVE ( 1ULL << TKB_PULSEWIDTHNEGATIVE )
1244 #define TK_PULSEWIDTHEITHER ( 1ULL << TKB_PULSEWIDTHEITHER )
1245 #define TK_RUNTPULSEPOSITIVE ( 1ULL << TKB_RUNTPULSEPOSITIVE )
1246 #define TK_RUNTPULSENEGATIVE ( 1ULL << TKB_RUNTPULSENEGATIVE )
1247 #define TK_RUNTPULSEEITHER ( 1ULL << TKB_RUNTPULSEEITHER )
1248 #define TK_INTERVALRISING ( 1ULL << TKB_INTERVALRISING )
1249 #define TK_INTERVALFALLING ( 1ULL << TKB_INTERVALFALLING )
1250 
1251 
1256 #define TKM_NONE 0
1257 #define TKM_EDGE ( TK_RISINGEDGE | TK_FALLINGEDGE | TK_ANYEDGE )
1258 #define TKM_WINDOW ( TK_INWINDOW | TK_OUTWINDOW | TK_ENTERWINDOW | TK_EXITWINDOW )
1259 #define TKM_PULSEWIDTH ( TK_PULSEWIDTHPOSITIVE | TK_PULSEWIDTHNEGATIVE | TK_PULSEWIDTHEITHER )
1260 #define TKM_RUNTPULSE ( TK_RUNTPULSEPOSITIVE | TK_RUNTPULSENEGATIVE | TK_RUNTPULSEEITHER )
1261 #define TKM_PULSE ( TKM_PULSEWIDTH | TKM_RUNTPULSE )
1262 #define TKM_INTERVAL ( TK_INTERVALRISING | TK_INTERVALFALLING )
1263 #define TKM_TIME ( TKM_PULSEWIDTH | TKM_WINDOW | TKM_INTERVAL )
1264 #define TKM_ALL ( ( 1ULL << TKN_COUNT ) - 1 )
1265 
1266 
1273 #define TLMN_COUNT 2
1274 
1275 
1280 #define TLMB_RELATIVE 0
1281 #define TLMB_ABSOLUTE 1
1282 
1287 #define TLM_UNKNOWN 0
1288 
1289 #define TLM_RELATIVE ( 1 << TLMB_RELATIVE )
1290 #define TLM_ABSOLUTE ( 1 << TLMB_ABSOLUTE )
1291 
1297 #define TLMM_NONE 0
1298 #define TLMM_ALL ( ( 1 << TLMN_COUNT ) - 1 )
1299 
1307 #define TO_INFINITY -1
1308 
1309 
1315 #define TOEN_COUNT 6
1316 
1317 
1322 #define TOEB_GENERATOR_START 0
1323 #define TOEB_GENERATOR_STOP 1
1324 #define TOEB_GENERATOR_NEWPERIOD 2
1325 #define TOEB_OSCILLOSCOPE_RUNNING 3
1326 #define TOEB_OSCILLOSCOPE_TRIGGERED 4
1327 #define TOEB_MANUAL 5
1328 
1333 #define TOE_UNKNOWN 0
1334 #define TOE_GENERATOR_START ( 1 << TOEB_GENERATOR_START )
1335 #define TOE_GENERATOR_STOP ( 1 << TOEB_GENERATOR_STOP )
1336 #define TOE_GENERATOR_NEWPERIOD ( 1 << TOEB_GENERATOR_NEWPERIOD )
1337 #define TOE_OSCILLOSCOPE_RUNNING ( 1 << TOEB_OSCILLOSCOPE_RUNNING )
1338 #define TOE_OSCILLOSCOPE_TRIGGERED ( 1 << TOEB_OSCILLOSCOPE_TRIGGERED )
1339 #define TOE_MANUAL ( 1 << TOEB_MANUAL )
1340 
1346 #define TOEM_NONE 0
1347 #define TOEM_GENERATOR ( TOE_GENERATOR_START | TOE_GENERATOR_STOP | TOE_GENERATOR_NEWPERIOD )
1348 #define TOEM_OSCILLOSCOPE ( TOE_OSCILLOSCOPE_RUNNING | TOE_OSCILLOSCOPE_TRIGGERED )
1349 #define TOEM_ALL ( ( 1ULL << TOEN_COUNT ) - 1 )
1350 
1351 
1358 #define PID_NONE 0
1359 #define PID_COMBI 2
1360 
1361 #define PID_HS3 13
1362 #define PID_HS4 15
1363 #define PID_HP3 18
1364 #define PID_TP450 19
1365 #define PID_HS4D 20
1366 #define PID_HS5 22
1367 #define PID_HS6D 25
1368 #define PID_ATS610004D 31
1369 #define PID_ATS605004D 32
1370 #define PID_125020VI 33
1371 #define PID_WS6 34
1372 #define PID_WS5 35
1373 #define PID_WS6D 36
1374 #define PID_ATS610004DW 37
1375 #define PID_ATS605004DW 38
1376 #define PID_WS4D 39
1377 #define PID_ATS5004DW 40
1378 
1379 
1388 #define LIBTIEPIE_EVENTID_INVALID 0
1389 #define LIBTIEPIE_EVENTID_OBJ_REMOVED 1
1390 #define LIBTIEPIE_EVENTID_SCP_DATAREADY 2
1391 #define LIBTIEPIE_EVENTID_SCP_DATAOVERFLOW 3
1392 #define LIBTIEPIE_EVENTID_SCP_CONNECTIONTESTCOMPLETED 4
1393 #define LIBTIEPIE_EVENTID_SCP_TRIGGERED 5
1394 #define LIBTIEPIE_EVENTID_GEN_BURSTCOMPLETED 6
1395 #define LIBTIEPIE_EVENTID_GEN_CONTROLLABLECHANGED 7
1396 #define LIBTIEPIE_EVENTID_SRV_STATUSCHANGED 8
1397 #define LIBTIEPIE_EVENTID_SCP_SAFEGROUNDERROR 9
1398 
1400 #define LIBTIEPIE_EVENTID_SCP_GETDATAASYNCCOMPLETED 10
1401 
1403 #define LIBTIEPIE_EVENTID_DEV_BATTERYSTATUSCHANGED 11
1404 
1405 
1412 typedef int32_t LibTiePieStatus_t;
1413 typedef uint32_t LibTiePieHandle_t;
1414 typedef LibTiePieHandle_t TpDeviceHandle_t;
1415 
1445 typedef uint64_t TpVersion_t;
1446 
1466 typedef uint32_t TpDate_t;
1467 typedef uint8_t bool8_t;
1468 typedef uint8_t LibTiePieTriState_t;
1469 typedef void** LibTiePiePointerArray_t;
1470 
1471 #ifdef INCLUDED_BY_MATLAB
1472 typedef void* TpCallback_t;
1473 typedef void* TpCallbackDeviceList_t;
1474 typedef void* TpCallbackHandle_t;
1475 typedef void* TpCallbackEvent_t;
1476 #else
1477 typedef void(*TpCallback_t)( void* pData );
1478 typedef void(*TpCallbackDeviceList_t)( void* pData , uint32_t dwDeviceTypes , uint32_t dwSerialNumber );
1479 typedef void(*TpCallbackHandle_t)( void* pData , LibTiePieHandle_t hHandle );
1480 typedef void(*TpCallbackEvent_t)( void* pData , uint32_t dwEvent , uint32_t dwValue );
1481 #endif
1482 
1489 #define TPVERSION_MAJOR( x ) ( x >> 48 )
1490 #define TPVERSION_MINOR( x ) ( ( x >> 32 ) & 0xffff )
1491 #define TPVERSION_RELEASE( x ) ( ( x >> 16 ) & 0xffff )
1492 #define TPVERSION_BUILD( x ) ( x & 0xffff )
1493 
1494 #define TPDATE_YEAR( x ) ( x >> 16 )
1495 #define TPDATE_MONTH( x ) ( ( x >> 8 ) & 0xff )
1496 #define TPDATE_DAY( x ) ( x & 0xff )
1497 
1498 #define TRIGGER_IO_ID( pgid , sgid , fid ) ( ( DN_MAIN << TIOID_SHIFT_DN ) | ( ( pgid ) << TIOID_SHIFT_PGID ) | ( ( sgid ) << TIOID_SHIFT_SGID ) | ( ( fid ) << TIOID_SHIFT_FID ) )
1499 
1500 #define COMBI_TRIGGER_IO_ID( dn , tiid ) ( ( ( dn ) << TIOID_SHIFT_DN ) | ( ( tiid ) & ( ( 1 << TIOID_SHIFT_DN ) - 1 ) ) )
1501 
1506 #ifdef LIBTIEPIE_WINDOWS
1507 
1513 #define WM_LIBTIEPIE ( WM_USER + 1337 )
1514 
1515 #define WM_LIBTIEPIE_LST_DEVICEADDED ( WM_LIBTIEPIE + 2 )
1516 #define WM_LIBTIEPIE_LST_DEVICEREMOVED ( WM_LIBTIEPIE + 3 )
1517 #define WM_LIBTIEPIE_LST_DEVICECANOPENCHANGED ( WM_LIBTIEPIE + 9 )
1518 
1519 #define WM_LIBTIEPIE_NETSRV_ADDED ( WM_LIBTIEPIE + 11 )
1520 
1521 #define WM_LIBTIEPIE_DEV_REMOVED ( WM_LIBTIEPIE + 4 )
1522 
1523 #define WM_LIBTIEPIE_SCP_DATAREADY ( WM_LIBTIEPIE + 0 )
1524 #define WM_LIBTIEPIE_SCP_DATAOVERFLOW ( WM_LIBTIEPIE + 1 )
1525 #define WM_LIBTIEPIE_SCP_CONNECTIONTESTCOMPLETED ( WM_LIBTIEPIE + 7 )
1526 #define WM_LIBTIEPIE_SCP_TRIGGERED ( WM_LIBTIEPIE + 8 )
1527 
1528 #define WM_LIBTIEPIE_GEN_BURSTCOMPLETED ( WM_LIBTIEPIE + 5 )
1529 #define WM_LIBTIEPIE_GEN_CONTROLLABLECHANGED ( WM_LIBTIEPIE + 6 )
1530 
1531 #define WM_LIBTIEPIE_EVENT ( WM_LIBTIEPIE + 10 )
1532 
1533 
1537 #endif
1538 
1557 // Workaround: Without this line Doxygen adds the documentation below to the group above.
1558 
1574 #ifdef LIBTIEPIE_DYNAMIC
1575 typedef void(*LibTiePieLibInit_t)( void );
1576 #else
1577 void LibInit( void );
1578 #endif
1579 
1590 #ifdef LIBTIEPIE_DYNAMIC
1591 typedef bool8_t(*LibTiePieLibIsInitialized_t)( void );
1592 #else
1593 bool8_t LibIsInitialized( void );
1594 #endif
1595 
1607 #ifdef LIBTIEPIE_DYNAMIC
1608 typedef void(*LibTiePieLibExit_t)( void );
1609 #else
1610 void LibExit( void );
1611 #endif
1612 
1633 #ifdef LIBTIEPIE_DYNAMIC
1634 typedef TpVersion_t(*LibTiePieLibGetVersion_t)( void );
1635 #else
1636 TpVersion_t LibGetVersion( void );
1637 #endif
1638 
1649 #ifdef LIBTIEPIE_DYNAMIC
1650 typedef const char*(*LibTiePieLibGetVersionExtra_t)( void );
1651 #else
1652 const char* LibGetVersionExtra( void );
1653 #endif
1654 
1679 #ifdef LIBTIEPIE_DYNAMIC
1680 typedef uint32_t(*LibTiePieLibGetConfig_t)( uint8_t* pBuffer , uint32_t dwBufferLength );
1681 #else
1682 uint32_t LibGetConfig( uint8_t* pBuffer , uint32_t dwBufferLength );
1683 #endif
1684 
1702 #ifdef LIBTIEPIE_DYNAMIC
1703 typedef LibTiePieStatus_t(*LibTiePieLibGetLastStatus_t)( void );
1704 #else
1705 LibTiePieStatus_t LibGetLastStatus( void );
1706 #endif
1707 
1725 #ifdef LIBTIEPIE_DYNAMIC
1726 typedef const char*(*LibTiePieLibGetLastStatusStr_t)( void );
1727 #else
1728 const char* LibGetLastStatusStr( void );
1729 #endif
1730 
1822 // Workaround: Without this line Doxygen adds the documentation below to the group above.
1823 
1841 #ifdef LIBTIEPIE_DYNAMIC
1842 typedef void(*LibTiePieLstUpdate_t)( void );
1843 #else
1844 void LstUpdate( void );
1845 #endif
1846 
1858 #ifdef LIBTIEPIE_DYNAMIC
1859 typedef uint32_t(*LibTiePieLstGetCount_t)( void );
1860 #else
1861 uint32_t LstGetCount( void );
1862 #endif
1863 
1903 #ifdef LIBTIEPIE_DYNAMIC
1904 typedef LibTiePieHandle_t(*LibTiePieLstOpenDevice_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwDeviceType );
1905 #else
1906 LibTiePieHandle_t LstOpenDevice( uint32_t dwIdKind , uint32_t dwId , uint32_t dwDeviceType );
1907 #endif
1908 
1946 #ifdef LIBTIEPIE_DYNAMIC
1947 typedef LibTiePieHandle_t(*LibTiePieLstOpenOscilloscope_t)( uint32_t dwIdKind , uint32_t dwId );
1948 #else
1949 LibTiePieHandle_t LstOpenOscilloscope( uint32_t dwIdKind , uint32_t dwId );
1950 #endif
1951 
1989 #ifdef LIBTIEPIE_DYNAMIC
1990 typedef LibTiePieHandle_t(*LibTiePieLstOpenGenerator_t)( uint32_t dwIdKind , uint32_t dwId );
1991 #else
1992 LibTiePieHandle_t LstOpenGenerator( uint32_t dwIdKind , uint32_t dwId );
1993 #endif
1994 
2032 #ifdef LIBTIEPIE_DYNAMIC
2033 typedef LibTiePieHandle_t(*LibTiePieLstOpenI2CHost_t)( uint32_t dwIdKind , uint32_t dwId );
2034 #else
2035 LibTiePieHandle_t LstOpenI2CHost( uint32_t dwIdKind , uint32_t dwId );
2036 #endif
2037 
2058 #ifdef LIBTIEPIE_DYNAMIC
2059 typedef uint32_t(*LibTiePieLstCreateCombinedDevice_t)( const LibTiePieHandle_t* pDeviceHandles , uint32_t dwCount );
2060 #else
2061 uint32_t LstCreateCombinedDevice( const LibTiePieHandle_t* pDeviceHandles , uint32_t dwCount );
2062 #endif
2063 
2085 #ifdef LIBTIEPIE_DYNAMIC
2086 typedef LibTiePieHandle_t(*LibTiePieLstCreateAndOpenCombinedDevice_t)( const LibTiePieHandle_t* pDeviceHandles , uint32_t dwCount );
2087 #else
2088 LibTiePieHandle_t LstCreateAndOpenCombinedDevice( const LibTiePieHandle_t* pDeviceHandles , uint32_t dwCount );
2089 #endif
2090 
2106 #ifdef LIBTIEPIE_DYNAMIC
2107 typedef void(*LibTiePieLstRemoveDevice_t)( uint32_t dwSerialNumber );
2108 #else
2109 void LstRemoveDevice( uint32_t dwSerialNumber );
2110 #endif
2111 
2126 #ifdef LIBTIEPIE_DYNAMIC
2127 typedef void(*LibTiePieLstRemoveDeviceForce_t)(uint32_t dwSerialNumber);
2128 #else
2129 void LstRemoveDeviceForce(uint32_t dwSerialNumber);
2130 #endif
2131 
2158 // Workaround: Without this line Doxygen adds the documentation below to the group above.
2159 
2183 #ifdef LIBTIEPIE_DYNAMIC
2184 typedef bool8_t(*LibTiePieLstDevCanOpen_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwDeviceType );
2185 #else
2186 bool8_t LstDevCanOpen( uint32_t dwIdKind , uint32_t dwId , uint32_t dwDeviceType );
2187 #endif
2188 
2207 #ifdef LIBTIEPIE_DYNAMIC
2208 typedef uint32_t(*LibTiePieLstDevGetProductId_t)( uint32_t dwIdKind , uint32_t dwId );
2209 #else
2210 uint32_t LstDevGetProductId( uint32_t dwIdKind , uint32_t dwId );
2211 #endif
2212 
2214 
2233 #ifdef LIBTIEPIE_DYNAMIC
2234 typedef uint32_t(*LibTiePieLstDevGetVendorId_t)( uint32_t dwIdKind , uint32_t dwId );
2235 #else
2236 uint32_t LstDevGetVendorId( uint32_t dwIdKind , uint32_t dwId );
2237 #endif
2238 
2240 
2277 #ifdef LIBTIEPIE_DYNAMIC
2278 typedef uint32_t(*LibTiePieLstDevGetName_t)( uint32_t dwIdKind , uint32_t dwId , char* pBuffer , uint32_t dwBufferLength );
2279 #else
2280 uint32_t LstDevGetName( uint32_t dwIdKind , uint32_t dwId , char* pBuffer , uint32_t dwBufferLength );
2281 #endif
2282 
2319 #ifdef LIBTIEPIE_DYNAMIC
2320 typedef uint32_t(*LibTiePieLstDevGetNameShort_t)( uint32_t dwIdKind , uint32_t dwId , char* pBuffer , uint32_t dwBufferLength );
2321 #else
2322 uint32_t LstDevGetNameShort( uint32_t dwIdKind , uint32_t dwId , char* pBuffer , uint32_t dwBufferLength );
2323 #endif
2324 
2361 #ifdef LIBTIEPIE_DYNAMIC
2362 typedef uint32_t(*LibTiePieLstDevGetNameShortest_t)( uint32_t dwIdKind , uint32_t dwId , char* pBuffer , uint32_t dwBufferLength );
2363 #else
2364 uint32_t LstDevGetNameShortest( uint32_t dwIdKind , uint32_t dwId , char* pBuffer , uint32_t dwBufferLength );
2365 #endif
2366 
2385 #ifdef LIBTIEPIE_DYNAMIC
2386 typedef TpVersion_t(*LibTiePieLstDevGetDriverVersion_t)( uint32_t dwIdKind , uint32_t dwId );
2387 #else
2388 TpVersion_t LstDevGetDriverVersion( uint32_t dwIdKind , uint32_t dwId );
2389 #endif
2390 
2409 #ifdef LIBTIEPIE_DYNAMIC
2410 typedef TpVersion_t(*LibTiePieLstDevGetRecommendedDriverVersion_t)( uint32_t dwIdKind , uint32_t dwId );
2411 #else
2412 TpVersion_t LstDevGetRecommendedDriverVersion( uint32_t dwIdKind , uint32_t dwId );
2413 #endif
2414 
2433 #ifdef LIBTIEPIE_DYNAMIC
2434 typedef TpVersion_t(*LibTiePieLstDevGetFirmwareVersion_t)( uint32_t dwIdKind , uint32_t dwId );
2435 #else
2436 TpVersion_t LstDevGetFirmwareVersion( uint32_t dwIdKind , uint32_t dwId );
2437 #endif
2438 
2440 
2459 #ifdef LIBTIEPIE_DYNAMIC
2460 typedef TpVersion_t(*LibTiePieLstDevGetRecommendedFirmwareVersion_t)( uint32_t dwIdKind , uint32_t dwId );
2461 #else
2462 TpVersion_t LstDevGetRecommendedFirmwareVersion( uint32_t dwIdKind , uint32_t dwId );
2463 #endif
2464 
2466 
2494 #ifdef LIBTIEPIE_DYNAMIC
2495 typedef TpDate_t(*LibTiePieLstDevGetCalibrationDate_t)( uint32_t dwIdKind , uint32_t dwId );
2496 #else
2497 TpDate_t LstDevGetCalibrationDate( uint32_t dwIdKind , uint32_t dwId );
2498 #endif
2499 
2522 #ifdef LIBTIEPIE_DYNAMIC
2523 typedef uint32_t(*LibTiePieLstDevGetSerialNumber_t)( uint32_t dwIdKind , uint32_t dwId );
2524 #else
2525 uint32_t LstDevGetSerialNumber( uint32_t dwIdKind , uint32_t dwId );
2526 #endif
2527 
2546 #ifdef LIBTIEPIE_DYNAMIC
2547 typedef uint32_t(*LibTiePieLstDevGetIPv4Address_t)( uint32_t dwIdKind , uint32_t dwId );
2548 #else
2549 uint32_t LstDevGetIPv4Address( uint32_t dwIdKind , uint32_t dwId );
2550 #endif
2551 
2570 #ifdef LIBTIEPIE_DYNAMIC
2571 typedef uint16_t(*LibTiePieLstDevGetIPPort_t)( uint32_t dwIdKind , uint32_t dwId );
2572 #else
2573 uint16_t LstDevGetIPPort( uint32_t dwIdKind , uint32_t dwId );
2574 #endif
2575 
2584 #ifdef LIBTIEPIE_DYNAMIC
2585 typedef bool8_t(*LibTiePieLstDevHasServer_t)( uint32_t dwIdKind , uint32_t dwId );
2586 #else
2587 bool8_t LstDevHasServer( uint32_t dwIdKind , uint32_t dwId );
2588 #endif
2589 
2598 #ifdef LIBTIEPIE_DYNAMIC
2599 typedef LibTiePieHandle_t(*LibTiePieLstDevGetServer_t)( uint32_t dwIdKind , uint32_t dwId );
2600 #else
2601 LibTiePieHandle_t LstDevGetServer( uint32_t dwIdKind , uint32_t dwId );
2602 #endif
2603 
2642 #ifdef LIBTIEPIE_DYNAMIC
2643 typedef uint32_t(*LibTiePieLstDevGetTypes_t)( uint32_t dwIdKind , uint32_t dwId );
2644 #else
2645 uint32_t LstDevGetTypes( uint32_t dwIdKind , uint32_t dwId );
2646 #endif
2647 
2673 // Workaround: Without this line Doxygen adds the documentation below to the group above.
2674 
2710 #ifdef LIBTIEPIE_DYNAMIC
2711 typedef uint32_t(*LibTiePieLstDevGetContainedSerialNumbers_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t* pBuffer , uint32_t dwBufferLength );
2712 #else
2713 uint32_t LstDevGetContainedSerialNumbers( uint32_t dwIdKind , uint32_t dwId , uint32_t* pBuffer , uint32_t dwBufferLength );
2714 #endif
2715 
2736 #ifdef LIBTIEPIE_DYNAMIC
2737 typedef uint32_t(*LibTiePieLstCbDevGetProductId_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2738 #else
2739 uint32_t LstCbDevGetProductId( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2740 #endif
2741 
2743 
2764 #ifdef LIBTIEPIE_DYNAMIC
2765 typedef uint32_t(*LibTiePieLstCbDevGetVendorId_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2766 #else
2767 uint32_t LstCbDevGetVendorId( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2768 #endif
2769 
2771 
2796 #ifdef LIBTIEPIE_DYNAMIC
2797 typedef uint32_t(*LibTiePieLstCbDevGetName_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber , char* pBuffer , uint32_t dwBufferLength );
2798 #else
2799 uint32_t LstCbDevGetName( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber , char* pBuffer , uint32_t dwBufferLength );
2800 #endif
2801 
2826 #ifdef LIBTIEPIE_DYNAMIC
2827 typedef uint32_t(*LibTiePieLstCbDevGetNameShort_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber , char* pBuffer , uint32_t dwBufferLength );
2828 #else
2829 uint32_t LstCbDevGetNameShort( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber , char* pBuffer , uint32_t dwBufferLength );
2830 #endif
2831 
2856 #ifdef LIBTIEPIE_DYNAMIC
2857 typedef uint32_t(*LibTiePieLstCbDevGetNameShortest_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber , char* pBuffer , uint32_t dwBufferLength );
2858 #else
2859 uint32_t LstCbDevGetNameShortest( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber , char* pBuffer , uint32_t dwBufferLength );
2860 #endif
2861 
2882 #ifdef LIBTIEPIE_DYNAMIC
2883 typedef TpVersion_t(*LibTiePieLstCbDevGetDriverVersion_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2884 #else
2885 TpVersion_t LstCbDevGetDriverVersion( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2886 #endif
2887 
2908 #ifdef LIBTIEPIE_DYNAMIC
2909 typedef TpVersion_t(*LibTiePieLstCbDevGetFirmwareVersion_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2910 #else
2911 TpVersion_t LstCbDevGetFirmwareVersion( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2912 #endif
2913 
2934 #ifdef LIBTIEPIE_DYNAMIC
2935 typedef TpDate_t(*LibTiePieLstCbDevGetCalibrationDate_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2936 #else
2937 TpDate_t LstCbDevGetCalibrationDate( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2938 #endif
2939 
2960 #ifdef LIBTIEPIE_DYNAMIC
2961 typedef uint16_t(*LibTiePieLstCbScpGetChannelCount_t)( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2962 #else
2963 uint16_t LstCbScpGetChannelCount( uint32_t dwIdKind , uint32_t dwId , uint32_t dwContainedDeviceSerialNumber );
2964 #endif
2965 
2983 // Workaround: Without this line Doxygen adds the documentation below to the group above.
2984 
2997 #ifdef LIBTIEPIE_DYNAMIC
2998 typedef void(*LibTiePieLstSetCallbackDeviceAdded_t)( TpCallbackDeviceList_t pCallback , void* pData );
2999 #else
3000 void LstSetCallbackDeviceAdded( TpCallbackDeviceList_t pCallback , void* pData );
3001 #endif
3002 
3010 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3011 
3024 #ifdef LIBTIEPIE_DYNAMIC
3025 typedef void(*LibTiePieLstSetCallbackDeviceRemoved_t)( TpCallbackDeviceList_t pCallback , void* pData );
3026 #else
3027 void LstSetCallbackDeviceRemoved( TpCallbackDeviceList_t pCallback , void* pData );
3028 #endif
3029 
3037 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3038 
3051 #ifdef LIBTIEPIE_DYNAMIC
3052 typedef void(*LibTiePieLstSetCallbackDeviceCanOpenChanged_t)( TpCallbackDeviceList_t pCallback , void* pData );
3053 #else
3054 void LstSetCallbackDeviceCanOpenChanged( TpCallbackDeviceList_t pCallback , void* pData );
3055 #endif
3056 
3061 #ifdef LIBTIEPIE_LINUX
3062 
3076 #ifdef LIBTIEPIE_DYNAMIC
3077 typedef void(*LibTiePieLstSetEventDeviceAdded_t)( int fdEvent );
3078 #else
3079 void LstSetEventDeviceAdded( int fdEvent );
3080 #endif
3081 
3095 #ifdef LIBTIEPIE_DYNAMIC
3096 typedef void(*LibTiePieLstSetEventDeviceRemoved_t)( int fdEvent );
3097 #else
3098 void LstSetEventDeviceRemoved( int fdEvent );
3099 #endif
3100 
3114 #ifdef LIBTIEPIE_DYNAMIC
3115 typedef void(*LibTiePieLstSetEventDeviceCanOpenChanged_t)( int fdEvent );
3116 #else
3117 void LstSetEventDeviceCanOpenChanged( int fdEvent );
3118 #endif
3119 
3120 #endif
3121 
3122 #ifdef LIBTIEPIE_WINDOWS
3123 
3137 #ifdef LIBTIEPIE_DYNAMIC
3138 typedef void(*LibTiePieLstSetEventDeviceAdded_t)( HANDLE hEvent );
3139 #else
3140 void LstSetEventDeviceAdded( HANDLE hEvent );
3141 #endif
3142 
3156 #ifdef LIBTIEPIE_DYNAMIC
3157 typedef void(*LibTiePieLstSetEventDeviceRemoved_t)( HANDLE hEvent );
3158 #else
3159 void LstSetEventDeviceRemoved( HANDLE hEvent );
3160 #endif
3161 
3175 #ifdef LIBTIEPIE_DYNAMIC
3176 typedef void(*LibTiePieLstSetEventDeviceCanOpenChanged_t)( HANDLE hEvent );
3177 #else
3178 void LstSetEventDeviceCanOpenChanged( HANDLE hEvent );
3179 #endif
3180 
3198 #ifdef LIBTIEPIE_DYNAMIC
3199 typedef void(*LibTiePieLstSetMessageDeviceAdded_t)( HWND hWnd );
3200 #else
3201 void LstSetMessageDeviceAdded( HWND hWnd );
3202 #endif
3203 
3221 #ifdef LIBTIEPIE_DYNAMIC
3222 typedef void(*LibTiePieLstSetMessageDeviceRemoved_t)( HWND hWnd );
3223 #else
3224 void LstSetMessageDeviceRemoved( HWND hWnd );
3225 #endif
3226 
3244 #ifdef LIBTIEPIE_DYNAMIC
3245 typedef void(*LibTiePieLstSetMessageDeviceCanOpenChanged_t)( HWND hWnd );
3246 #else
3247 void LstSetMessageDeviceCanOpenChanged( HWND hWnd );
3248 #endif
3249 
3250 #endif
3251 
3260 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3261 
3268 #ifdef LIBTIEPIE_DYNAMIC
3269 typedef bool8_t(*LibTiePieNetGetAutoDetectEnabled_t)( void );
3270 #else
3271 bool8_t NetGetAutoDetectEnabled( void );
3272 #endif
3273 
3281 #ifdef LIBTIEPIE_DYNAMIC
3282 typedef bool8_t(*LibTiePieNetSetAutoDetectEnabled_t)( bool8_t bEnable );
3283 #else
3284 bool8_t NetSetAutoDetectEnabled( bool8_t bEnable );
3285 #endif
3286 
3292 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3293 
3303 #ifdef LIBTIEPIE_DYNAMIC
3304 typedef bool8_t(*LibTiePieNetSrvAdd_t)( const char* pURL , uint32_t dwURLLength , LibTiePieHandle_t* pHandle );
3305 #else
3306 bool8_t NetSrvAdd( const char* pURL , uint32_t dwURLLength , LibTiePieHandle_t* pHandle );
3307 #endif
3308 
3318 #ifdef LIBTIEPIE_DYNAMIC
3319 typedef bool8_t(*LibTiePieNetSrvRemove_t)( const char* pURL , uint32_t dwURLLength , bool8_t bForce );
3320 #else
3321 bool8_t NetSrvRemove( const char* pURL , uint32_t dwURLLength , bool8_t bForce );
3322 #endif
3323 
3330 #ifdef LIBTIEPIE_DYNAMIC
3331 typedef uint32_t(*LibTiePieNetSrvGetCount_t)( void );
3332 #else
3333 uint32_t NetSrvGetCount( void );
3334 #endif
3335 
3343 #ifdef LIBTIEPIE_DYNAMIC
3344 typedef LibTiePieHandle_t(*LibTiePieNetSrvGetByIndex_t)( uint32_t dwIndex );
3345 #else
3346 LibTiePieHandle_t NetSrvGetByIndex( uint32_t dwIndex );
3347 #endif
3348 
3357 #ifdef LIBTIEPIE_DYNAMIC
3358 typedef LibTiePieHandle_t(*LibTiePieNetSrvGetByURL_t)( const char* pURL , uint32_t dwURLLength );
3359 #else
3360 LibTiePieHandle_t NetSrvGetByURL( const char* pURL , uint32_t dwURLLength );
3361 #endif
3362 
3378 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3379 
3392 #ifdef LIBTIEPIE_DYNAMIC
3393 typedef void(*LibTiePieNetSrvSetCallbackAdded_t)( TpCallbackHandle_t pCallback , void* pData );
3394 #else
3395 void NetSrvSetCallbackAdded( TpCallbackHandle_t pCallback , void* pData );
3396 #endif
3397 
3398 #ifdef LIBTIEPIE_LINUX
3399 
3412 #ifdef LIBTIEPIE_DYNAMIC
3413 typedef void(*LibTiePieNetSrvSetEventAdded_t)( int fdEvent );
3414 #else
3415 void NetSrvSetEventAdded( int fdEvent );
3416 #endif
3417 
3418 #endif
3419 
3420 #ifdef LIBTIEPIE_WINDOWS
3421 
3434 #ifdef LIBTIEPIE_DYNAMIC
3435 typedef void(*LibTiePieNetSrvSetEventAdded_t)( HANDLE hEvent );
3436 #else
3437 void NetSrvSetEventAdded( HANDLE hEvent );
3438 #endif
3439 
3456 #ifdef LIBTIEPIE_DYNAMIC
3457 typedef void(*LibTiePieNetSrvSetMessageAdded_t)( HWND hWnd );
3458 #else
3459 void NetSrvSetMessageAdded( HWND hWnd );
3460 #endif
3461 
3462 #endif
3463 
3486 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3487 
3510 #ifdef LIBTIEPIE_DYNAMIC
3511 typedef void(*LibTiePieObjClose_t)( LibTiePieHandle_t hHandle );
3512 #else
3513 void ObjClose( LibTiePieHandle_t hHandle );
3514 #endif
3515 
3529 #ifdef LIBTIEPIE_DYNAMIC
3530 typedef bool8_t(*LibTiePieObjIsRemoved_t)( LibTiePieHandle_t hHandle );
3531 #else
3532 bool8_t ObjIsRemoved( LibTiePieHandle_t hHandle );
3533 #endif
3534 
3548 #ifdef LIBTIEPIE_DYNAMIC
3549 typedef uint64_t(*LibTiePieObjGetInterfaces_t)( LibTiePieHandle_t hHandle );
3550 #else
3551 uint64_t ObjGetInterfaces( LibTiePieHandle_t hHandle );
3552 #endif
3553 
3566 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3567 
3576 #ifdef LIBTIEPIE_DYNAMIC
3577 typedef void(*LibTiePieObjSetEventCallback_t)( LibTiePieHandle_t hHandle , TpCallbackEvent_t pCallback , void* pData );
3578 #else
3579 void ObjSetEventCallback( LibTiePieHandle_t hHandle , TpCallbackEvent_t pCallback , void* pData );
3580 #endif
3581 
3592 #ifdef LIBTIEPIE_DYNAMIC
3593 typedef bool8_t(*LibTiePieObjGetEvent_t)( LibTiePieHandle_t hHandle , uint32_t* pEvent , uint32_t* pValue );
3594 #else
3595 bool8_t ObjGetEvent( LibTiePieHandle_t hHandle , uint32_t* pEvent , uint32_t* pValue );
3596 #endif
3597 
3598 #ifdef LIBTIEPIE_LINUX
3599 
3608 #ifdef LIBTIEPIE_DYNAMIC
3609 typedef void(*LibTiePieObjSetEventEvent_t)( LibTiePieHandle_t hHandle , int fdEvent );
3610 #else
3611 void ObjSetEventEvent( LibTiePieHandle_t hHandle , int fdEvent );
3612 #endif
3613 
3614 #endif
3615 
3616 #ifdef LIBTIEPIE_WINDOWS
3617 
3626 #ifdef LIBTIEPIE_DYNAMIC
3627 typedef void(*LibTiePieObjSetEventEvent_t)( LibTiePieHandle_t hHandle , HANDLE hEvent );
3628 #else
3629 void ObjSetEventEvent( LibTiePieHandle_t hHandle , HANDLE hEvent );
3630 #endif
3631 
3644 #ifdef LIBTIEPIE_DYNAMIC
3645 typedef void(*LibTiePieObjSetEventWindowHandle_t)( LibTiePieHandle_t hHandle , HWND hWnd );
3646 #else
3647 void ObjSetEventWindowHandle( LibTiePieHandle_t hHandle , HWND hWnd );
3648 #endif
3649 
3650 #endif
3651 
3662 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3663 
3683 #ifdef LIBTIEPIE_DYNAMIC
3684 typedef void(*LibTiePieDevClose_t)( LibTiePieHandle_t hDevice );
3685 #else
3686 void DevClose( LibTiePieHandle_t hDevice );
3687 #endif
3688 
3695 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3696 
3711 #ifdef LIBTIEPIE_DYNAMIC
3712 typedef bool8_t(*LibTiePieDevIsRemoved_t)( LibTiePieHandle_t hDevice );
3713 #else
3714 bool8_t DevIsRemoved( LibTiePieHandle_t hDevice );
3715 #endif
3716 
3724 // Workaround: Without this line Doxygen adds the documentation below to the group above.
3725 
3752 #ifdef LIBTIEPIE_DYNAMIC
3753 typedef TpVersion_t(*LibTiePieDevGetDriverVersion_t)( LibTiePieHandle_t hDevice );
3754 #else
3755 TpVersion_t DevGetDriverVersion( LibTiePieHandle_t hDevice );
3756 #endif
3757 
3784 #ifdef LIBTIEPIE_DYNAMIC
3785 typedef TpVersion_t(*LibTiePieDevGetFirmwareVersion_t)( LibTiePieHandle_t hDevice );
3786 #else
3787 TpVersion_t DevGetFirmwareVersion( LibTiePieHandle_t hDevice );
3788 #endif
3789 
3815 #ifdef LIBTIEPIE_DYNAMIC
3816 typedef TpDate_t(*LibTiePieDevGetCalibrationDate_t)( LibTiePieHandle_t hDevice );
3817 #else
3818 TpDate_t DevGetCalibrationDate( LibTiePieHandle_t hDevice );
3819 #endif
3820 
3822 
3851 #ifdef LIBTIEPIE_DYNAMIC
3852 typedef uint32_t(*LibTiePieDevGetCalibrationToken_t)( LibTiePieHandle_t hDevice , char* pBuffer , uint32_t dwBufferLength );
3853 #else
3854 uint32_t DevGetCalibrationToken( LibTiePieHandle_t hDevice , char* pBuffer , uint32_t dwBufferLength );
3855 #endif
3856 
3858 
3874 #ifdef LIBTIEPIE_DYNAMIC
3875 typedef uint32_t(*LibTiePieDevGetSerialNumber_t)( LibTiePieHandle_t hDevice );
3876 #else
3877 uint32_t DevGetSerialNumber( LibTiePieHandle_t hDevice );
3878 #endif
3879 
3897 #ifdef LIBTIEPIE_DYNAMIC
3898 typedef uint32_t(*LibTiePieDevGetIPv4Address_t)( LibTiePieHandle_t hDevice );
3899 #else
3900 uint32_t DevGetIPv4Address( LibTiePieHandle_t hDevice );
3901 #endif
3902 
3920 #ifdef LIBTIEPIE_DYNAMIC
3921 typedef uint16_t(*LibTiePieDevGetIPPort_t)( LibTiePieHandle_t hDevice );
3922 #else
3923 uint16_t DevGetIPPort( LibTiePieHandle_t hDevice );
3924 #endif
3925 
3941 #ifdef LIBTIEPIE_DYNAMIC
3942 typedef uint32_t(*LibTiePieDevGetProductId_t)( LibTiePieHandle_t hDevice );
3943 #else
3944 uint32_t DevGetProductId( LibTiePieHandle_t hDevice );
3945 #endif
3946 
3948 
3964 #ifdef LIBTIEPIE_DYNAMIC
3965 typedef uint32_t(*LibTiePieDevGetVendorId_t)( LibTiePieHandle_t hDevice );
3966 #else
3967 uint32_t DevGetVendorId( LibTiePieHandle_t hDevice );
3968 #endif
3969 
3971 
3987 #ifdef LIBTIEPIE_DYNAMIC
3988 typedef uint32_t(*LibTiePieDevGetType_t)( LibTiePieHandle_t hDevice );
3989 #else
3990 uint32_t DevGetType( LibTiePieHandle_t hDevice );
3991 #endif
3992 
4026 #ifdef LIBTIEPIE_DYNAMIC
4027 typedef uint32_t(*LibTiePieDevGetName_t)( LibTiePieHandle_t hDevice , char* pBuffer , uint32_t dwBufferLength );
4028 #else
4029 uint32_t DevGetName( LibTiePieHandle_t hDevice , char* pBuffer , uint32_t dwBufferLength );
4030 #endif
4031 
4065 #ifdef LIBTIEPIE_DYNAMIC
4066 typedef uint32_t(*LibTiePieDevGetNameShort_t)( LibTiePieHandle_t hDevice , char* pBuffer , uint32_t dwBufferLength );
4067 #else
4068 uint32_t DevGetNameShort( LibTiePieHandle_t hDevice , char* pBuffer , uint32_t dwBufferLength );
4069 #endif
4070 
4104 #ifdef LIBTIEPIE_DYNAMIC
4105 typedef uint32_t(*LibTiePieDevGetNameShortest_t)( LibTiePieHandle_t hDevice , char* pBuffer , uint32_t dwBufferLength );
4106 #else
4107 uint32_t DevGetNameShortest( LibTiePieHandle_t hDevice , char* pBuffer , uint32_t dwBufferLength );
4108 #endif
4109 
4117 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4118 
4133 #ifdef LIBTIEPIE_DYNAMIC
4134 typedef bool8_t(*LibTiePieDevHasBattery_t)(LibTiePieHandle_t hDevice);
4135 #else
4136 bool8_t DevHasBattery(LibTiePieHandle_t hDevice);
4137 #endif
4138 
4155 #ifdef LIBTIEPIE_DYNAMIC
4156 typedef int8_t(*LibTiePieDevGetBatteryCharge_t)(LibTiePieHandle_t hDevice);
4157 #else
4158 int8_t DevGetBatteryCharge(LibTiePieHandle_t hDevice);
4159 #endif
4160 
4178 #ifdef LIBTIEPIE_DYNAMIC
4179 typedef int32_t(*LibTiePieDevGetBatteryTimeToEmpty_t)(LibTiePieHandle_t hDevice);
4180 #else
4181 int32_t DevGetBatteryTimeToEmpty(LibTiePieHandle_t hDevice);
4182 #endif
4183 
4201 #ifdef LIBTIEPIE_DYNAMIC
4202 typedef int32_t(*LibTiePieDevGetBatteryTimeToFull_t)(LibTiePieHandle_t hDevice);
4203 #else
4204 int32_t DevGetBatteryTimeToFull(LibTiePieHandle_t hDevice);
4205 #endif
4206 
4224 #ifdef LIBTIEPIE_DYNAMIC
4225 typedef bool8_t(*LibTiePieDevIsBatteryChargerConnected_t)(LibTiePieHandle_t hDevice);
4226 #else
4227 bool8_t DevIsBatteryChargerConnected(LibTiePieHandle_t hDevice);
4228 #endif
4229 
4248 #ifdef LIBTIEPIE_DYNAMIC
4249 typedef bool8_t(*LibTiePieDevIsBatteryCharging_t)(LibTiePieHandle_t hDevice);
4250 #else
4251 bool8_t DevIsBatteryCharging(LibTiePieHandle_t hDevice);
4252 #endif
4253 
4270 #ifdef LIBTIEPIE_DYNAMIC
4271 typedef bool8_t(*LibTiePieDevIsBatteryBroken_t)(LibTiePieHandle_t hDevice);
4272 #else
4273 bool8_t DevIsBatteryBroken(LibTiePieHandle_t hDevice);
4274 #endif
4275 
4293 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4294 
4311 #ifdef LIBTIEPIE_DYNAMIC
4312 typedef void(*LibTiePieDevSetCallbackRemoved_t)( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
4313 #else
4314 void DevSetCallbackRemoved( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
4315 #endif
4316 
4317 #ifdef LIBTIEPIE_LINUX
4318 
4335 #ifdef LIBTIEPIE_DYNAMIC
4336 typedef void(*LibTiePieDevSetEventRemoved_t)( LibTiePieHandle_t hDevice , int fdEvent );
4337 #else
4338 void DevSetEventRemoved( LibTiePieHandle_t hDevice , int fdEvent );
4339 #endif
4340 
4341 #endif
4342 
4343 #ifdef LIBTIEPIE_WINDOWS
4344 
4361 #ifdef LIBTIEPIE_DYNAMIC
4362 typedef void(*LibTiePieDevSetEventRemoved_t)( LibTiePieHandle_t hDevice , HANDLE hEvent );
4363 #else
4364 void DevSetEventRemoved( LibTiePieHandle_t hDevice , HANDLE hEvent );
4365 #endif
4366 
4385 #ifdef LIBTIEPIE_DYNAMIC
4386 typedef void(*LibTiePieDevSetMessageRemoved_t)( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
4387 #else
4388 void DevSetMessageRemoved( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
4389 #endif
4390 
4391 #endif
4392 
4408 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4409 
4425 #ifdef LIBTIEPIE_DYNAMIC
4426 typedef uint16_t(*LibTiePieDevTrGetInputCount_t)( LibTiePieHandle_t hDevice );
4427 #else
4428 uint16_t DevTrGetInputCount( LibTiePieHandle_t hDevice );
4429 #endif
4430 
4451 #ifdef LIBTIEPIE_DYNAMIC
4452 typedef uint16_t(*LibTiePieDevTrGetInputIndexById_t)( LibTiePieHandle_t hDevice , uint32_t dwId );
4453 #else
4454 uint16_t DevTrGetInputIndexById( LibTiePieHandle_t hDevice , uint32_t dwId );
4455 #endif
4456 
4462 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4463 
4476 #ifdef LIBTIEPIE_DYNAMIC
4477 typedef bool8_t(*LibTiePieScpTrInIsTriggered_t)( LibTiePieHandle_t hDevice , uint16_t wInput );
4478 #else
4479 bool8_t ScpTrInIsTriggered( LibTiePieHandle_t hDevice , uint16_t wInput );
4480 #endif
4481 
4491 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4492 
4512 #ifdef LIBTIEPIE_DYNAMIC
4513 typedef bool8_t(*LibTiePieDevTrInGetEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wInput );
4514 #else
4515 bool8_t DevTrInGetEnabled( LibTiePieHandle_t hDevice , uint16_t wInput );
4516 #endif
4517 
4538 #ifdef LIBTIEPIE_DYNAMIC
4539 typedef bool8_t(*LibTiePieDevTrInSetEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wInput , bool8_t bEnable );
4540 #else
4541 bool8_t DevTrInSetEnabled( LibTiePieHandle_t hDevice , uint16_t wInput , bool8_t bEnable );
4542 #endif
4543 
4556 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4557 
4578 #ifdef LIBTIEPIE_DYNAMIC
4579 typedef uint64_t(*LibTiePieDevTrInGetKinds_t)( LibTiePieHandle_t hDevice , uint16_t wInput );
4580 #else
4581 uint64_t DevTrInGetKinds( LibTiePieHandle_t hDevice , uint16_t wInput );
4582 #endif
4583 
4585 
4608 #ifdef LIBTIEPIE_DYNAMIC
4609 typedef uint64_t(*LibTiePieScpTrInGetKindsEx_t)( LibTiePieHandle_t hDevice , uint16_t wInput , uint32_t dwMeasureMode );
4610 #else
4611 uint64_t ScpTrInGetKindsEx( LibTiePieHandle_t hDevice , uint16_t wInput , uint32_t dwMeasureMode );
4612 #endif
4613 
4615 
4636 #ifdef LIBTIEPIE_DYNAMIC
4637 typedef uint64_t(*LibTiePieDevTrInGetKind_t)( LibTiePieHandle_t hDevice , uint16_t wInput );
4638 #else
4639 uint64_t DevTrInGetKind( LibTiePieHandle_t hDevice , uint16_t wInput );
4640 #endif
4641 
4664 #ifdef LIBTIEPIE_DYNAMIC
4665 typedef uint64_t(*LibTiePieDevTrInSetKind_t)( LibTiePieHandle_t hDevice , uint16_t wInput , uint64_t qwKind );
4666 #else
4667 uint64_t DevTrInSetKind( LibTiePieHandle_t hDevice , uint16_t wInput , uint64_t qwKind );
4668 #endif
4669 
4682 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4683 
4705 #ifdef LIBTIEPIE_DYNAMIC
4706 typedef bool8_t(*LibTiePieDevTrInIsAvailable_t)( LibTiePieHandle_t hDevice , uint16_t wInput );
4707 #else
4708 bool8_t DevTrInIsAvailable( LibTiePieHandle_t hDevice , uint16_t wInput );
4709 #endif
4710 
4712 
4722 #ifdef LIBTIEPIE_DYNAMIC
4723 typedef bool8_t(*LibTiePieScpTrInIsAvailableEx_t)( LibTiePieHandle_t hDevice , uint16_t wInput , uint32_t dwMeasureMode );
4724 #else
4725 bool8_t ScpTrInIsAvailableEx( LibTiePieHandle_t hDevice , uint16_t wInput , uint32_t dwMeasureMode );
4726 #endif
4727 
4729 
4748 #ifdef LIBTIEPIE_DYNAMIC
4749 typedef uint32_t(*LibTiePieDevTrInGetId_t)( LibTiePieHandle_t hDevice , uint16_t wInput );
4750 #else
4751 uint32_t DevTrInGetId( LibTiePieHandle_t hDevice , uint16_t wInput );
4752 #endif
4753 
4773 #ifdef LIBTIEPIE_DYNAMIC
4774 typedef uint32_t(*LibTiePieDevTrInGetName_t)( LibTiePieHandle_t hDevice , uint16_t wInput , char* pBuffer , uint32_t dwBufferLength );
4775 #else
4776 uint32_t DevTrInGetName( LibTiePieHandle_t hDevice , uint16_t wInput , char* pBuffer , uint32_t dwBufferLength );
4777 #endif
4778 
4792 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4793 
4809 #ifdef LIBTIEPIE_DYNAMIC
4810 typedef uint16_t(*LibTiePieDevTrGetOutputCount_t)( LibTiePieHandle_t hDevice );
4811 #else
4812 uint16_t DevTrGetOutputCount( LibTiePieHandle_t hDevice );
4813 #endif
4814 
4833 #ifdef LIBTIEPIE_DYNAMIC
4834 typedef uint16_t(*LibTiePieDevTrGetOutputIndexById_t)( LibTiePieHandle_t hDevice , uint32_t dwId );
4835 #else
4836 uint16_t DevTrGetOutputIndexById( LibTiePieHandle_t hDevice , uint32_t dwId );
4837 #endif
4838 
4847 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4848 
4867 #ifdef LIBTIEPIE_DYNAMIC
4868 typedef bool8_t(*LibTiePieDevTrOutGetEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wOutput );
4869 #else
4870 bool8_t DevTrOutGetEnabled( LibTiePieHandle_t hDevice , uint16_t wOutput );
4871 #endif
4872 
4892 #ifdef LIBTIEPIE_DYNAMIC
4893 typedef bool8_t(*LibTiePieDevTrOutSetEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wOutput , bool8_t bEnable );
4894 #else
4895 bool8_t DevTrOutSetEnabled( LibTiePieHandle_t hDevice , uint16_t wOutput , bool8_t bEnable );
4896 #endif
4897 
4914 // Workaround: Without this line Doxygen adds the documentation below to the group above.
4915 
4935 #ifdef LIBTIEPIE_DYNAMIC
4936 typedef uint64_t(*LibTiePieDevTrOutGetEvents_t)( LibTiePieHandle_t hDevice , uint16_t wOutput );
4937 #else
4938 uint64_t DevTrOutGetEvents( LibTiePieHandle_t hDevice , uint16_t wOutput );
4939 #endif
4940 
4960 #ifdef LIBTIEPIE_DYNAMIC
4961 typedef uint64_t(*LibTiePieDevTrOutGetEvent_t)( LibTiePieHandle_t hDevice , uint16_t wOutput );
4962 #else
4963 uint64_t DevTrOutGetEvent( LibTiePieHandle_t hDevice , uint16_t wOutput );
4964 #endif
4965 
4987 #ifdef LIBTIEPIE_DYNAMIC
4988 typedef uint64_t(*LibTiePieDevTrOutSetEvent_t)( LibTiePieHandle_t hDevice , uint16_t wOutput , uint64_t qwEvent );
4989 #else
4990 uint64_t DevTrOutSetEvent( LibTiePieHandle_t hDevice , uint16_t wOutput , uint64_t qwEvent );
4991 #endif
4992 
5004 // Workaround: Without this line Doxygen adds the documentation below to the group above.
5005 
5024 #ifdef LIBTIEPIE_DYNAMIC
5025 typedef uint32_t(*LibTiePieDevTrOutGetId_t)( LibTiePieHandle_t hDevice , uint16_t wOutput );
5026 #else
5027 uint32_t DevTrOutGetId( LibTiePieHandle_t hDevice , uint16_t wOutput );
5028 #endif
5029 
5049 #ifdef LIBTIEPIE_DYNAMIC
5050 typedef uint32_t(*LibTiePieDevTrOutGetName_t)( LibTiePieHandle_t hDevice , uint16_t wOutput , char* pBuffer , uint32_t dwBufferLength );
5051 #else
5052 uint32_t DevTrOutGetName( LibTiePieHandle_t hDevice , uint16_t wOutput , char* pBuffer , uint32_t dwBufferLength );
5053 #endif
5054 
5073 #ifdef LIBTIEPIE_DYNAMIC
5074 typedef bool8_t(*LibTiePieDevTrOutTrigger_t)( LibTiePieHandle_t hDevice , uint16_t wOutput );
5075 #else
5076 bool8_t DevTrOutTrigger( LibTiePieHandle_t hDevice , uint16_t wOutput );
5077 #endif
5078 
5103 // Workaround: Without this line Doxygen adds the documentation below to the group above.
5104 
5119 #ifdef LIBTIEPIE_DYNAMIC
5120 typedef uint16_t(*LibTiePieScpGetChannelCount_t)( LibTiePieHandle_t hDevice );
5121 #else
5122 uint16_t ScpGetChannelCount( LibTiePieHandle_t hDevice );
5123 #endif
5124 
5144 #ifdef LIBTIEPIE_DYNAMIC
5145 typedef bool8_t(*LibTiePieScpChIsAvailable_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5146 #else
5147 bool8_t ScpChIsAvailable( LibTiePieHandle_t hDevice , uint16_t wCh );
5148 #endif
5149 
5151 
5165 #ifdef LIBTIEPIE_DYNAMIC
5166 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 );
5167 #else
5168 bool8_t ScpChIsAvailableEx( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode , double dSampleFrequency , uint8_t byResolution , const bool8_t* pChannelEnabled , uint16_t wChannelCount );
5169 #endif
5170 
5172 
5179 // Workaround: Without this line Doxygen adds the documentation below to the group above.
5180 
5198 #ifdef LIBTIEPIE_DYNAMIC
5199 typedef uint32_t(*LibTiePieScpChGetConnectorType_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5200 #else
5201 uint32_t ScpChGetConnectorType( LibTiePieHandle_t hDevice , uint16_t wCh );
5202 #endif
5203 
5220 #ifdef LIBTIEPIE_DYNAMIC
5221 typedef bool8_t(*LibTiePieScpChIsDifferential_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5222 #else
5223 bool8_t ScpChIsDifferential( LibTiePieHandle_t hDevice , uint16_t wCh );
5224 #endif
5225 
5243 #ifdef LIBTIEPIE_DYNAMIC
5244 typedef double(*LibTiePieScpChGetImpedance_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5245 #else
5246 double ScpChGetImpedance( LibTiePieHandle_t hDevice , uint16_t wCh );
5247 #endif
5248 
5258 // Workaround: Without this line Doxygen adds the documentation below to the group above.
5259 
5281 #ifdef LIBTIEPIE_DYNAMIC
5282 typedef uint32_t(*LibTiePieScpChGetBandwidths_t)( LibTiePieHandle_t hDevice , uint16_t wCh , double* pList , uint32_t dwLength );
5283 #else
5284 uint32_t ScpChGetBandwidths( LibTiePieHandle_t hDevice , uint16_t wCh , double* pList , uint32_t dwLength );
5285 #endif
5286 
5306 #ifdef LIBTIEPIE_DYNAMIC
5307 typedef double(*LibTiePieScpChGetBandwidth_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5308 #else
5309 double ScpChGetBandwidth( LibTiePieHandle_t hDevice , uint16_t wCh );
5310 #endif
5311 
5332 #ifdef LIBTIEPIE_DYNAMIC
5333 typedef double(*LibTiePieScpChSetBandwidth_t)( LibTiePieHandle_t hDevice , uint16_t wCh , double dBandwidth );
5334 #else
5335 double ScpChSetBandwidth( LibTiePieHandle_t hDevice , uint16_t wCh , double dBandwidth );
5336 #endif
5337 
5347 // Workaround: Without this line Doxygen adds the documentation below to the group above.
5348 
5367 #ifdef LIBTIEPIE_DYNAMIC
5368 typedef uint64_t(*LibTiePieScpChGetCouplings_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5369 #else
5370 uint64_t ScpChGetCouplings( LibTiePieHandle_t hDevice , uint16_t wCh );
5371 #endif
5372 
5391 #ifdef LIBTIEPIE_DYNAMIC
5392 typedef uint64_t(*LibTiePieScpChGetCoupling_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5393 #else
5394 uint64_t ScpChGetCoupling( LibTiePieHandle_t hDevice , uint16_t wCh );
5395 #endif
5396 
5419 #ifdef LIBTIEPIE_DYNAMIC
5420 typedef uint64_t(*LibTiePieScpChSetCoupling_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwCoupling );
5421 #else
5422 uint64_t ScpChSetCoupling( LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwCoupling );
5423 #endif
5424 
5436 // Workaround: Without this line Doxygen adds the documentation below to the group above.
5437 
5455 #ifdef LIBTIEPIE_DYNAMIC
5456 typedef bool8_t(*LibTiePieScpChGetEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5457 #else
5458 bool8_t ScpChGetEnabled( LibTiePieHandle_t hDevice , uint16_t wCh );
5459 #endif
5460 
5481 #ifdef LIBTIEPIE_DYNAMIC
5482 typedef bool8_t(*LibTiePieScpChSetEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wCh , bool8_t bEnable );
5483 #else
5484 bool8_t ScpChSetEnabled( LibTiePieHandle_t hDevice , uint16_t wCh , bool8_t bEnable );
5485 #endif
5486 
5505 // Workaround: Without this line Doxygen adds the documentation below to the group above.
5506 
5527 #ifdef LIBTIEPIE_DYNAMIC
5528 typedef double(*LibTiePieScpChGetProbeGain_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5529 #else
5530 double ScpChGetProbeGain( LibTiePieHandle_t hDevice , uint16_t wCh );
5531 #endif
5532 
5556 #ifdef LIBTIEPIE_DYNAMIC
5557 typedef double(*LibTiePieScpChSetProbeGain_t)( LibTiePieHandle_t hDevice , uint16_t wCh , double dProbeGain );
5558 #else
5559 double ScpChSetProbeGain( LibTiePieHandle_t hDevice , uint16_t wCh , double dProbeGain );
5560 #endif
5561 
5584 #ifdef LIBTIEPIE_DYNAMIC
5585 typedef double(*LibTiePieScpChGetProbeOffset_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5586 #else
5587 double ScpChGetProbeOffset( LibTiePieHandle_t hDevice , uint16_t wCh );
5588 #endif
5589 
5614 #ifdef LIBTIEPIE_DYNAMIC
5615 typedef double(*LibTiePieScpChSetProbeOffset_t)( LibTiePieHandle_t hDevice , uint16_t wCh , double dProbeOffset );
5616 #else
5617 double ScpChSetProbeOffset( LibTiePieHandle_t hDevice , uint16_t wCh , double dProbeOffset );
5618 #endif
5619 
5641 // Workaround: Without this line Doxygen adds the documentation below to the group above.
5642 
5660 #ifdef LIBTIEPIE_DYNAMIC
5661 typedef bool8_t(*LibTiePieScpChGetAutoRanging_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5662 #else
5663 bool8_t ScpChGetAutoRanging( LibTiePieHandle_t hDevice , uint16_t wCh );
5664 #endif
5665 
5685 #ifdef LIBTIEPIE_DYNAMIC
5686 typedef bool8_t(*LibTiePieScpChSetAutoRanging_t)( LibTiePieHandle_t hDevice , uint16_t wCh , bool8_t bEnable );
5687 #else
5688 bool8_t ScpChSetAutoRanging( LibTiePieHandle_t hDevice , uint16_t wCh , bool8_t bEnable );
5689 #endif
5690 
5729 #ifdef LIBTIEPIE_DYNAMIC
5730 typedef uint32_t(*LibTiePieScpChGetRanges_t)( LibTiePieHandle_t hDevice , uint16_t wCh , double* pList , uint32_t dwLength );
5731 #else
5732 uint32_t ScpChGetRanges( LibTiePieHandle_t hDevice , uint16_t wCh , double* pList , uint32_t dwLength );
5733 #endif
5734 
5736 
5749 #ifdef LIBTIEPIE_DYNAMIC
5750 typedef uint32_t(*LibTiePieScpChGetRangesEx_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwCoupling , double* pList , uint32_t dwLength );
5751 #else
5752 uint32_t ScpChGetRangesEx( LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwCoupling , double* pList , uint32_t dwLength );
5753 #endif
5754 
5756 
5775 #ifdef LIBTIEPIE_DYNAMIC
5776 typedef double(*LibTiePieScpChGetRange_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5777 #else
5778 double ScpChGetRange( LibTiePieHandle_t hDevice , uint16_t wCh );
5779 #endif
5780 
5817 #ifdef LIBTIEPIE_DYNAMIC
5818 typedef double(*LibTiePieScpChSetRange_t)( LibTiePieHandle_t hDevice , uint16_t wCh , double dRange );
5819 #else
5820 double ScpChSetRange( LibTiePieHandle_t hDevice , uint16_t wCh , double dRange );
5821 #endif
5822 
5844 // Workaround: Without this line Doxygen adds the documentation below to the group above.
5845 
5862 #ifdef LIBTIEPIE_DYNAMIC
5863 typedef bool8_t(*LibTiePieScpChHasSafeGround_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5864 #else
5865 bool8_t ScpChHasSafeGround( LibTiePieHandle_t hDevice , uint16_t wCh );
5866 #endif
5867 
5887 #ifdef LIBTIEPIE_DYNAMIC
5888 typedef bool8_t(*LibTiePieScpChGetSafeGroundEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5889 #else
5890 bool8_t ScpChGetSafeGroundEnabled( LibTiePieHandle_t hDevice , uint16_t wCh );
5891 #endif
5892 
5919 #ifdef LIBTIEPIE_DYNAMIC
5920 typedef bool8_t(*LibTiePieScpChSetSafeGroundEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wCh , bool8_t bEnable );
5921 #else
5922 bool8_t ScpChSetSafeGroundEnabled( LibTiePieHandle_t hDevice , uint16_t wCh , bool8_t bEnable );
5923 #endif
5924 
5946 #ifdef LIBTIEPIE_DYNAMIC
5947 typedef double(*LibTiePieScpChGetSafeGroundThresholdMin_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5948 #else
5949 double ScpChGetSafeGroundThresholdMin( LibTiePieHandle_t hDevice , uint16_t wCh );
5950 #endif
5951 
5973 #ifdef LIBTIEPIE_DYNAMIC
5974 typedef double(*LibTiePieScpChGetSafeGroundThresholdMax_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
5975 #else
5976 double ScpChGetSafeGroundThresholdMax( LibTiePieHandle_t hDevice , uint16_t wCh );
5977 #endif
5978 
6000 #ifdef LIBTIEPIE_DYNAMIC
6001 typedef double(*LibTiePieScpChGetSafeGroundThreshold_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6002 #else
6003 double ScpChGetSafeGroundThreshold( LibTiePieHandle_t hDevice , uint16_t wCh );
6004 #endif
6005 
6034 #ifdef LIBTIEPIE_DYNAMIC
6035 typedef double(*LibTiePieScpChSetSafeGroundThreshold_t)( LibTiePieHandle_t hDevice , uint16_t wCh , double dThreshold );
6036 #else
6037 double ScpChSetSafeGroundThreshold( LibTiePieHandle_t hDevice , uint16_t wCh , double dThreshold );
6038 #endif
6039 
6041 
6051 #ifdef LIBTIEPIE_DYNAMIC
6052 typedef double(*LibTiePieScpChVerifySafeGroundThreshold_t)( LibTiePieHandle_t hDevice , uint16_t wCh , double dThreshold );
6053 #else
6054 double ScpChVerifySafeGroundThreshold( LibTiePieHandle_t hDevice , uint16_t wCh , double dThreshold );
6055 #endif
6056 
6058 
6074 // Workaround: Without this line Doxygen adds the documentation below to the group above.
6075 
6092 #ifdef LIBTIEPIE_DYNAMIC
6093 typedef bool8_t(*LibTiePieScpChHasTrigger_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6094 #else
6095 bool8_t ScpChHasTrigger( LibTiePieHandle_t hDevice , uint16_t wCh );
6096 #endif
6097 
6099 
6118 #ifdef LIBTIEPIE_DYNAMIC
6119 typedef bool8_t(*LibTiePieScpChHasTriggerEx_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode );
6120 #else
6121 bool8_t ScpChHasTriggerEx( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode );
6122 #endif
6123 
6125 
6142 #ifdef LIBTIEPIE_DYNAMIC
6143 typedef bool8_t(*LibTiePieScpChTrIsAvailable_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6144 #else
6145 bool8_t ScpChTrIsAvailable( LibTiePieHandle_t hDevice , uint16_t wCh );
6146 #endif
6147 
6149 
6164 #ifdef LIBTIEPIE_DYNAMIC
6165 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 );
6166 #else
6167 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 );
6168 #endif
6169 
6171 
6184 #ifdef LIBTIEPIE_DYNAMIC
6185 typedef bool8_t(*LibTiePieScpChTrIsTriggered_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6186 #else
6187 bool8_t ScpChTrIsTriggered( LibTiePieHandle_t hDevice , uint16_t wCh );
6188 #endif
6189 
6202 // Workaround: Without this line Doxygen adds the documentation below to the group above.
6203 
6222 #ifdef LIBTIEPIE_DYNAMIC
6223 typedef bool8_t(*LibTiePieScpChTrGetEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6224 #else
6225 bool8_t ScpChTrGetEnabled( LibTiePieHandle_t hDevice , uint16_t wCh );
6226 #endif
6227 
6249 #ifdef LIBTIEPIE_DYNAMIC
6250 typedef bool8_t(*LibTiePieScpChTrSetEnabled_t)( LibTiePieHandle_t hDevice , uint16_t wCh , bool8_t bEnable );
6251 #else
6252 bool8_t ScpChTrSetEnabled( LibTiePieHandle_t hDevice , uint16_t wCh , bool8_t bEnable );
6253 #endif
6254 
6268 // Workaround: Without this line Doxygen adds the documentation below to the group above.
6269 
6289 #ifdef LIBTIEPIE_DYNAMIC
6290 typedef uint64_t(*LibTiePieScpChTrGetKinds_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6291 #else
6292 uint64_t ScpChTrGetKinds( LibTiePieHandle_t hDevice , uint16_t wCh );
6293 #endif
6294 
6296 
6306 #ifdef LIBTIEPIE_DYNAMIC
6307 typedef uint64_t(*LibTiePieScpChTrGetKindsEx_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode );
6308 #else
6309 uint64_t ScpChTrGetKindsEx( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode );
6310 #endif
6311 
6313 
6333 #ifdef LIBTIEPIE_DYNAMIC
6334 typedef uint64_t(*LibTiePieScpChTrGetKind_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6335 #else
6336 uint64_t ScpChTrGetKind( LibTiePieHandle_t hDevice , uint16_t wCh );
6337 #endif
6338 
6361 #ifdef LIBTIEPIE_DYNAMIC
6362 typedef uint64_t(*LibTiePieScpChTrSetKind_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwTriggerKind );
6363 #else
6364 uint64_t ScpChTrSetKind( LibTiePieHandle_t hDevice , uint16_t wCh , uint64_t qwTriggerKind );
6365 #endif
6366 
6387 // Workaround: Without this line Doxygen adds the documentation below to the group above.
6388 
6406 #ifdef LIBTIEPIE_DYNAMIC
6407 typedef uint32_t(*LibTiePieScpChTrGetLevelModes_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6408 #else
6409 uint32_t ScpChTrGetLevelModes( LibTiePieHandle_t hDevice , uint16_t wCh );
6410 #endif
6411 
6429 #ifdef LIBTIEPIE_DYNAMIC
6430 typedef uint32_t(*LibTiePieScpChTrGetLevelMode_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6431 #else
6432 uint32_t ScpChTrGetLevelMode( LibTiePieHandle_t hDevice , uint16_t wCh );
6433 #endif
6434 
6454 #ifdef LIBTIEPIE_DYNAMIC
6455 typedef uint32_t(*LibTiePieScpChTrSetLevelMode_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwLevelMode );
6456 #else
6457 uint32_t ScpChTrSetLevelMode( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwLevelMode );
6458 #endif
6459 
6479 // Workaround: Without this line Doxygen adds the documentation below to the group above.
6480 
6501 #ifdef LIBTIEPIE_DYNAMIC
6502 typedef uint32_t(*LibTiePieScpChTrGetLevelCount_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6503 #else
6504 uint32_t ScpChTrGetLevelCount( LibTiePieHandle_t hDevice , uint16_t wCh );
6505 #endif
6506 
6528 #ifdef LIBTIEPIE_DYNAMIC
6529 typedef double(*LibTiePieScpChTrGetLevel_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex );
6530 #else
6531 double ScpChTrGetLevel( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex );
6532 #endif
6533 
6558 #ifdef LIBTIEPIE_DYNAMIC
6559 typedef double(*LibTiePieScpChTrSetLevel_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex , double dLevel );
6560 #else
6561 double ScpChTrSetLevel( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex , double dLevel );
6562 #endif
6563 
6581 // Workaround: Without this line Doxygen adds the documentation below to the group above.
6582 
6603 #ifdef LIBTIEPIE_DYNAMIC
6604 typedef uint32_t(*LibTiePieScpChTrGetHysteresisCount_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6605 #else
6606 uint32_t ScpChTrGetHysteresisCount( LibTiePieHandle_t hDevice , uint16_t wCh );
6607 #endif
6608 
6630 #ifdef LIBTIEPIE_DYNAMIC
6631 typedef double(*LibTiePieScpChTrGetHysteresis_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex );
6632 #else
6633 double ScpChTrGetHysteresis( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex );
6634 #endif
6635 
6659 #ifdef LIBTIEPIE_DYNAMIC
6660 typedef double(*LibTiePieScpChTrSetHysteresis_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex , double dHysteresis );
6661 #else
6662 double ScpChTrSetHysteresis( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex , double dHysteresis );
6663 #endif
6664 
6678 // Workaround: Without this line Doxygen adds the documentation below to the group above.
6679 
6700 #ifdef LIBTIEPIE_DYNAMIC
6701 typedef uint32_t(*LibTiePieScpChTrGetConditions_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6702 #else
6703 uint32_t ScpChTrGetConditions( LibTiePieHandle_t hDevice , uint16_t wCh );
6704 #endif
6705 
6707 
6718 #ifdef LIBTIEPIE_DYNAMIC
6719 typedef uint32_t(*LibTiePieScpChTrGetConditionsEx_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode , uint64_t qwTriggerKind );
6720 #else
6721 uint32_t ScpChTrGetConditionsEx( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwMeasureMode , uint64_t qwTriggerKind );
6722 #endif
6723 
6725 
6745 #ifdef LIBTIEPIE_DYNAMIC
6746 typedef uint32_t(*LibTiePieScpChTrGetCondition_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6747 #else
6748 uint32_t ScpChTrGetCondition( LibTiePieHandle_t hDevice , uint16_t wCh );
6749 #endif
6750 
6772 #ifdef LIBTIEPIE_DYNAMIC
6773 typedef uint32_t(*LibTiePieScpChTrSetCondition_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwCondition );
6774 #else
6775 uint32_t ScpChTrSetCondition( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwCondition );
6776 #endif
6777 
6793 // Workaround: Without this line Doxygen adds the documentation below to the group above.
6794 
6820 #ifdef LIBTIEPIE_DYNAMIC
6821 typedef uint32_t(*LibTiePieScpChTrGetTimeCount_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
6822 #else
6823 uint32_t ScpChTrGetTimeCount( LibTiePieHandle_t hDevice , uint16_t wCh );
6824 #endif
6825 
6851 #ifdef LIBTIEPIE_DYNAMIC
6852 typedef double(*LibTiePieScpChTrGetTime_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex );
6853 #else
6854 double ScpChTrGetTime( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex );
6855 #endif
6856 
6885 #ifdef LIBTIEPIE_DYNAMIC
6886 typedef double(*LibTiePieScpChTrSetTime_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex , double dTime );
6887 #else
6888 double ScpChTrSetTime( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex , double dTime );
6889 #endif
6890 
6892 
6907 #ifdef LIBTIEPIE_DYNAMIC
6908 typedef double(*LibTiePieScpChTrVerifyTime_t)( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex , double dTime );
6909 #else
6910 double ScpChTrVerifyTime( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex , double dTime );
6911 #endif
6912 
6932 #ifdef LIBTIEPIE_DYNAMIC
6933 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 dwCondition );
6934 #else
6935 double ScpChTrVerifyTimeEx2( LibTiePieHandle_t hDevice , uint16_t wCh , uint32_t dwIndex , double dTime , uint32_t dwMeasureMode , double dSampleFrequency , uint64_t qwTriggerKind , uint32_t dwCondition );
6936 #endif
6937 
6939 
6999 // Workaround: Without this line Doxygen adds the documentation below to the group above.
7000 
7061 #ifdef INCLUDED_BY_MATLAB
7062 #ifdef LIBTIEPIE_DYNAMIC
7063 typedef uint64_t(*LibTiePieScpGetData_t)( LibTiePieHandle_t hDevice , void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7064 #else
7065 uint64_t ScpGetData( LibTiePieHandle_t hDevice , void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7066 #endif
7067 #else
7068 #ifdef LIBTIEPIE_DYNAMIC
7069 typedef uint64_t(*LibTiePieScpGetData_t)( LibTiePieHandle_t hDevice , float** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7070 #else
7071 uint64_t ScpGetData( LibTiePieHandle_t hDevice , float** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7072 #endif
7073 #endif
7074 
7098 #ifdef LIBTIEPIE_DYNAMIC
7099 typedef uint64_t(*LibTiePieScpGetData1Ch_t)( LibTiePieHandle_t hDevice , float* pBufferCh1 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7100 #else
7101 uint64_t ScpGetData1Ch( LibTiePieHandle_t hDevice , float* pBufferCh1 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7102 #endif
7103 
7128 #ifdef LIBTIEPIE_DYNAMIC
7129 typedef uint64_t(*LibTiePieScpGetData2Ch_t)( LibTiePieHandle_t hDevice , float* pBufferCh1 , float* pBufferCh2 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7130 #else
7131 uint64_t ScpGetData2Ch( LibTiePieHandle_t hDevice , float* pBufferCh1 , float* pBufferCh2 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7132 #endif
7133 
7159 #ifdef LIBTIEPIE_DYNAMIC
7160 typedef uint64_t(*LibTiePieScpGetData3Ch_t)( LibTiePieHandle_t hDevice , float* pBufferCh1 , float* pBufferCh2 , float* pBufferCh3 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7161 #else
7162 uint64_t ScpGetData3Ch( LibTiePieHandle_t hDevice , float* pBufferCh1 , float* pBufferCh2 , float* pBufferCh3 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7163 #endif
7164 
7191 #ifdef LIBTIEPIE_DYNAMIC
7192 typedef uint64_t(*LibTiePieScpGetData4Ch_t)( LibTiePieHandle_t hDevice , float* pBufferCh1 , float* pBufferCh2 , float* pBufferCh3 , float* pBufferCh4 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7193 #else
7194 uint64_t ScpGetData4Ch( LibTiePieHandle_t hDevice , float* pBufferCh1 , float* pBufferCh2 , float* pBufferCh3 , float* pBufferCh4 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7195 #endif
7196 
7216 #ifdef LIBTIEPIE_DYNAMIC
7217 typedef uint64_t(*LibTiePieScpGetValidPreSampleCount_t)( LibTiePieHandle_t hDevice );
7218 #else
7219 uint64_t ScpGetValidPreSampleCount( LibTiePieHandle_t hDevice );
7220 #endif
7221 
7244 #ifdef LIBTIEPIE_DYNAMIC
7245 typedef void(*LibTiePieScpChGetDataValueRange_t)( LibTiePieHandle_t hDevice , uint16_t wCh , double* pMin , double* pMax );
7246 #else
7247 void ScpChGetDataValueRange( LibTiePieHandle_t hDevice , uint16_t wCh , double* pMin , double* pMax );
7248 #endif
7249 
7269 #ifdef LIBTIEPIE_DYNAMIC
7270 typedef double(*LibTiePieScpChGetDataValueMin_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
7271 #else
7272 double ScpChGetDataValueMin( LibTiePieHandle_t hDevice , uint16_t wCh );
7273 #endif
7274 
7294 #ifdef LIBTIEPIE_DYNAMIC
7295 typedef double(*LibTiePieScpChGetDataValueMax_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
7296 #else
7297 double ScpChGetDataValueMax( LibTiePieHandle_t hDevice , uint16_t wCh );
7298 #endif
7299 
7306 // Workaround: Without this line Doxygen adds the documentation below to the group above.
7307 
7320 #ifdef LIBTIEPIE_DYNAMIC
7321 typedef uint64_t(*LibTiePieScpGetDataRaw_t)( LibTiePieHandle_t hDevice , void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7322 #else
7323 uint64_t ScpGetDataRaw( LibTiePieHandle_t hDevice , void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7324 #endif
7325 
7336 #ifdef LIBTIEPIE_DYNAMIC
7337 typedef uint64_t(*LibTiePieScpGetDataRaw1Ch_t)( LibTiePieHandle_t hDevice , void* pBufferCh1 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7338 #else
7339 uint64_t ScpGetDataRaw1Ch( LibTiePieHandle_t hDevice , void* pBufferCh1 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7340 #endif
7341 
7353 #ifdef LIBTIEPIE_DYNAMIC
7354 typedef uint64_t(*LibTiePieScpGetDataRaw2Ch_t)( LibTiePieHandle_t hDevice , void* pBufferCh1 , void* pBufferCh2 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7355 #else
7356 uint64_t ScpGetDataRaw2Ch( LibTiePieHandle_t hDevice , void* pBufferCh1 , void* pBufferCh2 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7357 #endif
7358 
7371 #ifdef LIBTIEPIE_DYNAMIC
7372 typedef uint64_t(*LibTiePieScpGetDataRaw3Ch_t)( LibTiePieHandle_t hDevice , void* pBufferCh1 , void* pBufferCh2 , void* pBufferCh3 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7373 #else
7374 uint64_t ScpGetDataRaw3Ch( LibTiePieHandle_t hDevice , void* pBufferCh1 , void* pBufferCh2 , void* pBufferCh3 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7375 #endif
7376 
7390 #ifdef LIBTIEPIE_DYNAMIC
7391 typedef uint64_t(*LibTiePieScpGetDataRaw4Ch_t)( LibTiePieHandle_t hDevice , void* pBufferCh1 , void* pBufferCh2 , void* pBufferCh3 , void* pBufferCh4 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7392 #else
7393 uint64_t ScpGetDataRaw4Ch( LibTiePieHandle_t hDevice , void* pBufferCh1 , void* pBufferCh2 , void* pBufferCh3 , void* pBufferCh4 , uint64_t qwStartIndex , uint64_t qwSampleCount );
7394 #endif
7395 
7404 #ifdef LIBTIEPIE_DYNAMIC
7405 typedef uint32_t(*LibTiePieScpChGetDataRawType_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
7406 #else
7407 uint32_t ScpChGetDataRawType( LibTiePieHandle_t hDevice , uint16_t wCh );
7408 #endif
7409 
7423 #ifdef LIBTIEPIE_DYNAMIC
7424 typedef void(*LibTiePieScpChGetDataRawValueRange_t)( LibTiePieHandle_t hDevice , uint16_t wCh , int64_t* pMin , int64_t* pZero , int64_t* pMax );
7425 #else
7426 void ScpChGetDataRawValueRange( LibTiePieHandle_t hDevice , uint16_t wCh , int64_t* pMin , int64_t* pZero , int64_t* pMax );
7427 #endif
7428 
7440 #ifdef LIBTIEPIE_DYNAMIC
7441 typedef int64_t(*LibTiePieScpChGetDataRawValueMin_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
7442 #else
7443 int64_t ScpChGetDataRawValueMin( LibTiePieHandle_t hDevice , uint16_t wCh );
7444 #endif
7445 
7457 #ifdef LIBTIEPIE_DYNAMIC
7458 typedef int64_t(*LibTiePieScpChGetDataRawValueZero_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
7459 #else
7460 int64_t ScpChGetDataRawValueZero( LibTiePieHandle_t hDevice , uint16_t wCh );
7461 #endif
7462 
7474 #ifdef LIBTIEPIE_DYNAMIC
7475 typedef int64_t(*LibTiePieScpChGetDataRawValueMax_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
7476 #else
7477 int64_t ScpChGetDataRawValueMax( LibTiePieHandle_t hDevice , uint16_t wCh );
7478 #endif
7479 
7488 #ifdef LIBTIEPIE_DYNAMIC
7489 typedef bool8_t(*LibTiePieScpChIsRangeMaxReachable_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
7490 #else
7491 bool8_t ScpChIsRangeMaxReachable( LibTiePieHandle_t hDevice , uint16_t wCh );
7492 #endif
7493 
7500 // Workaround: Without this line Doxygen adds the documentation below to the group above.
7501 
7508 #ifdef LIBTIEPIE_DYNAMIC
7509 typedef bool8_t(*LibTiePieScpIsGetDataAsyncCompleted_t)( LibTiePieHandle_t hDevice );
7510 #else
7511 bool8_t ScpIsGetDataAsyncCompleted( LibTiePieHandle_t hDevice );
7512 #endif
7513 
7525 #ifdef LIBTIEPIE_DYNAMIC
7526 typedef bool8_t(*LibTiePieScpStartGetDataAsync_t)( LibTiePieHandle_t hDevice , float** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7527 #else
7528 bool8_t ScpStartGetDataAsync( LibTiePieHandle_t hDevice , float** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7529 #endif
7530 
7542 #ifdef LIBTIEPIE_DYNAMIC
7543 typedef bool8_t(*LibTiePieScpStartGetDataAsyncRaw_t)( LibTiePieHandle_t hDevice , void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7544 #else
7545 bool8_t ScpStartGetDataAsyncRaw( LibTiePieHandle_t hDevice , void** pBuffers , uint16_t wChannelCount , uint64_t qwStartIndex , uint64_t qwSampleCount );
7546 #endif
7547 
7555 #ifdef LIBTIEPIE_DYNAMIC
7556 typedef bool8_t(*LibTiePieScpCancelGetDataAsync_t)( LibTiePieHandle_t hDevice );
7557 #else
7558 bool8_t ScpCancelGetDataAsync( LibTiePieHandle_t hDevice );
7559 #endif
7560 
7579 // Workaround: Without this line Doxygen adds the documentation below to the group above.
7580 
7598 #ifdef LIBTIEPIE_DYNAMIC
7599 typedef void(*LibTiePieScpSetCallbackDataReady_t)( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
7600 #else
7601 void ScpSetCallbackDataReady( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
7602 #endif
7603 
7614 // Workaround: Without this line Doxygen adds the documentation below to the group above.
7615 
7633 #ifdef LIBTIEPIE_DYNAMIC
7634 typedef void(*LibTiePieScpSetCallbackDataOverflow_t)( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
7635 #else
7636 void ScpSetCallbackDataOverflow( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
7637 #endif
7638 
7646 // Workaround: Without this line Doxygen adds the documentation below to the group above.
7647 
7665 #ifdef LIBTIEPIE_DYNAMIC
7666 typedef void(*LibTiePieScpSetCallbackConnectionTestCompleted_t)( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
7667 #else
7668 void ScpSetCallbackConnectionTestCompleted( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
7669 #endif
7670 
7678 // Workaround: Without this line Doxygen adds the documentation below to the group above.
7679 
7696 #ifdef LIBTIEPIE_DYNAMIC
7697 typedef void(*LibTiePieScpSetCallbackTriggered_t)( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
7698 #else
7699 void ScpSetCallbackTriggered( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
7700 #endif
7701 
7706 #ifdef LIBTIEPIE_LINUX
7707 
7726 #ifdef LIBTIEPIE_DYNAMIC
7727 typedef void(*LibTiePieScpSetEventDataReady_t)( LibTiePieHandle_t hDevice , int fdEvent );
7728 #else
7729 void ScpSetEventDataReady( LibTiePieHandle_t hDevice , int fdEvent );
7730 #endif
7731 
7750 #ifdef LIBTIEPIE_DYNAMIC
7751 typedef void(*LibTiePieScpSetEventDataOverflow_t)( LibTiePieHandle_t hDevice , int fdEvent );
7752 #else
7753 void ScpSetEventDataOverflow( LibTiePieHandle_t hDevice , int fdEvent );
7754 #endif
7755 
7774 #ifdef LIBTIEPIE_DYNAMIC
7775 typedef void(*LibTiePieScpSetEventConnectionTestCompleted_t)( LibTiePieHandle_t hDevice , int fdEvent );
7776 #else
7777 void ScpSetEventConnectionTestCompleted( LibTiePieHandle_t hDevice , int fdEvent );
7778 #endif
7779 
7797 #ifdef LIBTIEPIE_DYNAMIC
7798 typedef void(*LibTiePieScpSetEventTriggered_t)( LibTiePieHandle_t hDevice , int fdEvent );
7799 #else
7800 void ScpSetEventTriggered( LibTiePieHandle_t hDevice , int fdEvent );
7801 #endif
7802 
7803 #endif
7804 
7805 #ifdef LIBTIEPIE_WINDOWS
7806 
7825 #ifdef LIBTIEPIE_DYNAMIC
7826 typedef void(*LibTiePieScpSetEventDataReady_t)( LibTiePieHandle_t hDevice , HANDLE hEvent );
7827 #else
7828 void ScpSetEventDataReady( LibTiePieHandle_t hDevice , HANDLE hEvent );
7829 #endif
7830 
7849 #ifdef LIBTIEPIE_DYNAMIC
7850 typedef void(*LibTiePieScpSetEventDataOverflow_t)( LibTiePieHandle_t hDevice , HANDLE hEvent );
7851 #else
7852 void ScpSetEventDataOverflow( LibTiePieHandle_t hDevice , HANDLE hEvent );
7853 #endif
7854 
7873 #ifdef LIBTIEPIE_DYNAMIC
7874 typedef void(*LibTiePieScpSetEventConnectionTestCompleted_t)( LibTiePieHandle_t hDevice , HANDLE hEvent );
7875 #else
7876 void ScpSetEventConnectionTestCompleted( LibTiePieHandle_t hDevice , HANDLE hEvent );
7877 #endif
7878 
7896 #ifdef LIBTIEPIE_DYNAMIC
7897 typedef void(*LibTiePieScpSetEventTriggered_t)( LibTiePieHandle_t hDevice , HANDLE hEvent );
7898 #else
7899 void ScpSetEventTriggered( LibTiePieHandle_t hDevice , HANDLE hEvent );
7900 #endif
7901 
7922 #ifdef LIBTIEPIE_DYNAMIC
7923 typedef void(*LibTiePieScpSetMessageDataReady_t)( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7924 #else
7925 void ScpSetMessageDataReady( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7926 #endif
7927 
7948 #ifdef LIBTIEPIE_DYNAMIC
7949 typedef void(*LibTiePieScpSetMessageDataOverflow_t)( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7950 #else
7951 void ScpSetMessageDataOverflow( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7952 #endif
7953 
7974 #ifdef LIBTIEPIE_DYNAMIC
7975 typedef void(*LibTiePieScpSetMessageConnectionTestCompleted_t)( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7976 #else
7977 void ScpSetMessageConnectionTestCompleted( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
7978 #endif
7979 
7999 #ifdef LIBTIEPIE_DYNAMIC
8000 typedef void(*LibTiePieScpSetMessageTriggered_t)( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
8001 #else
8002 void ScpSetMessageTriggered( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
8003 #endif
8004 
8005 #endif
8006 
8018 // Workaround: Without this line Doxygen adds the documentation below to the group above.
8019 
8038 #ifdef LIBTIEPIE_DYNAMIC
8039 typedef bool8_t(*LibTiePieScpStart_t)( LibTiePieHandle_t hDevice );
8040 #else
8041 bool8_t ScpStart( LibTiePieHandle_t hDevice );
8042 #endif
8043 
8059 #ifdef LIBTIEPIE_DYNAMIC
8060 typedef bool8_t(*LibTiePieScpStop_t)( LibTiePieHandle_t hDevice );
8061 #else
8062 bool8_t ScpStop( LibTiePieHandle_t hDevice );
8063 #endif
8064 
8086 #ifdef LIBTIEPIE_DYNAMIC
8087 typedef bool8_t(*LibTiePieScpForceTrigger_t)( LibTiePieHandle_t hDevice );
8088 #else
8089 bool8_t ScpForceTrigger( LibTiePieHandle_t hDevice );
8090 #endif
8091 
8131 // Workaround: Without this line Doxygen adds the documentation below to the group above.
8132 
8149 #ifdef LIBTIEPIE_DYNAMIC
8150 typedef uint32_t(*LibTiePieScpGetMeasureModes_t)( LibTiePieHandle_t hDevice );
8151 #else
8152 uint32_t ScpGetMeasureModes( LibTiePieHandle_t hDevice );
8153 #endif
8154 
8171 #ifdef LIBTIEPIE_DYNAMIC
8172 typedef uint32_t(*LibTiePieScpGetMeasureMode_t)( LibTiePieHandle_t hDevice );
8173 #else
8174 uint32_t ScpGetMeasureMode( LibTiePieHandle_t hDevice );
8175 #endif
8176 
8196 #ifdef LIBTIEPIE_DYNAMIC
8197 typedef uint32_t(*LibTiePieScpSetMeasureMode_t)( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
8198 #else
8199 uint32_t ScpSetMeasureMode( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
8200 #endif
8201 
8212 // Workaround: Without this line Doxygen adds the documentation below to the group above.
8213 
8228 #ifdef LIBTIEPIE_DYNAMIC
8229 typedef bool8_t(*LibTiePieScpIsRunning_t)( LibTiePieHandle_t hDevice );
8230 #else
8231 bool8_t ScpIsRunning( LibTiePieHandle_t hDevice );
8232 #endif
8233 
8254 #ifdef LIBTIEPIE_DYNAMIC
8255 typedef bool8_t(*LibTiePieScpIsTriggered_t)( LibTiePieHandle_t hDevice );
8256 #else
8257 bool8_t ScpIsTriggered( LibTiePieHandle_t hDevice );
8258 #endif
8259 
8278 #ifdef LIBTIEPIE_DYNAMIC
8279 typedef bool8_t(*LibTiePieScpIsTimeOutTriggered_t)( LibTiePieHandle_t hDevice );
8280 #else
8281 bool8_t ScpIsTimeOutTriggered( LibTiePieHandle_t hDevice );
8282 #endif
8283 
8302 #ifdef LIBTIEPIE_DYNAMIC
8303 typedef bool8_t(*LibTiePieScpIsForceTriggered_t)( LibTiePieHandle_t hDevice );
8304 #else
8305 bool8_t ScpIsForceTriggered( LibTiePieHandle_t hDevice );
8306 #endif
8307 
8331 #ifdef LIBTIEPIE_DYNAMIC
8332 typedef bool8_t(*LibTiePieScpIsDataReady_t)( LibTiePieHandle_t hDevice );
8333 #else
8334 bool8_t ScpIsDataReady( LibTiePieHandle_t hDevice );
8335 #endif
8336 
8357 #ifdef LIBTIEPIE_DYNAMIC
8358 typedef bool8_t(*LibTiePieScpIsDataOverflow_t)( LibTiePieHandle_t hDevice );
8359 #else
8360 bool8_t ScpIsDataOverflow( LibTiePieHandle_t hDevice );
8361 #endif
8362 
8404 // Workaround: Without this line Doxygen adds the documentation below to the group above.
8405 
8422 #ifdef LIBTIEPIE_DYNAMIC
8423 typedef uint32_t(*LibTiePieScpGetAutoResolutionModes_t)( LibTiePieHandle_t hDevice );
8424 #else
8425 uint32_t ScpGetAutoResolutionModes( LibTiePieHandle_t hDevice );
8426 #endif
8427 
8445 #ifdef LIBTIEPIE_DYNAMIC
8446 typedef uint32_t(*LibTiePieScpGetAutoResolutionMode_t)( LibTiePieHandle_t hDevice );
8447 #else
8448 uint32_t ScpGetAutoResolutionMode( LibTiePieHandle_t hDevice );
8449 #endif
8450 
8470 #ifdef LIBTIEPIE_DYNAMIC
8471 typedef uint32_t(*LibTiePieScpSetAutoResolutionMode_t)( LibTiePieHandle_t hDevice , uint32_t dwAutoResolutionMode );
8472 #else
8473 uint32_t ScpSetAutoResolutionMode( LibTiePieHandle_t hDevice , uint32_t dwAutoResolutionMode );
8474 #endif
8475 
8511 #ifdef LIBTIEPIE_DYNAMIC
8512 typedef uint32_t(*LibTiePieScpGetResolutions_t)( LibTiePieHandle_t hDevice , uint8_t* pList , uint32_t dwLength );
8513 #else
8514 uint32_t ScpGetResolutions( LibTiePieHandle_t hDevice , uint8_t* pList , uint32_t dwLength );
8515 #endif
8516 
8533 #ifdef LIBTIEPIE_DYNAMIC
8534 typedef uint8_t(*LibTiePieScpGetResolution_t)( LibTiePieHandle_t hDevice );
8535 #else
8536 uint8_t ScpGetResolution( LibTiePieHandle_t hDevice );
8537 #endif
8538 
8559 #ifdef LIBTIEPIE_DYNAMIC
8560 typedef uint8_t(*LibTiePieScpSetResolution_t)( LibTiePieHandle_t hDevice , uint8_t byResolution );
8561 #else
8562 uint8_t ScpSetResolution( LibTiePieHandle_t hDevice , uint8_t byResolution );
8563 #endif
8564 
8579 #ifdef LIBTIEPIE_DYNAMIC
8580 typedef bool8_t(*LibTiePieScpIsResolutionEnhanced_t)( LibTiePieHandle_t hDevice );
8581 #else
8582 bool8_t ScpIsResolutionEnhanced( LibTiePieHandle_t hDevice );
8583 #endif
8584 
8586 
8595 #ifdef LIBTIEPIE_DYNAMIC
8596 typedef bool8_t(*LibTiePieScpIsResolutionEnhancedEx_t)( LibTiePieHandle_t hDevice , uint8_t byResolution );
8597 #else
8598 bool8_t ScpIsResolutionEnhancedEx( LibTiePieHandle_t hDevice , uint8_t byResolution );
8599 #endif
8600 
8602 
8625 // Workaround: Without this line Doxygen adds the documentation below to the group above.
8626 
8646 #ifdef LIBTIEPIE_DYNAMIC
8647 typedef uint32_t(*LibTiePieScpGetClockSources_t)( LibTiePieHandle_t hDevice );
8648 #else
8649 uint32_t ScpGetClockSources( LibTiePieHandle_t hDevice );
8650 #endif
8651 
8671 #ifdef LIBTIEPIE_DYNAMIC
8672 typedef uint32_t(*LibTiePieScpGetClockSource_t)( LibTiePieHandle_t hDevice );
8673 #else
8674 uint32_t ScpGetClockSource( LibTiePieHandle_t hDevice );
8675 #endif
8676 
8698 #ifdef LIBTIEPIE_DYNAMIC
8699 typedef uint32_t(*LibTiePieScpSetClockSource_t)( LibTiePieHandle_t hDevice , uint32_t dwClockSource );
8700 #else
8701 uint32_t ScpSetClockSource( LibTiePieHandle_t hDevice , uint32_t dwClockSource );
8702 #endif
8703 
8742 #ifdef LIBTIEPIE_DYNAMIC
8743 typedef uint32_t(*LibTiePieScpGetClockSourceFrequencies_t)( LibTiePieHandle_t hDevice , double* pList , uint32_t dwLength );
8744 #else
8745 uint32_t ScpGetClockSourceFrequencies( LibTiePieHandle_t hDevice , double* pList , uint32_t dwLength );
8746 #endif
8747 
8749 
8778 #ifdef LIBTIEPIE_DYNAMIC
8779 typedef uint32_t(*LibTiePieScpGetClockSourceFrequenciesEx_t)( LibTiePieHandle_t hDevice , uint32_t dwClockSource , double* pList , uint32_t dwLength );
8780 #else
8781 uint32_t ScpGetClockSourceFrequenciesEx( LibTiePieHandle_t hDevice , uint32_t dwClockSource , double* pList , uint32_t dwLength );
8782 #endif
8783 
8785 
8808 #ifdef LIBTIEPIE_DYNAMIC
8809 typedef double(*LibTiePieScpGetClockSourceFrequency_t)( LibTiePieHandle_t hDevice );
8810 #else
8811 double ScpGetClockSourceFrequency( LibTiePieHandle_t hDevice );
8812 #endif
8813 
8840 #ifdef LIBTIEPIE_DYNAMIC
8841 typedef double(*LibTiePieScpSetClockSourceFrequency_t)( LibTiePieHandle_t hDevice , double dClockSourceFrequency );
8842 #else
8843 double ScpSetClockSourceFrequency( LibTiePieHandle_t hDevice , double dClockSourceFrequency );
8844 #endif
8845 
8864 // Workaround: Without this line Doxygen adds the documentation below to the group above.
8865 
8885 #ifdef LIBTIEPIE_DYNAMIC
8886 typedef uint32_t(*LibTiePieScpGetClockOutputs_t)( LibTiePieHandle_t hDevice );
8887 #else
8888 uint32_t ScpGetClockOutputs( LibTiePieHandle_t hDevice );
8889 #endif
8890 
8910 #ifdef LIBTIEPIE_DYNAMIC
8911 typedef uint32_t(*LibTiePieScpGetClockOutput_t)( LibTiePieHandle_t hDevice );
8912 #else
8913 uint32_t ScpGetClockOutput( LibTiePieHandle_t hDevice );
8914 #endif
8915 
8937 #ifdef LIBTIEPIE_DYNAMIC
8938 typedef uint32_t(*LibTiePieScpSetClockOutput_t)( LibTiePieHandle_t hDevice , uint32_t dwClockOutput );
8939 #else
8940 uint32_t ScpSetClockOutput( LibTiePieHandle_t hDevice , uint32_t dwClockOutput );
8941 #endif
8942 
8981 #ifdef LIBTIEPIE_DYNAMIC
8982 typedef uint32_t(*LibTiePieScpGetClockOutputFrequencies_t)( LibTiePieHandle_t hDevice , double* pList , uint32_t dwLength );
8983 #else
8984 uint32_t ScpGetClockOutputFrequencies( LibTiePieHandle_t hDevice , double* pList , uint32_t dwLength );
8985 #endif
8986 
8988 
9017 #ifdef LIBTIEPIE_DYNAMIC
9018 typedef uint32_t(*LibTiePieScpGetClockOutputFrequenciesEx_t)( LibTiePieHandle_t hDevice , uint32_t dwClockOutput , double* pList , uint32_t dwLength );
9019 #else
9020 uint32_t ScpGetClockOutputFrequenciesEx( LibTiePieHandle_t hDevice , uint32_t dwClockOutput , double* pList , uint32_t dwLength );
9021 #endif
9022 
9024 
9047 #ifdef LIBTIEPIE_DYNAMIC
9048 typedef double(*LibTiePieScpGetClockOutputFrequency_t)( LibTiePieHandle_t hDevice );
9049 #else
9050 double ScpGetClockOutputFrequency( LibTiePieHandle_t hDevice );
9051 #endif
9052 
9079 #ifdef LIBTIEPIE_DYNAMIC
9080 typedef double(*LibTiePieScpSetClockOutputFrequency_t)( LibTiePieHandle_t hDevice , double dClockOutputFrequency );
9081 #else
9082 double ScpSetClockOutputFrequency( LibTiePieHandle_t hDevice , double dClockOutputFrequency );
9083 #endif
9084 
9108 // Workaround: Without this line Doxygen adds the documentation below to the group above.
9109 
9126 #ifdef LIBTIEPIE_DYNAMIC
9127 typedef double(*LibTiePieScpGetSampleFrequencyMax_t)( LibTiePieHandle_t hDevice );
9128 #else
9129 double ScpGetSampleFrequencyMax( LibTiePieHandle_t hDevice );
9130 #endif
9131 
9148 #ifdef LIBTIEPIE_DYNAMIC
9149 typedef double(*LibTiePieScpGetSampleFrequency_t)( LibTiePieHandle_t hDevice );
9150 #else
9151 double ScpGetSampleFrequency( LibTiePieHandle_t hDevice );
9152 #endif
9153 
9176 #ifdef LIBTIEPIE_DYNAMIC
9177 typedef double(*LibTiePieScpSetSampleFrequency_t)( LibTiePieHandle_t hDevice , double dSampleFrequency );
9178 #else
9179 double ScpSetSampleFrequency( LibTiePieHandle_t hDevice , double dSampleFrequency );
9180 #endif
9181 
9183 
9197 #ifdef LIBTIEPIE_DYNAMIC
9198 typedef double(*LibTiePieScpVerifySampleFrequency_t)( LibTiePieHandle_t hDevice , double dSampleFrequency );
9199 #else
9200 double ScpVerifySampleFrequency( LibTiePieHandle_t hDevice , double dSampleFrequency );
9201 #endif
9202 
9220 #ifdef LIBTIEPIE_DYNAMIC
9221 typedef double(*LibTiePieScpVerifySampleFrequencyEx_t)( LibTiePieHandle_t hDevice , double dSampleFrequency , uint32_t dwMeasureMode , uint8_t byResolution , const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9222 #else
9223 double ScpVerifySampleFrequencyEx( LibTiePieHandle_t hDevice , double dSampleFrequency , uint32_t dwMeasureMode , uint8_t byResolution , const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9224 #endif
9225 
9244 #ifdef LIBTIEPIE_DYNAMIC
9245 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 );
9246 #else
9247 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 );
9248 #endif
9249 
9251 
9270 // Workaround: Without this line Doxygen adds the documentation below to the group above.
9271 
9288 #ifdef LIBTIEPIE_DYNAMIC
9289 typedef uint64_t(*LibTiePieScpGetRecordLengthMax_t)( LibTiePieHandle_t hDevice );
9290 #else
9291 uint64_t ScpGetRecordLengthMax( LibTiePieHandle_t hDevice );
9292 #endif
9293 
9295 
9310 #ifdef LIBTIEPIE_DYNAMIC
9311 typedef uint64_t(*LibTiePieScpGetRecordLengthMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode , uint8_t byResolution );
9312 #else
9313 uint64_t ScpGetRecordLengthMaxEx( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode , uint8_t byResolution );
9314 #endif
9315 
9317 
9334 #ifdef LIBTIEPIE_DYNAMIC
9335 typedef uint64_t(*LibTiePieScpGetRecordLength_t)( LibTiePieHandle_t hDevice );
9336 #else
9337 uint64_t ScpGetRecordLength( LibTiePieHandle_t hDevice );
9338 #endif
9339 
9361 #ifdef LIBTIEPIE_DYNAMIC
9362 typedef uint64_t(*LibTiePieScpSetRecordLength_t)( LibTiePieHandle_t hDevice , uint64_t qwRecordLength );
9363 #else
9364 uint64_t ScpSetRecordLength( LibTiePieHandle_t hDevice , uint64_t qwRecordLength );
9365 #endif
9366 
9368 
9382 #ifdef LIBTIEPIE_DYNAMIC
9383 typedef uint64_t(*LibTiePieScpVerifyRecordLength_t)( LibTiePieHandle_t hDevice , uint64_t qwRecordLength );
9384 #else
9385 uint64_t ScpVerifyRecordLength( LibTiePieHandle_t hDevice , uint64_t qwRecordLength );
9386 #endif
9387 
9405 #ifdef LIBTIEPIE_DYNAMIC
9406 typedef uint64_t(*LibTiePieScpVerifyRecordLengthEx_t)( LibTiePieHandle_t hDevice , uint64_t qwRecordLength , uint32_t dwMeasureMode , uint8_t byResolution , const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9407 #else
9408 uint64_t ScpVerifyRecordLengthEx( LibTiePieHandle_t hDevice , uint64_t qwRecordLength , uint32_t dwMeasureMode , uint8_t byResolution , const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9409 #endif
9410 
9412 
9436 // Workaround: Without this line Doxygen adds the documentation below to the group above.
9437 
9454 #ifdef LIBTIEPIE_DYNAMIC
9455 typedef double(*LibTiePieScpGetPreSampleRatio_t)( LibTiePieHandle_t hDevice );
9456 #else
9457 double ScpGetPreSampleRatio( LibTiePieHandle_t hDevice );
9458 #endif
9459 
9480 #ifdef LIBTIEPIE_DYNAMIC
9481 typedef double(*LibTiePieScpSetPreSampleRatio_t)( LibTiePieHandle_t hDevice , double dPreSampleRatio );
9482 #else
9483 double ScpSetPreSampleRatio( LibTiePieHandle_t hDevice , double dPreSampleRatio );
9484 #endif
9485 
9495 // Workaround: Without this line Doxygen adds the documentation below to the group above.
9496 
9514 #ifdef LIBTIEPIE_DYNAMIC
9515 typedef uint32_t(*LibTiePieScpGetSegmentCountMax_t)( LibTiePieHandle_t hDevice );
9516 #else
9517 uint32_t ScpGetSegmentCountMax( LibTiePieHandle_t hDevice );
9518 #endif
9519 
9521 
9535 #ifdef LIBTIEPIE_DYNAMIC
9536 typedef uint32_t(*LibTiePieScpGetSegmentCountMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9537 #else
9538 uint32_t ScpGetSegmentCountMaxEx( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9539 #endif
9540 
9542 
9561 #ifdef LIBTIEPIE_DYNAMIC
9562 typedef uint32_t(*LibTiePieScpGetSegmentCount_t)( LibTiePieHandle_t hDevice );
9563 #else
9564 uint32_t ScpGetSegmentCount( LibTiePieHandle_t hDevice );
9565 #endif
9566 
9588 #ifdef LIBTIEPIE_DYNAMIC
9589 typedef uint32_t(*LibTiePieScpSetSegmentCount_t)( LibTiePieHandle_t hDevice , uint32_t dwSegmentCount );
9590 #else
9591 uint32_t ScpSetSegmentCount( LibTiePieHandle_t hDevice , uint32_t dwSegmentCount );
9592 #endif
9593 
9595 
9609 #ifdef LIBTIEPIE_DYNAMIC
9610 typedef uint32_t(*LibTiePieScpVerifySegmentCount_t)( LibTiePieHandle_t hDevice , uint32_t dwSegmentCount );
9611 #else
9612 uint32_t ScpVerifySegmentCount( LibTiePieHandle_t hDevice , uint32_t dwSegmentCount );
9613 #endif
9614 
9632 #ifdef LIBTIEPIE_DYNAMIC
9633 typedef uint32_t(*LibTiePieScpVerifySegmentCountEx2_t)( LibTiePieHandle_t hDevice , uint32_t dwSegmentCount , uint32_t dwMeasureMode , uint64_t qwRecordLength , const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9634 #else
9635 uint32_t ScpVerifySegmentCountEx2( LibTiePieHandle_t hDevice , uint32_t dwSegmentCount , uint32_t dwMeasureMode , uint64_t qwRecordLength , const bool8_t* pChannelEnabled , uint16_t wChannelCount );
9636 #endif
9637 
9639 
9650 // Workaround: Without this line Doxygen adds the documentation below to the group above.
9651 
9666 #ifdef LIBTIEPIE_DYNAMIC
9667 typedef bool8_t(*LibTiePieScpHasTrigger_t)( LibTiePieHandle_t hDevice );
9668 #else
9669 bool8_t ScpHasTrigger( LibTiePieHandle_t hDevice );
9670 #endif
9671 
9673 
9691 #ifdef LIBTIEPIE_DYNAMIC
9692 typedef bool8_t(*LibTiePieScpHasTriggerEx_t)( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9693 #else
9694 bool8_t ScpHasTriggerEx( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9695 #endif
9696 
9698 
9723 // Workaround: Without this line Doxygen adds the documentation below to the group above.
9724 
9741 #ifdef LIBTIEPIE_DYNAMIC
9742 typedef double(*LibTiePieScpGetTriggerTimeOut_t)( LibTiePieHandle_t hDevice );
9743 #else
9744 double ScpGetTriggerTimeOut( LibTiePieHandle_t hDevice );
9745 #endif
9746 
9766 #ifdef LIBTIEPIE_DYNAMIC
9767 typedef double(*LibTiePieScpSetTriggerTimeOut_t)( LibTiePieHandle_t hDevice , double dTimeOut );
9768 #else
9769 double ScpSetTriggerTimeOut( LibTiePieHandle_t hDevice , double dTimeOut );
9770 #endif
9771 
9773 
9785 #ifdef LIBTIEPIE_DYNAMIC
9786 typedef double(*LibTiePieScpVerifyTriggerTimeOut_t)( LibTiePieHandle_t hDevice , double dTimeOut );
9787 #else
9788 double ScpVerifyTriggerTimeOut( LibTiePieHandle_t hDevice , double dTimeOut );
9789 #endif
9790 
9804 #ifdef LIBTIEPIE_DYNAMIC
9805 typedef double(*LibTiePieScpVerifyTriggerTimeOutEx_t)( LibTiePieHandle_t hDevice , double dTimeOut , uint32_t dwMeasureMode , double dSampleFrequency );
9806 #else
9807 double ScpVerifyTriggerTimeOutEx( LibTiePieHandle_t hDevice , double dTimeOut , uint32_t dwMeasureMode , double dSampleFrequency );
9808 #endif
9809 
9811 
9827 // Workaround: Without this line Doxygen adds the documentation below to the group above.
9828 
9843 #ifdef LIBTIEPIE_DYNAMIC
9844 typedef bool8_t(*LibTiePieScpHasTriggerDelay_t)( LibTiePieHandle_t hDevice );
9845 #else
9846 bool8_t ScpHasTriggerDelay( LibTiePieHandle_t hDevice );
9847 #endif
9848 
9850 
9868 #ifdef LIBTIEPIE_DYNAMIC
9869 typedef bool8_t(*LibTiePieScpHasTriggerDelayEx_t)( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9870 #else
9871 bool8_t ScpHasTriggerDelayEx( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
9872 #endif
9873 
9875 
9894 #ifdef LIBTIEPIE_DYNAMIC
9895 typedef double(*LibTiePieScpGetTriggerDelayMax_t)( LibTiePieHandle_t hDevice );
9896 #else
9897 double ScpGetTriggerDelayMax( LibTiePieHandle_t hDevice );
9898 #endif
9899 
9901 
9926 #ifdef LIBTIEPIE_DYNAMIC
9927 typedef double(*LibTiePieScpGetTriggerDelayMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode , double dSampleFrequency );
9928 #else
9929 double ScpGetTriggerDelayMaxEx( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode , double dSampleFrequency );
9930 #endif
9931 
9933 
9952 #ifdef LIBTIEPIE_DYNAMIC
9953 typedef double(*LibTiePieScpGetTriggerDelay_t)( LibTiePieHandle_t hDevice );
9954 #else
9955 double ScpGetTriggerDelay( LibTiePieHandle_t hDevice );
9956 #endif
9957 
9979 #ifdef LIBTIEPIE_DYNAMIC
9980 typedef double(*LibTiePieScpSetTriggerDelay_t)( LibTiePieHandle_t hDevice , double dDelay );
9981 #else
9982 double ScpSetTriggerDelay( LibTiePieHandle_t hDevice , double dDelay );
9983 #endif
9984 
9986 
10001 #ifdef LIBTIEPIE_DYNAMIC
10002 typedef double(*LibTiePieScpVerifyTriggerDelay_t)( LibTiePieHandle_t hDevice , double dDelay );
10003 #else
10004 double ScpVerifyTriggerDelay( LibTiePieHandle_t hDevice , double dDelay );
10005 #endif
10006 
10023 #ifdef LIBTIEPIE_DYNAMIC
10024 typedef double(*LibTiePieScpVerifyTriggerDelayEx_t)( LibTiePieHandle_t hDevice , double dDelay , uint32_t dwMeasureMode , double dSampleFrequency );
10025 #else
10026 double ScpVerifyTriggerDelayEx( LibTiePieHandle_t hDevice , double dDelay , uint32_t dwMeasureMode , double dSampleFrequency );
10027 #endif
10028 
10030 
10050 // Workaround: Without this line Doxygen adds the documentation below to the group above.
10051 
10066 #ifdef LIBTIEPIE_DYNAMIC
10067 typedef bool8_t(*LibTiePieScpHasTriggerHoldOff_t)( LibTiePieHandle_t hDevice );
10068 #else
10069 bool8_t ScpHasTriggerHoldOff( LibTiePieHandle_t hDevice );
10070 #endif
10071 
10073 
10095 #ifdef LIBTIEPIE_DYNAMIC
10096 typedef bool8_t(*LibTiePieScpHasTriggerHoldOffEx_t)( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
10097 #else
10098 bool8_t ScpHasTriggerHoldOffEx( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
10099 #endif
10100 
10102 
10121 #ifdef LIBTIEPIE_DYNAMIC
10122 typedef uint64_t(*LibTiePieScpGetTriggerHoldOffCountMax_t)( LibTiePieHandle_t hDevice );
10123 #else
10124 uint64_t ScpGetTriggerHoldOffCountMax( LibTiePieHandle_t hDevice );
10125 #endif
10126 
10128 
10142 #ifdef LIBTIEPIE_DYNAMIC
10143 typedef uint64_t(*LibTiePieScpGetTriggerHoldOffCountMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
10144 #else
10145 uint64_t ScpGetTriggerHoldOffCountMaxEx( LibTiePieHandle_t hDevice , uint32_t dwMeasureMode );
10146 #endif
10147 
10149 
10168 #ifdef LIBTIEPIE_DYNAMIC
10169 typedef uint64_t(*LibTiePieScpGetTriggerHoldOffCount_t)( LibTiePieHandle_t hDevice );
10170 #else
10171 uint64_t ScpGetTriggerHoldOffCount( LibTiePieHandle_t hDevice );
10172 #endif
10173 
10194 #ifdef LIBTIEPIE_DYNAMIC
10195 typedef uint64_t(*LibTiePieScpSetTriggerHoldOffCount_t)( LibTiePieHandle_t hDevice , uint64_t qwTriggerHoldOffCount );
10196 #else
10197 uint64_t ScpSetTriggerHoldOffCount( LibTiePieHandle_t hDevice , uint64_t qwTriggerHoldOffCount );
10198 #endif
10199 
10219 // Workaround: Without this line Doxygen adds the documentation below to the group above.
10220 
10236 #ifdef LIBTIEPIE_DYNAMIC
10237 typedef bool8_t(*LibTiePieScpHasConnectionTest_t)( LibTiePieHandle_t hDevice );
10238 #else
10239 bool8_t ScpHasConnectionTest( LibTiePieHandle_t hDevice );
10240 #endif
10241 
10259 #ifdef LIBTIEPIE_DYNAMIC
10260 typedef bool8_t(*LibTiePieScpChHasConnectionTest_t)( LibTiePieHandle_t hDevice , uint16_t wCh );
10261 #else
10262 bool8_t ScpChHasConnectionTest( LibTiePieHandle_t hDevice , uint16_t wCh );
10263 #endif
10264 
10285 #ifdef LIBTIEPIE_DYNAMIC
10286 typedef bool8_t(*LibTiePieScpStartConnectionTest_t)( LibTiePieHandle_t hDevice );
10287 #else
10288 bool8_t ScpStartConnectionTest( LibTiePieHandle_t hDevice );
10289 #endif
10290 
10292 
10321 #ifdef LIBTIEPIE_DYNAMIC
10322 typedef bool8_t(*LibTiePieScpStartConnectionTestEx_t)( LibTiePieHandle_t hDevice , const bool8_t* pChannelEnabled , uint16_t wChannelCount );
10323 #else
10324 bool8_t ScpStartConnectionTestEx( LibTiePieHandle_t hDevice , const bool8_t* pChannelEnabled , uint16_t wChannelCount );
10325 #endif
10326 
10328 
10349 #ifdef LIBTIEPIE_DYNAMIC
10350 typedef bool8_t(*LibTiePieScpIsConnectionTestCompleted_t)( LibTiePieHandle_t hDevice );
10351 #else
10352 bool8_t ScpIsConnectionTestCompleted( LibTiePieHandle_t hDevice );
10353 #endif
10354 
10413 #ifdef LIBTIEPIE_DYNAMIC
10414 typedef uint16_t(*LibTiePieScpGetConnectionTestData_t)( LibTiePieHandle_t hDevice , LibTiePieTriState_t* pBuffer , uint16_t wChannelCount );
10415 #else
10416 uint16_t ScpGetConnectionTestData( LibTiePieHandle_t hDevice , LibTiePieTriState_t* pBuffer , uint16_t wChannelCount );
10417 #endif
10418 
10437 // Workaround: Without this line Doxygen adds the documentation below to the group above.
10438 
10454 #ifdef LIBTIEPIE_DYNAMIC
10455 typedef uint32_t(*LibTiePieGenGetConnectorType_t)( LibTiePieHandle_t hDevice );
10456 #else
10457 uint32_t GenGetConnectorType( LibTiePieHandle_t hDevice );
10458 #endif
10459 
10474 #ifdef LIBTIEPIE_DYNAMIC
10475 typedef bool8_t(*LibTiePieGenIsDifferential_t)( LibTiePieHandle_t hDevice );
10476 #else
10477 bool8_t GenIsDifferential( LibTiePieHandle_t hDevice );
10478 #endif
10479 
10495 #ifdef LIBTIEPIE_DYNAMIC
10496 typedef double(*LibTiePieGenGetImpedance_t)( LibTiePieHandle_t hDevice );
10497 #else
10498 double GenGetImpedance( LibTiePieHandle_t hDevice );
10499 #endif
10500 
10516 #ifdef LIBTIEPIE_DYNAMIC
10517 typedef uint8_t(*LibTiePieGenGetResolution_t)( LibTiePieHandle_t hDevice );
10518 #else
10519 uint8_t GenGetResolution( LibTiePieHandle_t hDevice );
10520 #endif
10521 
10537 #ifdef LIBTIEPIE_DYNAMIC
10538 typedef double(*LibTiePieGenGetOutputValueMin_t)( LibTiePieHandle_t hDevice );
10539 #else
10540 double GenGetOutputValueMin( LibTiePieHandle_t hDevice );
10541 #endif
10542 
10558 #ifdef LIBTIEPIE_DYNAMIC
10559 typedef double(*LibTiePieGenGetOutputValueMax_t)( LibTiePieHandle_t hDevice );
10560 #else
10561 double GenGetOutputValueMax( LibTiePieHandle_t hDevice );
10562 #endif
10563 
10565 
10581 #ifdef LIBTIEPIE_DYNAMIC
10582 typedef void(*LibTiePieGenGetOutputValueMinMax_t)( LibTiePieHandle_t hDevice , double* pMin , double* pMax );
10583 #else
10584 void GenGetOutputValueMinMax( LibTiePieHandle_t hDevice , double* pMin , double* pMax );
10585 #endif
10586 
10588 
10609 // Workaround: Without this line Doxygen adds the documentation below to the group above.
10610 
10629 #ifdef LIBTIEPIE_DYNAMIC
10630 typedef bool8_t(*LibTiePieGenIsControllable_t)( LibTiePieHandle_t hDevice );
10631 #else
10632 bool8_t GenIsControllable( LibTiePieHandle_t hDevice );
10633 #endif
10634 
10642 #ifdef LIBTIEPIE_DYNAMIC
10643 typedef bool8_t(*LibTiePieGenIsRunning_t)( LibTiePieHandle_t hDevice );
10644 #else
10645 bool8_t GenIsRunning( LibTiePieHandle_t hDevice );
10646 #endif
10647 
10664 #ifdef LIBTIEPIE_DYNAMIC
10665 typedef uint32_t(*LibTiePieGenGetStatus_t)( LibTiePieHandle_t hDevice );
10666 #else
10667 uint32_t GenGetStatus( LibTiePieHandle_t hDevice );
10668 #endif
10669 
10685 #ifdef LIBTIEPIE_DYNAMIC
10686 typedef bool8_t(*LibTiePieGenGetOutputOn_t)( LibTiePieHandle_t hDevice );
10687 #else
10688 bool8_t GenGetOutputOn( LibTiePieHandle_t hDevice );
10689 #endif
10690 
10709 #ifdef LIBTIEPIE_DYNAMIC
10710 typedef bool8_t(*LibTiePieGenSetOutputOn_t)( LibTiePieHandle_t hDevice , bool8_t bOutputOn );
10711 #else
10712 bool8_t GenSetOutputOn( LibTiePieHandle_t hDevice , bool8_t bOutputOn );
10713 #endif
10714 
10731 #ifdef LIBTIEPIE_DYNAMIC
10732 typedef bool8_t(*LibTiePieGenHasOutputInvert_t)( LibTiePieHandle_t hDevice );
10733 #else
10734 bool8_t GenHasOutputInvert( LibTiePieHandle_t hDevice );
10735 #endif
10736 
10754 #ifdef LIBTIEPIE_DYNAMIC
10755 typedef bool8_t(*LibTiePieGenGetOutputInvert_t)( LibTiePieHandle_t hDevice );
10756 #else
10757 bool8_t GenGetOutputInvert( LibTiePieHandle_t hDevice );
10758 #endif
10759 
10780 #ifdef LIBTIEPIE_DYNAMIC
10781 typedef bool8_t(*LibTiePieGenSetOutputInvert_t)( LibTiePieHandle_t hDevice , bool8_t bInvert );
10782 #else
10783 bool8_t GenSetOutputInvert( LibTiePieHandle_t hDevice , bool8_t bInvert );
10784 #endif
10785 
10804 #ifdef LIBTIEPIE_DYNAMIC
10805 typedef bool8_t(*LibTiePieGenStart_t)( LibTiePieHandle_t hDevice );
10806 #else
10807 bool8_t GenStart( LibTiePieHandle_t hDevice );
10808 #endif
10809 
10827 #ifdef LIBTIEPIE_DYNAMIC
10828 typedef bool8_t(*LibTiePieGenStop_t)( LibTiePieHandle_t hDevice );
10829 #else
10830 bool8_t GenStop( LibTiePieHandle_t hDevice );
10831 #endif
10832 
10863 // Workaround: Without this line Doxygen adds the documentation below to the group above.
10864 
10881 #ifdef LIBTIEPIE_DYNAMIC
10882 typedef uint32_t(*LibTiePieGenGetSignalTypes_t)( LibTiePieHandle_t hDevice );
10883 #else
10884 uint32_t GenGetSignalTypes( LibTiePieHandle_t hDevice );
10885 #endif
10886 
10903 #ifdef LIBTIEPIE_DYNAMIC
10904 typedef uint32_t(*LibTiePieGenGetSignalType_t)( LibTiePieHandle_t hDevice );
10905 #else
10906 uint32_t GenGetSignalType( LibTiePieHandle_t hDevice );
10907 #endif
10908 
10931 #ifdef LIBTIEPIE_DYNAMIC
10932 typedef uint32_t(*LibTiePieGenSetSignalType_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
10933 #else
10934 uint32_t GenSetSignalType( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
10935 #endif
10936 
10959 // Workaround: Without this line Doxygen adds the documentation below to the group above.
10960 
10979 #ifdef LIBTIEPIE_DYNAMIC
10980 typedef bool8_t(*LibTiePieGenHasAmplitude_t)( LibTiePieHandle_t hDevice );
10981 #else
10982 bool8_t GenHasAmplitude( LibTiePieHandle_t hDevice );
10983 #endif
10984 
10986 
11003 #ifdef LIBTIEPIE_DYNAMIC
11004 typedef bool8_t(*LibTiePieGenHasAmplitudeEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
11005 #else
11006 bool8_t GenHasAmplitudeEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
11007 #endif
11008 
11010 
11032 #ifdef LIBTIEPIE_DYNAMIC
11033 typedef double(*LibTiePieGenGetAmplitudeMin_t)( LibTiePieHandle_t hDevice );
11034 #else
11035 double GenGetAmplitudeMin( LibTiePieHandle_t hDevice );
11036 #endif
11037 
11059 #ifdef LIBTIEPIE_DYNAMIC
11060 typedef double(*LibTiePieGenGetAmplitudeMax_t)( LibTiePieHandle_t hDevice );
11061 #else
11062 double GenGetAmplitudeMax( LibTiePieHandle_t hDevice );
11063 #endif
11064 
11066 
11093 #ifdef LIBTIEPIE_DYNAMIC
11094 typedef void(*LibTiePieGenGetAmplitudeMinMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double* pMin , double* pMax );
11095 #else
11096 void GenGetAmplitudeMinMaxEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double* pMin , double* pMax );
11097 #endif
11098 
11100 
11119 #ifdef LIBTIEPIE_DYNAMIC
11120 typedef double(*LibTiePieGenGetAmplitude_t)( LibTiePieHandle_t hDevice );
11121 #else
11122 double GenGetAmplitude( LibTiePieHandle_t hDevice );
11123 #endif
11124 
11150 #ifdef LIBTIEPIE_DYNAMIC
11151 typedef double(*LibTiePieGenSetAmplitude_t)( LibTiePieHandle_t hDevice , double dAmplitude );
11152 #else
11153 double GenSetAmplitude( LibTiePieHandle_t hDevice , double dAmplitude );
11154 #endif
11155 
11157 
11184 #ifdef LIBTIEPIE_DYNAMIC
11185 typedef double(*LibTiePieGenVerifyAmplitude_t)( LibTiePieHandle_t hDevice , double dAmplitude );
11186 #else
11187 double GenVerifyAmplitude( LibTiePieHandle_t hDevice , double dAmplitude );
11188 #endif
11189 
11218 #ifdef LIBTIEPIE_DYNAMIC
11219 typedef double(*LibTiePieGenVerifyAmplitudeEx_t)( LibTiePieHandle_t hDevice , double dAmplitude , uint32_t dwSignalType , uint32_t dwAmplitudeRangeIndex , double dOffset );
11220 #else
11221 double GenVerifyAmplitudeEx( LibTiePieHandle_t hDevice , double dAmplitude , uint32_t dwSignalType , uint32_t dwAmplitudeRangeIndex , double dOffset );
11222 #endif
11223 
11225 
11239 // Workaround: Without this line Doxygen adds the documentation below to the group above.
11240 
11276 #ifdef LIBTIEPIE_DYNAMIC
11277 typedef uint32_t(*LibTiePieGenGetAmplitudeRanges_t)( LibTiePieHandle_t hDevice , double* pList , uint32_t dwLength );
11278 #else
11279 uint32_t GenGetAmplitudeRanges( LibTiePieHandle_t hDevice , double* pList , uint32_t dwLength );
11280 #endif
11281 
11301 #ifdef LIBTIEPIE_DYNAMIC
11302 typedef double(*LibTiePieGenGetAmplitudeRange_t)( LibTiePieHandle_t hDevice );
11303 #else
11304 double GenGetAmplitudeRange( LibTiePieHandle_t hDevice );
11305 #endif
11306 
11343 #ifdef LIBTIEPIE_DYNAMIC
11344 typedef double(*LibTiePieGenSetAmplitudeRange_t)( LibTiePieHandle_t hDevice , double dRange );
11345 #else
11346 double GenSetAmplitudeRange( LibTiePieHandle_t hDevice , double dRange );
11347 #endif
11348 
11368 #ifdef LIBTIEPIE_DYNAMIC
11369 typedef bool8_t(*LibTiePieGenGetAmplitudeAutoRanging_t)( LibTiePieHandle_t hDevice );
11370 #else
11371 bool8_t GenGetAmplitudeAutoRanging( LibTiePieHandle_t hDevice );
11372 #endif
11373 
11396 #ifdef LIBTIEPIE_DYNAMIC
11397 typedef bool8_t(*LibTiePieGenSetAmplitudeAutoRanging_t)( LibTiePieHandle_t hDevice , bool8_t bEnable );
11398 #else
11399 bool8_t GenSetAmplitudeAutoRanging( LibTiePieHandle_t hDevice , bool8_t bEnable );
11400 #endif
11401 
11422 // Workaround: Without this line Doxygen adds the documentation below to the group above.
11423 
11442 #ifdef LIBTIEPIE_DYNAMIC
11443 typedef bool8_t(*LibTiePieGenHasOffset_t)( LibTiePieHandle_t hDevice );
11444 #else
11445 bool8_t GenHasOffset( LibTiePieHandle_t hDevice );
11446 #endif
11447 
11449 
11466 #ifdef LIBTIEPIE_DYNAMIC
11467 typedef bool8_t(*LibTiePieGenHasOffsetEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
11468 #else
11469 bool8_t GenHasOffsetEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
11470 #endif
11471 
11473 
11492 #ifdef LIBTIEPIE_DYNAMIC
11493 typedef double(*LibTiePieGenGetOffsetMin_t)( LibTiePieHandle_t hDevice );
11494 #else
11495 double GenGetOffsetMin( LibTiePieHandle_t hDevice );
11496 #endif
11497 
11516 #ifdef LIBTIEPIE_DYNAMIC
11517 typedef double(*LibTiePieGenGetOffsetMax_t)( LibTiePieHandle_t hDevice );
11518 #else
11519 double GenGetOffsetMax( LibTiePieHandle_t hDevice );
11520 #endif
11521 
11523 
11548 #ifdef LIBTIEPIE_DYNAMIC
11549 typedef void(*LibTiePieGenGetOffsetMinMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double* pMin , double* pMax );
11550 #else
11551 void GenGetOffsetMinMaxEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double* pMin , double* pMax );
11552 #endif
11553 
11555 
11574 #ifdef LIBTIEPIE_DYNAMIC
11575 typedef double(*LibTiePieGenGetOffset_t)( LibTiePieHandle_t hDevice );
11576 #else
11577 double GenGetOffset( LibTiePieHandle_t hDevice );
11578 #endif
11579 
11602 #ifdef LIBTIEPIE_DYNAMIC
11603 typedef double(*LibTiePieGenSetOffset_t)( LibTiePieHandle_t hDevice , double dOffset );
11604 #else
11605 double GenSetOffset( LibTiePieHandle_t hDevice , double dOffset );
11606 #endif
11607 
11609 
11634 #ifdef LIBTIEPIE_DYNAMIC
11635 typedef double(*LibTiePieGenVerifyOffset_t)( LibTiePieHandle_t hDevice , double dOffset );
11636 #else
11637 double GenVerifyOffset( LibTiePieHandle_t hDevice , double dOffset );
11638 #endif
11639 
11667 #ifdef LIBTIEPIE_DYNAMIC
11668 typedef double(*LibTiePieGenVerifyOffsetEx_t)( LibTiePieHandle_t hDevice , double dOffset , uint32_t dwSignalType , double dAmplitude );
11669 #else
11670 double GenVerifyOffsetEx( LibTiePieHandle_t hDevice , double dOffset , uint32_t dwSignalType , double dAmplitude );
11671 #endif
11672 
11674 
11709 // Workaround: Without this line Doxygen adds the documentation below to the group above.
11710 
11728 #ifdef LIBTIEPIE_DYNAMIC
11729 typedef uint32_t(*LibTiePieGenGetFrequencyModes_t)( LibTiePieHandle_t hDevice );
11730 #else
11731 uint32_t GenGetFrequencyModes( LibTiePieHandle_t hDevice );
11732 #endif
11733 
11735 
11756 #ifdef LIBTIEPIE_DYNAMIC
11757 typedef uint32_t(*LibTiePieGenGetFrequencyModesEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
11758 #else
11759 uint32_t GenGetFrequencyModesEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
11760 #endif
11761 
11763 
11781 #ifdef LIBTIEPIE_DYNAMIC
11782 typedef uint32_t(*LibTiePieGenGetFrequencyMode_t)( LibTiePieHandle_t hDevice );
11783 #else
11784 uint32_t GenGetFrequencyMode( LibTiePieHandle_t hDevice );
11785 #endif
11786 
11811 #ifdef LIBTIEPIE_DYNAMIC
11812 typedef uint32_t(*LibTiePieGenSetFrequencyMode_t)( LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode );
11813 #else
11814 uint32_t GenSetFrequencyMode( LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode );
11815 #endif
11816 
11821 // Workaround: Without this line Doxygen adds the documentation below to the group above.
11822 
11841 #ifdef LIBTIEPIE_DYNAMIC
11842 typedef bool8_t(*LibTiePieGenHasFrequency_t)( LibTiePieHandle_t hDevice );
11843 #else
11844 bool8_t GenHasFrequency( LibTiePieHandle_t hDevice );
11845 #endif
11846 
11848 
11866 #ifdef LIBTIEPIE_DYNAMIC
11867 typedef bool8_t(*LibTiePieGenHasFrequencyEx_t)( LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , uint32_t dwSignalType );
11868 #else
11869 bool8_t GenHasFrequencyEx( LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , uint32_t dwSignalType );
11870 #endif
11871 
11873 
11892 #ifdef LIBTIEPIE_DYNAMIC
11893 typedef double(*LibTiePieGenGetFrequencyMin_t)( LibTiePieHandle_t hDevice );
11894 #else
11895 double GenGetFrequencyMin( LibTiePieHandle_t hDevice );
11896 #endif
11897 
11916 #ifdef LIBTIEPIE_DYNAMIC
11917 typedef double(*LibTiePieGenGetFrequencyMax_t)( LibTiePieHandle_t hDevice );
11918 #else
11919 double GenGetFrequencyMax( LibTiePieHandle_t hDevice );
11920 #endif
11921 
11923 
11949 #ifdef LIBTIEPIE_DYNAMIC
11950 typedef void(*LibTiePieGenGetFrequencyMinMax_t)( LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , double* pMin , double* pMax );
11951 #else
11952 void GenGetFrequencyMinMax( LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , double* pMin , double* pMax );
11953 #endif
11954 
11981 #ifdef LIBTIEPIE_DYNAMIC
11982 typedef void(*LibTiePieGenGetFrequencyMinMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , uint32_t dwSignalType , double* pMin , double* pMax );
11983 #else
11984 void GenGetFrequencyMinMaxEx( LibTiePieHandle_t hDevice , uint32_t dwFrequencyMode , uint32_t dwSignalType , double* pMin , double* pMax );
11985 #endif
11986 
11988 
12007 #ifdef LIBTIEPIE_DYNAMIC
12008 typedef double(*LibTiePieGenGetFrequency_t)( LibTiePieHandle_t hDevice );
12009 #else
12010 double GenGetFrequency( LibTiePieHandle_t hDevice );
12011 #endif
12012 
12038 #ifdef LIBTIEPIE_DYNAMIC
12039 typedef double(*LibTiePieGenSetFrequency_t)( LibTiePieHandle_t hDevice , double dFrequency );
12040 #else
12041 double GenSetFrequency( LibTiePieHandle_t hDevice , double dFrequency );
12042 #endif
12043 
12045 
12070 #ifdef LIBTIEPIE_DYNAMIC
12071 typedef double(*LibTiePieGenVerifyFrequency_t)( LibTiePieHandle_t hDevice , double dFrequency );
12072 #else
12073 double GenVerifyFrequency( LibTiePieHandle_t hDevice , double dFrequency );
12074 #endif
12075 
12105 #ifdef LIBTIEPIE_DYNAMIC
12106 typedef double(*LibTiePieGenVerifyFrequencyEx2_t)( LibTiePieHandle_t hDevice , double dFrequency , uint32_t dwFrequencyMode , uint32_t dwSignalType , uint64_t qwDataLength , double dWidth );
12107 #else
12108 double GenVerifyFrequencyEx2( LibTiePieHandle_t hDevice , double dFrequency , uint32_t dwFrequencyMode , uint32_t dwSignalType , uint64_t qwDataLength , double dWidth );
12109 #endif
12110 
12112 
12132 // Workaround: Without this line Doxygen adds the documentation below to the group above.
12133 
12152 #ifdef LIBTIEPIE_DYNAMIC
12153 typedef bool8_t(*LibTiePieGenHasPhase_t)( LibTiePieHandle_t hDevice );
12154 #else
12155 bool8_t GenHasPhase( LibTiePieHandle_t hDevice );
12156 #endif
12157 
12159 
12176 #ifdef LIBTIEPIE_DYNAMIC
12177 typedef bool8_t(*LibTiePieGenHasPhaseEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
12178 #else
12179 bool8_t GenHasPhaseEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
12180 #endif
12181 
12183 
12203 #ifdef LIBTIEPIE_DYNAMIC
12204 typedef double(*LibTiePieGenGetPhaseMin_t)( LibTiePieHandle_t hDevice );
12205 #else
12206 double GenGetPhaseMin( LibTiePieHandle_t hDevice );
12207 #endif
12208 
12228 #ifdef LIBTIEPIE_DYNAMIC
12229 typedef double(*LibTiePieGenGetPhaseMax_t)( LibTiePieHandle_t hDevice );
12230 #else
12231 double GenGetPhaseMax( LibTiePieHandle_t hDevice );
12232 #endif
12233 
12235 
12260 #ifdef LIBTIEPIE_DYNAMIC
12261 typedef void(*LibTiePieGenGetPhaseMinMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double* pMin , double* pMax );
12262 #else
12263 void GenGetPhaseMinMaxEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double* pMin , double* pMax );
12264 #endif
12265 
12267 
12287 #ifdef LIBTIEPIE_DYNAMIC
12288 typedef double(*LibTiePieGenGetPhase_t)( LibTiePieHandle_t hDevice );
12289 #else
12290 double GenGetPhase( LibTiePieHandle_t hDevice );
12291 #endif
12292 
12318 #ifdef LIBTIEPIE_DYNAMIC
12319 typedef double(*LibTiePieGenSetPhase_t)( LibTiePieHandle_t hDevice , double dPhase );
12320 #else
12321 double GenSetPhase( LibTiePieHandle_t hDevice , double dPhase );
12322 #endif
12323 
12325 
12350 #ifdef LIBTIEPIE_DYNAMIC
12351 typedef double(*LibTiePieGenVerifyPhase_t)( LibTiePieHandle_t hDevice , double dPhase );
12352 #else
12353 double GenVerifyPhase( LibTiePieHandle_t hDevice , double dPhase );
12354 #endif
12355 
12382 #ifdef LIBTIEPIE_DYNAMIC
12383 typedef double(*LibTiePieGenVerifyPhaseEx_t)( LibTiePieHandle_t hDevice , double dPhase , uint32_t dwSignalType );
12384 #else
12385 double GenVerifyPhaseEx( LibTiePieHandle_t hDevice , double dPhase , uint32_t dwSignalType );
12386 #endif
12387 
12389 
12410 // Workaround: Without this line Doxygen adds the documentation below to the group above.
12411 
12430 #ifdef LIBTIEPIE_DYNAMIC
12431 typedef bool8_t(*LibTiePieGenHasSymmetry_t)( LibTiePieHandle_t hDevice );
12432 #else
12433 bool8_t GenHasSymmetry( LibTiePieHandle_t hDevice );
12434 #endif
12435 
12437 
12454 #ifdef LIBTIEPIE_DYNAMIC
12455 typedef bool8_t(*LibTiePieGenHasSymmetryEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
12456 #else
12457 bool8_t GenHasSymmetryEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
12458 #endif
12459 
12461 
12480 #ifdef LIBTIEPIE_DYNAMIC
12481 typedef double(*LibTiePieGenGetSymmetryMin_t)( LibTiePieHandle_t hDevice );
12482 #else
12483 double GenGetSymmetryMin( LibTiePieHandle_t hDevice );
12484 #endif
12485 
12504 #ifdef LIBTIEPIE_DYNAMIC
12505 typedef double(*LibTiePieGenGetSymmetryMax_t)( LibTiePieHandle_t hDevice );
12506 #else
12507 double GenGetSymmetryMax( LibTiePieHandle_t hDevice );
12508 #endif
12509 
12511 
12536 #ifdef LIBTIEPIE_DYNAMIC
12537 typedef void(*LibTiePieGenGetSymmetryMinMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double* pMin , double* pMax );
12538 #else
12539 void GenGetSymmetryMinMaxEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double* pMin , double* pMax );
12540 #endif
12541 
12543 
12562 #ifdef LIBTIEPIE_DYNAMIC
12563 typedef double(*LibTiePieGenGetSymmetry_t)( LibTiePieHandle_t hDevice );
12564 #else
12565 double GenGetSymmetry( LibTiePieHandle_t hDevice );
12566 #endif
12567 
12591 #ifdef LIBTIEPIE_DYNAMIC
12592 typedef double(*LibTiePieGenSetSymmetry_t)( LibTiePieHandle_t hDevice , double dSymmetry );
12593 #else
12594 double GenSetSymmetry( LibTiePieHandle_t hDevice , double dSymmetry );
12595 #endif
12596 
12598 
12623 #ifdef LIBTIEPIE_DYNAMIC
12624 typedef double(*LibTiePieGenVerifySymmetry_t)( LibTiePieHandle_t hDevice , double dSymmetry );
12625 #else
12626 double GenVerifySymmetry( LibTiePieHandle_t hDevice , double dSymmetry );
12627 #endif
12628 
12655 #ifdef LIBTIEPIE_DYNAMIC
12656 typedef double(*LibTiePieGenVerifySymmetryEx_t)( LibTiePieHandle_t hDevice , double dSymmetry , uint32_t dwSignalType );
12657 #else
12658 double GenVerifySymmetryEx( LibTiePieHandle_t hDevice , double dSymmetry , uint32_t dwSignalType );
12659 #endif
12660 
12662 
12686 // Workaround: Without this line Doxygen adds the documentation below to the group above.
12687 
12706 #ifdef LIBTIEPIE_DYNAMIC
12707 typedef bool8_t(*LibTiePieGenHasWidth_t)( LibTiePieHandle_t hDevice );
12708 #else
12709 bool8_t GenHasWidth( LibTiePieHandle_t hDevice );
12710 #endif
12711 
12713 
12730 #ifdef LIBTIEPIE_DYNAMIC
12731 typedef bool8_t(*LibTiePieGenHasWidthEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
12732 #else
12733 bool8_t GenHasWidthEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
12734 #endif
12735 
12737 
12756 #ifdef LIBTIEPIE_DYNAMIC
12757 typedef double(*LibTiePieGenGetWidthMin_t)( LibTiePieHandle_t hDevice );
12758 #else
12759 double GenGetWidthMin( LibTiePieHandle_t hDevice );
12760 #endif
12761 
12780 #ifdef LIBTIEPIE_DYNAMIC
12781 typedef double(*LibTiePieGenGetWidthMax_t)( LibTiePieHandle_t hDevice );
12782 #else
12783 double GenGetWidthMax( LibTiePieHandle_t hDevice );
12784 #endif
12785 
12787 
12813 #ifdef LIBTIEPIE_DYNAMIC
12814 typedef void(*LibTiePieGenGetWidthMinMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double dSignalFrequency , double* pMin , double* pMax );
12815 #else
12816 void GenGetWidthMinMaxEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double dSignalFrequency , double* pMin , double* pMax );
12817 #endif
12818 
12820 
12839 #ifdef LIBTIEPIE_DYNAMIC
12840 typedef double(*LibTiePieGenGetWidth_t)( LibTiePieHandle_t hDevice );
12841 #else
12842 double GenGetWidth( LibTiePieHandle_t hDevice );
12843 #endif
12844 
12869 #ifdef LIBTIEPIE_DYNAMIC
12870 typedef double(*LibTiePieGenSetWidth_t)( LibTiePieHandle_t hDevice , double dWidth );
12871 #else
12872 double GenSetWidth( LibTiePieHandle_t hDevice , double dWidth );
12873 #endif
12874 
12876 
12901 #ifdef LIBTIEPIE_DYNAMIC
12902 typedef double(*LibTiePieGenVerifyWidth_t)( LibTiePieHandle_t hDevice , double dWidth );
12903 #else
12904 double GenVerifyWidth( LibTiePieHandle_t hDevice , double dWidth );
12905 #endif
12906 
12934 #ifdef LIBTIEPIE_DYNAMIC
12935 typedef double(*LibTiePieGenVerifyWidthEx_t)( LibTiePieHandle_t hDevice , double dWidth , uint32_t dwSignalType , double dSignalFrequency );
12936 #else
12937 double GenVerifyWidthEx( LibTiePieHandle_t hDevice , double dWidth , uint32_t dwSignalType , double dSignalFrequency );
12938 #endif
12939 
12941 
12973 // Workaround: Without this line Doxygen adds the documentation below to the group above.
12974 
12997 #ifdef LIBTIEPIE_DYNAMIC
12998 typedef bool8_t(*LibTiePieGenHasEdgeTime_t)( LibTiePieHandle_t hDevice );
12999 #else
13000 bool8_t GenHasEdgeTime( LibTiePieHandle_t hDevice );
13001 #endif
13002 
13004 
13036 #ifdef LIBTIEPIE_DYNAMIC
13037 typedef bool8_t(*LibTiePieGenHasEdgeTimeEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
13038 #else
13039 bool8_t GenHasEdgeTimeEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
13040 #endif
13041 
13043 
13067 #ifdef LIBTIEPIE_DYNAMIC
13068 typedef double(*LibTiePieGenGetLeadingEdgeTimeMin_t)( LibTiePieHandle_t hDevice );
13069 #else
13070 double GenGetLeadingEdgeTimeMin( LibTiePieHandle_t hDevice );
13071 #endif
13072 
13096 #ifdef LIBTIEPIE_DYNAMIC
13097 typedef double(*LibTiePieGenGetLeadingEdgeTimeMax_t)( LibTiePieHandle_t hDevice );
13098 #else
13099 double GenGetLeadingEdgeTimeMax( LibTiePieHandle_t hDevice );
13100 #endif
13101 
13103 
13140 #ifdef LIBTIEPIE_DYNAMIC
13141 typedef void(*LibTiePieGenGetLeadingEdgeTimeMinMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double dSignalFrequency , double dSymmetry , double dWidth , double dTrailingEdgeTime , double* pMin , double* pMax );
13142 #else
13143 void GenGetLeadingEdgeTimeMinMaxEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double dSignalFrequency , double dSymmetry , double dWidth , double dTrailingEdgeTime , double* pMin , double* pMax );
13144 #endif
13145 
13147 
13171 #ifdef LIBTIEPIE_DYNAMIC
13172 typedef double(*LibTiePieGenGetLeadingEdgeTime_t)( LibTiePieHandle_t hDevice );
13173 #else
13174 double GenGetLeadingEdgeTime( LibTiePieHandle_t hDevice );
13175 #endif
13176 
13205 #ifdef LIBTIEPIE_DYNAMIC
13206 typedef double(*LibTiePieGenSetLeadingEdgeTime_t)( LibTiePieHandle_t hDevice , double dLeadingEdgeTime );
13207 #else
13208 double GenSetLeadingEdgeTime( LibTiePieHandle_t hDevice , double dLeadingEdgeTime );
13209 #endif
13210 
13212 
13246 #ifdef LIBTIEPIE_DYNAMIC
13247 typedef double(*LibTiePieGenVerifyLeadingEdgeTime_t)( LibTiePieHandle_t hDevice , double dLeadingEdgeTime );
13248 #else
13249 double GenVerifyLeadingEdgeTime( LibTiePieHandle_t hDevice , double dLeadingEdgeTime );
13250 #endif
13251 
13290 #ifdef LIBTIEPIE_DYNAMIC
13291 typedef double(*LibTiePieGenVerifyLeadingEdgeTimeEx_t)( LibTiePieHandle_t hDevice , double dLeadingEdgeTime , uint32_t dwSignalType , double dSignalFrequency , double dSymmetry , double dWidth , double dTrailingEdgeTime );
13292 #else
13293 double GenVerifyLeadingEdgeTimeEx( LibTiePieHandle_t hDevice , double dLeadingEdgeTime , uint32_t dwSignalType , double dSignalFrequency , double dSymmetry , double dWidth , double dTrailingEdgeTime );
13294 #endif
13295 
13297 
13321 #ifdef LIBTIEPIE_DYNAMIC
13322 typedef double(*LibTiePieGenGetTrailingEdgeTimeMin_t)( LibTiePieHandle_t hDevice );
13323 #else
13324 double GenGetTrailingEdgeTimeMin( LibTiePieHandle_t hDevice );
13325 #endif
13326 
13350 #ifdef LIBTIEPIE_DYNAMIC
13351 typedef double(*LibTiePieGenGetTrailingEdgeTimeMax_t)( LibTiePieHandle_t hDevice );
13352 #else
13353 double GenGetTrailingEdgeTimeMax( LibTiePieHandle_t hDevice );
13354 #endif
13355 
13357 
13395 #ifdef LIBTIEPIE_DYNAMIC
13396 typedef void(*LibTiePieGenGetTrailingEdgeTimeMinMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double dSignalFrequency , double dSymmetry , double dWidth , double dLeadingEdgeTime , double* pMin , double* pMax );
13397 #else
13398 void GenGetTrailingEdgeTimeMinMaxEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType , double dSignalFrequency , double dSymmetry , double dWidth , double dLeadingEdgeTime , double* pMin , double* pMax );
13399 #endif
13400 
13402 
13426 #ifdef LIBTIEPIE_DYNAMIC
13427 typedef double(*LibTiePieGenGetTrailingEdgeTime_t)( LibTiePieHandle_t hDevice );
13428 #else
13429 double GenGetTrailingEdgeTime( LibTiePieHandle_t hDevice );
13430 #endif
13431 
13460 #ifdef LIBTIEPIE_DYNAMIC
13461 typedef double(*LibTiePieGenSetTrailingEdgeTime_t)( LibTiePieHandle_t hDevice , double dTrailingEdgeTime );
13462 #else
13463 double GenSetTrailingEdgeTime( LibTiePieHandle_t hDevice , double dTrailingEdgeTime );
13464 #endif
13465 
13467 
13500 #ifdef LIBTIEPIE_DYNAMIC
13501 typedef double(*LibTiePieGenVerifyTrailingEdgeTime_t)( LibTiePieHandle_t hDevice , double dTrailingEdgeTime );
13502 #else
13503 double GenVerifyTrailingEdgeTime( LibTiePieHandle_t hDevice , double dTrailingEdgeTime );
13504 #endif
13505 
13543 #ifdef LIBTIEPIE_DYNAMIC
13544 typedef double(*LibTiePieGenVerifyTrailingEdgeTimeEx_t)( LibTiePieHandle_t hDevice , double dTrailingEdgeTime , uint32_t dwSignalType , double dSignalFrequency , double dSymmetry , double dWidth , double dLeadingEdgeTime );
13545 #else
13546 double GenVerifyTrailingEdgeTimeEx( LibTiePieHandle_t hDevice , double dTrailingEdgeTime , uint32_t dwSignalType , double dSignalFrequency , double dSymmetry , double dWidth , double dLeadingEdgeTime );
13547 #endif
13548 
13550 
13603 // Workaround: Without this line Doxygen adds the documentation below to the group above.
13604 
13620 #ifdef LIBTIEPIE_DYNAMIC
13621 typedef bool8_t(*LibTiePieGenHasData_t)( LibTiePieHandle_t hDevice );
13622 #else
13623 bool8_t GenHasData( LibTiePieHandle_t hDevice );
13624 #endif
13625 
13627 
13644 #ifdef LIBTIEPIE_DYNAMIC
13645 typedef bool8_t(*LibTiePieGenHasDataEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
13646 #else
13647 bool8_t GenHasDataEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType );
13648 #endif
13649 
13651 
13669 #ifdef LIBTIEPIE_DYNAMIC
13670 typedef uint64_t(*LibTiePieGenGetDataLengthMin_t)( LibTiePieHandle_t hDevice );
13671 #else
13672 uint64_t GenGetDataLengthMin( LibTiePieHandle_t hDevice );
13673 #endif
13674 
13692 #ifdef LIBTIEPIE_DYNAMIC
13693 typedef uint64_t(*LibTiePieGenGetDataLengthMax_t)( LibTiePieHandle_t hDevice );
13694 #else
13695 uint64_t GenGetDataLengthMax( LibTiePieHandle_t hDevice );
13696 #endif
13697 
13699 
13723 #ifdef LIBTIEPIE_DYNAMIC
13724 typedef void(*LibTiePieGenGetDataLengthMinMaxEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType , uint64_t* pMin , uint64_t* pMax );
13725 #else
13726 void GenGetDataLengthMinMaxEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType , uint64_t* pMin , uint64_t* pMax );
13727 #endif
13728 
13730 
13748 #ifdef LIBTIEPIE_DYNAMIC
13749 typedef uint64_t(*LibTiePieGenGetDataLength_t)( LibTiePieHandle_t hDevice );
13750 #else
13751 uint64_t GenGetDataLength( LibTiePieHandle_t hDevice );
13752 #endif
13753 
13755 
13780 #ifdef LIBTIEPIE_DYNAMIC
13781 typedef uint64_t(*LibTiePieGenVerifyDataLength_t)( LibTiePieHandle_t hDevice , uint64_t qwDataLength );
13782 #else
13783 uint64_t GenVerifyDataLength( LibTiePieHandle_t hDevice , uint64_t qwDataLength );
13784 #endif
13785 
13811 #ifdef LIBTIEPIE_DYNAMIC
13812 typedef uint64_t(*LibTiePieGenVerifyDataLengthEx_t)( LibTiePieHandle_t hDevice , uint64_t qwDataLength , uint32_t dwSignalType );
13813 #else
13814 uint64_t GenVerifyDataLengthEx( LibTiePieHandle_t hDevice , uint64_t qwDataLength , uint32_t dwSignalType );
13815 #endif
13816 
13818 
13846 #ifdef LIBTIEPIE_DYNAMIC
13847 typedef void(*LibTiePieGenSetData_t)( LibTiePieHandle_t hDevice , const float* pBuffer , uint64_t qwSampleCount );
13848 #else
13849 void GenSetData( LibTiePieHandle_t hDevice , const float* pBuffer , uint64_t qwSampleCount );
13850 #endif
13851 
13853 
13880 #ifdef LIBTIEPIE_DYNAMIC
13881 typedef void(*LibTiePieGenSetDataEx_t)( LibTiePieHandle_t hDevice , const float* pBuffer , uint64_t qwSampleCount , uint32_t dwSignalType , uint32_t dwReserved );
13882 #else
13883 void GenSetDataEx( LibTiePieHandle_t hDevice , const float* pBuffer , uint64_t qwSampleCount , uint32_t dwSignalType , uint32_t dwReserved );
13884 #endif
13885 
13892 // Workaround: Without this line Doxygen adds the documentation below to the group above.
13893 
13902 #ifdef LIBTIEPIE_DYNAMIC
13903 typedef uint32_t(*LibTiePieGenGetDataRawType_t)( LibTiePieHandle_t hDevice );
13904 #else
13905 uint32_t GenGetDataRawType( LibTiePieHandle_t hDevice );
13906 #endif
13907 
13917 #ifdef LIBTIEPIE_DYNAMIC
13918 typedef void(*LibTiePieGenGetDataRawValueRange_t)( LibTiePieHandle_t hDevice , int64_t* pMin , int64_t* pZero , int64_t* pMax );
13919 #else
13920 void GenGetDataRawValueRange( LibTiePieHandle_t hDevice , int64_t* pMin , int64_t* pZero , int64_t* pMax );
13921 #endif
13922 
13930 #ifdef LIBTIEPIE_DYNAMIC
13931 typedef int64_t(*LibTiePieGenGetDataRawValueMin_t)( LibTiePieHandle_t hDevice );
13932 #else
13933 int64_t GenGetDataRawValueMin( LibTiePieHandle_t hDevice );
13934 #endif
13935 
13943 #ifdef LIBTIEPIE_DYNAMIC
13944 typedef int64_t(*LibTiePieGenGetDataRawValueZero_t)( LibTiePieHandle_t hDevice );
13945 #else
13946 int64_t GenGetDataRawValueZero( LibTiePieHandle_t hDevice );
13947 #endif
13948 
13956 #ifdef LIBTIEPIE_DYNAMIC
13957 typedef int64_t(*LibTiePieGenGetDataRawValueMax_t)( LibTiePieHandle_t hDevice );
13958 #else
13959 int64_t GenGetDataRawValueMax( LibTiePieHandle_t hDevice );
13960 #endif
13961 
13972 #ifdef LIBTIEPIE_DYNAMIC
13973 typedef void(*LibTiePieGenSetDataRaw_t)( LibTiePieHandle_t hDevice , const void* pBuffer , uint64_t qwSampleCount );
13974 #else
13975 void GenSetDataRaw( LibTiePieHandle_t hDevice , const void* pBuffer , uint64_t qwSampleCount );
13976 #endif
13977 
13990 #ifdef LIBTIEPIE_DYNAMIC
13991 typedef void(*LibTiePieGenSetDataRawEx_t)( LibTiePieHandle_t hDevice , const void* pBuffer , uint64_t qwSampleCount , uint32_t dwSignalType , uint32_t dwReserved );
13992 #else
13993 void GenSetDataRawEx( LibTiePieHandle_t hDevice , const void* pBuffer , uint64_t qwSampleCount , uint32_t dwSignalType , uint32_t dwReserved );
13994 #endif
13995 
14000 
14024 // Workaround: Without this line Doxygen adds the documentation below to the group above.
14025 
14043 #ifdef LIBTIEPIE_DYNAMIC
14044 typedef uint64_t(*LibTiePieGenGetModes_t)( LibTiePieHandle_t hDevice );
14045 #else
14046 uint64_t GenGetModes( LibTiePieHandle_t hDevice );
14047 #endif
14048 
14050 
14068 #ifdef LIBTIEPIE_DYNAMIC
14069 typedef uint64_t(*LibTiePieGenGetModesEx_t)( LibTiePieHandle_t hDevice , uint32_t dwSignalType , uint32_t dwFrequencyMode );
14070 #else
14071 uint64_t GenGetModesEx( LibTiePieHandle_t hDevice , uint32_t dwSignalType , uint32_t dwFrequencyMode );
14072 #endif
14073 
14075 
14093 #ifdef LIBTIEPIE_DYNAMIC
14094 typedef uint64_t(*LibTiePieGenGetModesNative_t)( LibTiePieHandle_t hDevice );
14095 #else
14096 uint64_t GenGetModesNative( LibTiePieHandle_t hDevice );
14097 #endif
14098 
14116 #ifdef LIBTIEPIE_DYNAMIC
14117 typedef uint64_t(*LibTiePieGenGetMode_t)( LibTiePieHandle_t hDevice );
14118 #else
14119 uint64_t GenGetMode( LibTiePieHandle_t hDevice );
14120 #endif
14121 
14143 #ifdef LIBTIEPIE_DYNAMIC
14144 typedef uint64_t(*LibTiePieGenSetMode_t)( LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode );
14145 #else
14146 uint64_t GenSetMode( LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode );
14147 #endif
14148 
14205 // Workaround: Without this line Doxygen adds the documentation below to the group above.
14206 
14223 #ifdef LIBTIEPIE_DYNAMIC
14224 typedef bool8_t(*LibTiePieGenIsBurstActive_t)( LibTiePieHandle_t hDevice );
14225 #else
14226 bool8_t GenIsBurstActive( LibTiePieHandle_t hDevice );
14227 #endif
14228 
14247 #ifdef LIBTIEPIE_DYNAMIC
14248 typedef uint64_t(*LibTiePieGenGetBurstCountMin_t)( LibTiePieHandle_t hDevice );
14249 #else
14250 uint64_t GenGetBurstCountMin( LibTiePieHandle_t hDevice );
14251 #endif
14252 
14271 #ifdef LIBTIEPIE_DYNAMIC
14272 typedef uint64_t(*LibTiePieGenGetBurstCountMax_t)( LibTiePieHandle_t hDevice );
14273 #else
14274 uint64_t GenGetBurstCountMax( LibTiePieHandle_t hDevice );
14275 #endif
14276 
14278 
14301 #ifdef LIBTIEPIE_DYNAMIC
14302 typedef void(*LibTiePieGenGetBurstCountMinMaxEx_t)( LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint64_t* pMin , uint64_t* pMax );
14303 #else
14304 void GenGetBurstCountMinMaxEx( LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint64_t* pMin , uint64_t* pMax );
14305 #endif
14306 
14308 
14327 #ifdef LIBTIEPIE_DYNAMIC
14328 typedef uint64_t(*LibTiePieGenGetBurstCount_t)( LibTiePieHandle_t hDevice );
14329 #else
14330 uint64_t GenGetBurstCount( LibTiePieHandle_t hDevice );
14331 #endif
14332 
14355 #ifdef LIBTIEPIE_DYNAMIC
14356 typedef uint64_t(*LibTiePieGenSetBurstCount_t)( LibTiePieHandle_t hDevice , uint64_t qwBurstCount );
14357 #else
14358 uint64_t GenSetBurstCount( LibTiePieHandle_t hDevice , uint64_t qwBurstCount );
14359 #endif
14360 
14379 #ifdef LIBTIEPIE_DYNAMIC
14380 typedef uint64_t(*LibTiePieGenGetBurstSampleCountMin_t)( LibTiePieHandle_t hDevice );
14381 #else
14382 uint64_t GenGetBurstSampleCountMin( LibTiePieHandle_t hDevice );
14383 #endif
14384 
14403 #ifdef LIBTIEPIE_DYNAMIC
14404 typedef uint64_t(*LibTiePieGenGetBurstSampleCountMax_t)( LibTiePieHandle_t hDevice );
14405 #else
14406 uint64_t GenGetBurstSampleCountMax( LibTiePieHandle_t hDevice );
14407 #endif
14408 
14410 
14433 #ifdef LIBTIEPIE_DYNAMIC
14434 typedef void(*LibTiePieGenGetBurstSampleCountMinMaxEx_t)( LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint64_t* pMin , uint64_t* pMax );
14435 #else
14436 void GenGetBurstSampleCountMinMaxEx( LibTiePieHandle_t hDevice , uint64_t qwGeneratorMode , uint64_t* pMin , uint64_t* pMax );
14437 #endif
14438 
14440 
14459 #ifdef LIBTIEPIE_DYNAMIC
14460 typedef uint64_t(*LibTiePieGenGetBurstSampleCount_t)( LibTiePieHandle_t hDevice );
14461 #else
14462 uint64_t GenGetBurstSampleCount( LibTiePieHandle_t hDevice );
14463 #endif
14464 
14487 #ifdef LIBTIEPIE_DYNAMIC
14488 typedef uint64_t(*LibTiePieGenSetBurstSampleCount_t)( LibTiePieHandle_t hDevice , uint64_t qwBurstSampleCount );
14489 #else
14490 uint64_t GenSetBurstSampleCount( LibTiePieHandle_t hDevice , uint64_t qwBurstSampleCount );
14491 #endif
14492 
14511 #ifdef LIBTIEPIE_DYNAMIC
14512 typedef uint64_t(*LibTiePieGenGetBurstSegmentCountMin_t)( LibTiePieHandle_t hDevice );
14513 #else
14514 uint64_t GenGetBurstSegmentCountMin( LibTiePieHandle_t hDevice );
14515 #endif
14516 
14535 #ifdef LIBTIEPIE_DYNAMIC
14536 typedef uint64_t(*LibTiePieGenGetBurstSegmentCountMax_t)( LibTiePieHandle_t hDevice );
14537 #else
14538 uint64_t GenGetBurstSegmentCountMax( LibTiePieHandle_t hDevice );
14539 #endif
14540 
14542 
14569 #ifdef LIBTIEPIE_DYNAMIC
14570 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 );
14571 #else
14572 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 );
14573 #endif
14574 
14576 
14595 #ifdef LIBTIEPIE_DYNAMIC
14596 typedef uint64_t(*LibTiePieGenGetBurstSegmentCount_t)( LibTiePieHandle_t hDevice );
14597 #else
14598 uint64_t GenGetBurstSegmentCount( LibTiePieHandle_t hDevice );
14599 #endif
14600 
14623 #ifdef LIBTIEPIE_DYNAMIC
14624 typedef uint64_t(*LibTiePieGenSetBurstSegmentCount_t)( LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount );
14625 #else
14626 uint64_t GenSetBurstSegmentCount( LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount );
14627 #endif
14628 
14630 
14654 #ifdef LIBTIEPIE_DYNAMIC
14655 typedef uint64_t(*LibTiePieGenVerifyBurstSegmentCount_t)( LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount );
14656 #else
14657 uint64_t GenVerifyBurstSegmentCount( LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount );
14658 #endif
14659 
14689 #ifdef LIBTIEPIE_DYNAMIC
14690 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 );
14691 #else
14692 uint64_t GenVerifyBurstSegmentCountEx( LibTiePieHandle_t hDevice , uint64_t qwBurstSegmentCount , uint64_t qwGeneratorMode , uint32_t dwSignalType , uint32_t dwFrequencyMode , double dFrequency , uint64_t qwDataLength );
14693 #endif
14694 
14696 
14746 // Workaround: Without this line Doxygen adds the documentation below to the group above.
14747 
14765 #ifdef LIBTIEPIE_DYNAMIC
14766 typedef void(*LibTiePieGenSetCallbackBurstCompleted_t)( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
14767 #else
14768 void GenSetCallbackBurstCompleted( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
14769 #endif
14770 
14771 #ifdef LIBTIEPIE_LINUX
14772 
14790 #ifdef LIBTIEPIE_DYNAMIC
14791 typedef void(*LibTiePieGenSetEventBurstCompleted_t)( LibTiePieHandle_t hDevice , int fdEvent );
14792 #else
14793 void GenSetEventBurstCompleted( LibTiePieHandle_t hDevice , int fdEvent );
14794 #endif
14795 
14796 #endif
14797 
14798 #ifdef LIBTIEPIE_WINDOWS
14799 
14817 #ifdef LIBTIEPIE_DYNAMIC
14818 typedef void(*LibTiePieGenSetEventBurstCompleted_t)( LibTiePieHandle_t hDevice , HANDLE hEvent );
14819 #else
14820 void GenSetEventBurstCompleted( LibTiePieHandle_t hDevice , HANDLE hEvent );
14821 #endif
14822 
14842 #ifdef LIBTIEPIE_DYNAMIC
14843 typedef void(*LibTiePieGenSetMessageBurstCompleted_t)( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
14844 #else
14845 void GenSetMessageBurstCompleted( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
14846 #endif
14847 
14848 #endif
14849 
14859 // Workaround: Without this line Doxygen adds the documentation below to the group above.
14860 
14878 #ifdef LIBTIEPIE_DYNAMIC
14879 typedef void(*LibTiePieGenSetCallbackControllableChanged_t)( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
14880 #else
14881 void GenSetCallbackControllableChanged( LibTiePieHandle_t hDevice , TpCallback_t pCallback , void* pData );
14882 #endif
14883 
14884 #ifdef LIBTIEPIE_LINUX
14885 
14903 #ifdef LIBTIEPIE_DYNAMIC
14904 typedef void(*LibTiePieGenSetEventControllableChanged_t)( LibTiePieHandle_t hDevice , int fdEvent );
14905 #else
14906 void GenSetEventControllableChanged( LibTiePieHandle_t hDevice , int fdEvent );
14907 #endif
14908 
14909 #endif
14910 
14911 #ifdef LIBTIEPIE_WINDOWS
14912 
14930 #ifdef LIBTIEPIE_DYNAMIC
14931 typedef void(*LibTiePieGenSetEventControllableChanged_t)( LibTiePieHandle_t hDevice , HANDLE hEvent );
14932 #else
14933 void GenSetEventControllableChanged( LibTiePieHandle_t hDevice , HANDLE hEvent );
14934 #endif
14935 
14955 #ifdef LIBTIEPIE_DYNAMIC
14956 typedef void(*LibTiePieGenSetMessageControllableChanged_t)( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
14957 #else
14958 void GenSetMessageControllableChanged( LibTiePieHandle_t hDevice , HWND hWnd , WPARAM wParam , LPARAM lParam );
14959 #endif
14960 
14961 #endif
14962 
14980 // Workaround: Without this line Doxygen adds the documentation below to the group above.
14981 
14998 #ifdef LIBTIEPIE_DYNAMIC
14999 typedef bool8_t(*LibTiePieI2CIsInternalAddress_t)( LibTiePieHandle_t hDevice , uint16_t wAddress );
15000 #else
15001 bool8_t I2CIsInternalAddress( LibTiePieHandle_t hDevice , uint16_t wAddress );
15002 #endif
15003 
15035 #ifdef LIBTIEPIE_DYNAMIC
15036 typedef uint32_t(*LibTiePieI2CGetInternalAddresses_t)( LibTiePieHandle_t hDevice , uint16_t* pAddresses , uint32_t dwLength );
15037 #else
15038 uint32_t I2CGetInternalAddresses( LibTiePieHandle_t hDevice , uint16_t* pAddresses , uint32_t dwLength );
15039 #endif
15040 
15047 // Workaround: Without this line Doxygen adds the documentation below to the group above.
15048 
15072 #ifdef LIBTIEPIE_DYNAMIC
15073 typedef bool8_t(*LibTiePieI2CRead_t)( LibTiePieHandle_t hDevice , uint16_t wAddress , void* pBuffer , uint32_t dwSize , bool8_t bStop );
15074 #else
15075 bool8_t I2CRead( LibTiePieHandle_t hDevice , uint16_t wAddress , void* pBuffer , uint32_t dwSize , bool8_t bStop );
15076 #endif
15077 
15101 #ifdef LIBTIEPIE_DYNAMIC
15102 typedef bool8_t(*LibTiePieI2CReadByte_t)( LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t* pValue );
15103 #else
15104 bool8_t I2CReadByte( LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t* pValue );
15105 #endif
15106 
15131 #ifdef LIBTIEPIE_DYNAMIC
15132 typedef bool8_t(*LibTiePieI2CReadWord_t)( LibTiePieHandle_t hDevice , uint16_t wAddress , uint16_t* pValue );
15133 #else
15134 bool8_t I2CReadWord( LibTiePieHandle_t hDevice , uint16_t wAddress , uint16_t* pValue );
15135 #endif
15136 
15144 // Workaround: Without this line Doxygen adds the documentation below to the group above.
15145 
15171 #ifdef LIBTIEPIE_DYNAMIC
15172 typedef bool8_t(*LibTiePieI2CWrite_t)( LibTiePieHandle_t hDevice , uint16_t wAddress , const void* pBuffer , uint32_t dwSize , bool8_t bStop );
15173 #else
15174 bool8_t I2CWrite( LibTiePieHandle_t hDevice , uint16_t wAddress , const void* pBuffer , uint32_t dwSize , bool8_t bStop );
15175 #endif
15176 
15202 #ifdef LIBTIEPIE_DYNAMIC
15203 typedef bool8_t(*LibTiePieI2CWriteByte_t)( LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t byValue );
15204 #else
15205 bool8_t I2CWriteByte( LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t byValue );
15206 #endif
15207 
15234 #ifdef LIBTIEPIE_DYNAMIC
15235 typedef bool8_t(*LibTiePieI2CWriteByteByte_t)( LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t byValue1 , uint8_t byValue2 );
15236 #else
15237 bool8_t I2CWriteByteByte( LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t byValue1 , uint8_t byValue2 );
15238 #endif
15239 
15267 #ifdef LIBTIEPIE_DYNAMIC
15268 typedef bool8_t(*LibTiePieI2CWriteByteWord_t)( LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t byValue1 , uint16_t wValue2 );
15269 #else
15270 bool8_t I2CWriteByteWord( LibTiePieHandle_t hDevice , uint16_t wAddress , uint8_t byValue1 , uint16_t wValue2 );
15271 #endif
15272 
15299 #ifdef LIBTIEPIE_DYNAMIC
15300 typedef bool8_t(*LibTiePieI2CWriteWord_t)( LibTiePieHandle_t hDevice , uint16_t wAddress , uint16_t wValue );
15301 #else
15302 bool8_t I2CWriteWord( LibTiePieHandle_t hDevice , uint16_t wAddress , uint16_t wValue );
15303 #endif
15304 
15312 // Workaround: Without this line Doxygen adds the documentation below to the group above.
15313 
15342 #ifdef LIBTIEPIE_DYNAMIC
15343 typedef bool8_t(*LibTiePieI2CWriteRead_t)( LibTiePieHandle_t hDevice , uint16_t wAddress , const void* pWriteBuffer , uint32_t dwWriteSize , void* pReadBuffer , uint32_t dwReadSize );
15344 #else
15345 bool8_t I2CWriteRead( LibTiePieHandle_t hDevice , uint16_t wAddress , const void* pWriteBuffer , uint32_t dwWriteSize , void* pReadBuffer , uint32_t dwReadSize );
15346 #endif
15347 
15355 // Workaround: Without this line Doxygen adds the documentation below to the group above.
15356 
15373 #ifdef LIBTIEPIE_DYNAMIC
15374 typedef double(*LibTiePieI2CGetSpeedMax_t)( LibTiePieHandle_t hDevice );
15375 #else
15376 double I2CGetSpeedMax( LibTiePieHandle_t hDevice );
15377 #endif
15378 
15396 #ifdef LIBTIEPIE_DYNAMIC
15397 typedef double(*LibTiePieI2CGetSpeed_t)( LibTiePieHandle_t hDevice );
15398 #else
15399 double I2CGetSpeed( LibTiePieHandle_t hDevice );
15400 #endif
15401 
15421 #ifdef LIBTIEPIE_DYNAMIC
15422 typedef double(*LibTiePieI2CSetSpeed_t)( LibTiePieHandle_t hDevice , double dSpeed );
15423 #else
15424 double I2CSetSpeed( LibTiePieHandle_t hDevice , double dSpeed );
15425 #endif
15426 
15428 
15449 #ifdef LIBTIEPIE_DYNAMIC
15450 typedef double(*LibTiePieI2CVerifySpeed_t)( LibTiePieHandle_t hDevice , double dSpeed );
15451 #else
15452 double I2CVerifySpeed( LibTiePieHandle_t hDevice , double dSpeed );
15453 #endif
15454 
15456 
15465 // Workaround: Without this line Doxygen adds the documentation below to the group above.
15466 
15476 #ifdef LIBTIEPIE_DYNAMIC
15477 typedef bool8_t(*LibTiePieSrvConnect_t)( LibTiePieHandle_t hServer , bool8_t bAsync );
15478 #else
15479 bool8_t SrvConnect( LibTiePieHandle_t hServer , bool8_t bAsync );
15480 #endif
15481 
15491 #ifdef LIBTIEPIE_DYNAMIC
15492 typedef bool8_t(*LibTiePieSrvDisconnect_t)( LibTiePieHandle_t hServer , bool8_t bForce );
15493 #else
15494 bool8_t SrvDisconnect( LibTiePieHandle_t hServer , bool8_t bForce );
15495 #endif
15496 
15505 #ifdef LIBTIEPIE_DYNAMIC
15506 typedef bool8_t(*LibTiePieSrvRemove_t)( LibTiePieHandle_t hServer , bool8_t bForce );
15507 #else
15508 bool8_t SrvRemove( LibTiePieHandle_t hServer , bool8_t bForce );
15509 #endif
15510 
15518 #ifdef LIBTIEPIE_DYNAMIC
15519 typedef uint32_t(*LibTiePieSrvGetStatus_t)( LibTiePieHandle_t hServer );
15520 #else
15521 uint32_t SrvGetStatus( LibTiePieHandle_t hServer );
15522 #endif
15523 
15531 #ifdef LIBTIEPIE_DYNAMIC
15532 typedef uint32_t(*LibTiePieSrvGetLastError_t)( LibTiePieHandle_t hServer );
15533 #else
15534 uint32_t SrvGetLastError( LibTiePieHandle_t hServer );
15535 #endif
15536 
15546 #ifdef LIBTIEPIE_DYNAMIC
15547 typedef uint32_t(*LibTiePieSrvGetURL_t)( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15548 #else
15549 uint32_t SrvGetURL( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15550 #endif
15551 
15561 #ifdef LIBTIEPIE_DYNAMIC
15562 typedef uint32_t(*LibTiePieSrvGetID_t)( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15563 #else
15564 uint32_t SrvGetID( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15565 #endif
15566 
15574 #ifdef LIBTIEPIE_DYNAMIC
15575 typedef uint32_t(*LibTiePieSrvGetIPv4Address_t)( LibTiePieHandle_t hServer );
15576 #else
15577 uint32_t SrvGetIPv4Address( LibTiePieHandle_t hServer );
15578 #endif
15579 
15587 #ifdef LIBTIEPIE_DYNAMIC
15588 typedef uint16_t(*LibTiePieSrvGetIPPort_t)( LibTiePieHandle_t hServer );
15589 #else
15590 uint16_t SrvGetIPPort( LibTiePieHandle_t hServer );
15591 #endif
15592 
15602 #ifdef LIBTIEPIE_DYNAMIC
15603 typedef uint32_t(*LibTiePieSrvGetName_t)( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15604 #else
15605 uint32_t SrvGetName( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15606 #endif
15607 
15617 #ifdef LIBTIEPIE_DYNAMIC
15618 typedef uint32_t(*LibTiePieSrvGetDescription_t)( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15619 #else
15620 uint32_t SrvGetDescription( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15621 #endif
15622 
15630 #ifdef LIBTIEPIE_DYNAMIC
15631 typedef TpVersion_t(*LibTiePieSrvGetVersion_t)( LibTiePieHandle_t hServer );
15632 #else
15633 TpVersion_t SrvGetVersion( LibTiePieHandle_t hServer );
15634 #endif
15635 
15645 #ifdef LIBTIEPIE_DYNAMIC
15646 typedef uint32_t(*LibTiePieSrvGetVersionExtra_t)( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15647 #else
15648 uint32_t SrvGetVersionExtra( LibTiePieHandle_t hServer , char* pBuffer , uint32_t dwBufferLength );
15649 #endif
15650 
15689 // Workaround: Without this line Doxygen adds the documentation below to the group above.
15690 
15707 #ifdef LIBTIEPIE_DYNAMIC
15708 typedef LibTiePiePointerArray_t(*LibTiePieHlpPointerArrayNew_t)( uint32_t dwLength );
15709 #else
15710 LibTiePiePointerArray_t HlpPointerArrayNew( uint32_t dwLength );
15711 #endif
15712 
15728 #ifdef LIBTIEPIE_DYNAMIC
15729 typedef void(*LibTiePieHlpPointerArraySet_t)( LibTiePiePointerArray_t pArray , uint32_t dwIndex , void* pPointer );
15730 #else
15731 void HlpPointerArraySet( LibTiePiePointerArray_t pArray , uint32_t dwIndex , void* pPointer );
15732 #endif
15733 
15746 #ifdef LIBTIEPIE_DYNAMIC
15747 typedef void(*LibTiePieHlpPointerArrayDelete_t)( LibTiePiePointerArray_t pArray );
15748 #else
15749 void HlpPointerArrayDelete( LibTiePiePointerArray_t pArray );
15750 #endif
15751 
15758 #ifdef __cplusplus
15759 }
15760 #endif
15761 
15762 #endif
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.
uint32_t SrvGetURL(LibTiePieHandle_t hServer, char *pBuffer, uint32_t dwBufferLength)
Get the URL of the specified network instrument or instrument server.
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 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 SrvGetStatus(LibTiePieHandle_t hServer)
Retrieve the status of a specified network instrument or instrument server.
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.
bool8_t DevIsBatteryChargerConnected(LibTiePieHandle_t hDevice)
Check whether the battery charger is connected.
void(* TpCallbackDeviceList_t)(void *pData, uint32_t dwDeviceTypes, uint32_t dwSerialNumber)
Definition: libtiepie.h:1478
void ObjSetEventEvent(LibTiePieHandle_t hHandle, int fdEvent)
Set an event file descriptor which is set when an event occurs.
LibTiePieHandle_t TpDeviceHandle_t
Definition: libtiepie.h:1414
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.
uint32_t DevGetIPv4Address(LibTiePieHandle_t hDevice)
Get the IPv4 address of the device.
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.
void NetSrvSetEventAdded(int fdEvent)
Set an event file descriptor which is set when a server is added to the server list.
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 NetSrvRemove(const char *pURL, uint32_t dwURLLength, bool8_t bForce)
Remove a server from the list of servers.
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.
uint64_t DevTrInGetKinds(LibTiePieHandle_t hDevice, uint16_t wInput)
Get the supported trigger kinds for a specified device trigger input.
uint32_t DevGetSerialNumber(LibTiePieHandle_t hDevice)
Get the serial number of the device.
void(* TpCallbackEvent_t)(void *pData, uint32_t dwEvent, uint32_t dwValue)
Definition: libtiepie.h:1480
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.
bool8_t DevHasBattery(LibTiePieHandle_t hDevice)
Check whether the device has a battery.
uint16_t DevTrGetInputCount(LibTiePieHandle_t hDevice)
Get the number of trigger inputs.
double ScpGetTriggerTimeOut(LibTiePieHandle_t hDevice)
Get the currently selected trigger time out in seconds, for a specified oscilloscope.
uint32_t LstDevGetIPv4Address(uint32_t dwIdKind, uint32_t dwId)
Get the IPv4 address of the listed device.
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...
uint32_t SrvGetDescription(LibTiePieHandle_t hServer, char *pBuffer, uint32_t dwBufferLength)
Get the description of the specified network instrument or instrument server.
int32_t DevGetBatteryTimeToEmpty(LibTiePieHandle_t hDevice)
Get battery time to empty in minutes.
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.
bool8_t DevTrInGetEnabled(LibTiePieHandle_t hDevice, uint16_t wInput)
Check whether a device trigger input is enabled.
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.
int8_t DevGetBatteryCharge(LibTiePieHandle_t hDevice)
Get battery charge in percent.
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.
bool8_t LstDevHasServer(uint32_t dwIdKind, uint32_t dwId)
Check whether the listed device is connected to a server.
double GenGetOutputValueMax(LibTiePieHandle_t hDevice)
Get the maximum output value of a specified generator.
int32_t DevGetBatteryTimeToFull(LibTiePieHandle_t hDevice)
Get battery time to full in minutes.
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.
bool8_t SrvRemove(LibTiePieHandle_t hServer, bool8_t bForce)
Remove a specified specified network instrument or instrument server from the list of servers...
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 ...
uint32_t DevTrInGetId(LibTiePieHandle_t hDevice, uint16_t wInput)
Get the id of a specified device trigger input.
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. ...
uint32_t SrvGetVersionExtra(LibTiePieHandle_t hServer, char *pBuffer, uint32_t dwBufferLength)
Get the software version postfix of the specified network instrument or instrument server...
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.
Definition: libtiepie.h:1468
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.
uint32_t DevTrInGetName(LibTiePieHandle_t hDevice, uint16_t wInput, char *pBuffer, uint32_t dwBufferLength)
Get the name of a specified device trigger input.
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...
uint16_t SrvGetIPPort(LibTiePieHandle_t hServer)
Get the IP port number of the specified network instrument or instrument server.
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.
bool8_t NetSetAutoDetectEnabled(bool8_t bEnable)
Enable or disable automatic detection of network instruments and instrument servers.
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.
void LstRemoveDeviceForce(uint32_t dwSerialNumber)
Remove an instrument from the device list even when it is in use so it can be used by other applicati...
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.
Definition: libtiepie.h:1413
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 DevIsBatteryBroken(LibTiePieHandle_t hDevice)
Check whether the battery is broken.
uint32_t NetSrvGetCount(void)
Get the number of servers available.
bool8_t ScpChHasTrigger(LibTiePieHandle_t hDevice, uint16_t wCh)
Check whether the specified channel has trigger support with the currently selected measure mode...
bool8_t DevIsBatteryCharging(LibTiePieHandle_t hDevice)
Check whether the battery is charging.
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.
Definition: libtiepie.h:1412
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.
Definition: libtiepie.h:1467
void NetSrvSetCallbackAdded(TpCallbackHandle_t pCallback, void *pData)
Set a callback function which is called when a server is added to the server list.
uint64_t DevTrInSetKind(LibTiePieHandle_t hDevice, uint16_t wInput, uint64_t qwKind)
Set the required trigger kind for a specified device trigger input.
uint64_t TpVersion_t
Data type representing a version number.
Definition: libtiepie.h:1445
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.
LibTiePieHandle_t LstDevGetServer(uint32_t dwIdKind, uint32_t dwId)
Get the server handle of the server the listed device is connected to.
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 NetSrvSetMessageAdded(HWND hWnd)
Set a window handle to which a WM_LIBTIEPIE_NETSRV_ADDED message is sent when a server is added to th...
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.
uint32_t SrvGetIPv4Address(LibTiePieHandle_t hServer)
Get the IPv4 address of the specified network instrument or instrument server.
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)
Definition: libtiepie.h:1479
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.
uint16_t DevTrGetInputIndexById(LibTiePieHandle_t hDevice, uint32_t dwId)
Get the index of a trigger input identified by its ID.
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...
uint32_t SrvGetLastError(LibTiePieHandle_t hServer)
Get the last error from a specified network instrument or instrument server.
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.
uint32_t SrvGetID(LibTiePieHandle_t hServer, char *pBuffer, uint32_t dwBufferLength)
Get the id of the specified network instrument or instrument server.
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.
Definition: libtiepie.h:1466
TpVersion_t DevGetFirmwareVersion(LibTiePieHandle_t hDevice)
Get the version number of the firmware used by the device.
uint16_t DevGetIPPort(LibTiePieHandle_t hDevice)
Get the IP port number of 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.
bool8_t DevTrInIsAvailable(LibTiePieHandle_t hDevice, uint16_t wInput)
Check whether a device trigger input is available.
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.
bool8_t SrvConnect(LibTiePieHandle_t hServer, bool8_t bAsync)
Connect to a specified network instrument or instrument server. This gives access to the network inst...
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.
bool8_t SrvDisconnect(LibTiePieHandle_t hServer, bool8_t bForce)
Disconnect from a specified network instrument or instrument server. This will close all opened instr...
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)
Definition: libtiepie.h:1477
bool8_t NetSrvAdd(const char *pURL, uint32_t dwURLLength, LibTiePieHandle_t *pHandle)
Add a server to the list of servers.
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 ScpTrInIsTriggered(LibTiePieHandle_t hDevice, uint16_t wInput)
Check whether the trigger input caused a trigger.
bool8_t NetGetAutoDetectEnabled(void)
Check whether automatically detecting network instruments and instrument servers is enabled...
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.
LibTiePieHandle_t NetSrvGetByIndex(uint32_t dwIndex)
Get the handle of a server, based on its index in the list of servers.
uint32_t SrvGetName(LibTiePieHandle_t hServer, char *pBuffer, uint32_t dwBufferLength)
Get the name of the specified network instrument or instrument server.
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.
TpVersion_t SrvGetVersion(LibTiePieHandle_t hServer)
Get the software version number of the specified network instrument or instrument server...
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.
uint64_t DevTrInGetKind(LibTiePieHandle_t hDevice, uint16_t wInput)
Get the currently selected trigger kind for a specified device trigger input.
uint16_t LstDevGetIPPort(uint32_t dwIdKind, uint32_t dwId)
Get the IP port number of the listed device.
TpDate_t DevGetCalibrationDate(LibTiePieHandle_t hDevice)
Get the calibration date of the device.
LibTiePieHandle_t NetSrvGetByURL(const char *pURL, uint32_t dwURLLength)
Get the handle of a server, based on its URL.
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.
bool8_t DevTrInSetEnabled(LibTiePieHandle_t hDevice, uint16_t wInput, bool8_t bEnable)
To select a device trigger input as trigger source, set trigger input enabled.
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.
Definition: libtiepie.h:1469
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 hardware 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&#39;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...