Subversion Repositories f9daq

Compare Revisions

Ignore whitespace Rev 255 → Rev 256

/cvi/instr/K617/K617.c
1,10 → 1,12
#include <ansi_c.h>
#include <utility.h>
#include <gpib.h>
#include "prologix.h"
#include "K617.h"
 
K617STATUS K617Stat;
static int gdev,iret;
static int K617_Interface,K617_Port,K617_Gdev;
static int iret;
 
void GpibError(char *msg) {
 
48,26 → 50,41
printf ("\n");
 
/* Call ibonl to take the device and interface offline */
ibonl (gdev,0);
ibonl (K617_Gdev,0);
 
exit(1);
}
 
void _VI_FUNC K617_open (int interface, int primary_addr, int secondary_addr,
int timeout)
void _VI_FUNC K617_open (int interface, int port, int primary_addr,
int secondary_addr, int timeout)
{
char cmd[100];
/*
gdev = OpenDev ("GPIB0", "");
K617_Gdev = OpenDev ("GPIB0", "");
if (ibsta & ERR) GpibError("OpenDev Error");
iret = ibpad (gdev, 0);
iret = ibpad (K617_Gdev, 0);
if (ibsta & ERR) GpibError("OpenDev Error");
iret = ibsad (gdev, NO_SAD);
iret = ibtmo (gdev, T10s);
iret = ibeot (gdev, 1);
iret = ibeos (gdev, 0);
iret = ibsad (K617_Gdev, NO_SAD);
iret = ibtmo (K617_Gdev, T10s);
iret = ibeot (K617_Gdev, 1);
iret = ibeos (K617_Gdev, 0);
*/
gdev = ibdev(interface,primary_addr,secondary_addr,timeout,1,0);
if (ibsta & ERR) GpibError("OpenDev Error");
K617_Interface=interface;
K617_Port=port;
switch (K617_Interface){
case 1:
PROLOGIX_Open (K617_Port);
sprintf(cmd,"++addr %0d",primary_addr);
PROLOGIX_Send (cmd);
PROLOGIX_Send ("++auto 0");
PROLOGIX_Send ("++eoi 1");
PROLOGIX_Send ("++eot_enable 0");
PROLOGIX_Send ("++read_tmo_ms 1000");
break;
default:
K617_Gdev = ibdev(K617_Port,primary_addr,secondary_addr,timeout,1,0);
if (ibsta & ERR) GpibError("OpenDev Error");
}
Delay(GDELAY);
return;
}
74,17 → 91,29
 
void _VI_FUNC K617_clear (void)
{
iret = ibclr (gdev); /* Clear the device */
if (ibsta & ERR) GpibError("OpenDev Error");
Delay(GDELAY);
switch (K617_Interface){
case 1:
PROLOGIX_Send("++clr");
break;
default:
iret = ibclr (K617_Gdev); // Clear the device
if (ibsta & ERR) GpibError("OpenDev Error");
}
// Delay(GDELAY);
Delay(2.);
return;
}
 
void _VI_FUNC K617_send (char *cmd, int len)
{
iret = ibwrt (gdev, cmd, len);
if (ibsta & ERR) GpibError("OpenDev Error");
switch (K617_Interface){
case 1:
PROLOGIX_Send(cmd);
break;
default:
iret = ibwrt (K617_Gdev, cmd, len);
if (ibsta & ERR) GpibError("OpenDev Error");
}
Delay(GDELAY);
return;
}
91,10 → 120,17
 
int _VI_FUNC K617_receive (char *response, int maxbyt)
{
iret = ibrd (gdev, response, maxbyt);
if (ibsta & ERR) GpibError("OpenDev Error");
response[ibcntl]=0;
return ibcntl;
switch (K617_Interface){
case 1:
PROLOGIX_Send("++read eoi");
return PROLOGIX_Receive (response,maxbyt);
break;
default:
iret = ibrd (K617_Gdev, response, maxbyt);
if (ibsta & ERR) GpibError("OpenDev Error");
response[ibcntl]=0;
return ibcntl;
}
}
 
void _VI_FUNC K617_status (void)
110,7 → 146,9
&K617Stat.vsource_operate,&K617Stat.read_mode,
&K617Stat.data_prefix,&K617Stat.display,
&K617Stat.data_store,&K617Stat.srq,&K617Stat.eoi,K617Stat.terminator);
K617_send ("X", 1);
// printf("617FRRCZNTOBGDQMMKYY\n");
// printf("%s\n",cres);
// K617_send ("X", 1);
return;
}
 
222,9 → 260,15
 
void _VI_FUNC K617_close (void)
{
// iret = CloseDev (gdev);
iret = ibonl(gdev, 0); /* Take the device offline */
if (ibsta & ERR) GpibError("OpenDev Error");
// iret = CloseDev (K617_Gdev);
switch (K617_Interface){
case 1:
PROLOGIX_Close();
break;
default:
iret = ibonl(K617_Gdev, 0);// Take the device offline
if (ibsta & ERR) GpibError("OpenDev Error");
}
return;
}
 
241,31 → 285,33
 
if (InitCVIRTE (hInstance, 0, 0) == 0) return -1; /* out of memory */
K617_open (0, 3, 0, 13);
/*
K617_open (1,5,3,0,13);
K617_clear ();
K617_current_mode (4);
K617_zero_correct (1);
K617_data_format (0);
K617_trigger_mode (0);
K617_trigger_mode (1);
K617_vsource_set (-100.);
K617_vsource_operate (1);
*/
K617_status ();
 
value=K617_get(cres, &i);
K617_status();
 
value=K617_get(cres,&i);
printf("%s, %lg, %d\n",cres,value,i);
value=K617_vsource_get();
printf("%lg\n",value);
value=K617_get(cres,&i);
printf("%s, %lg, %d\n",cres,value,i);
value=K617_get(cres, &i);
value=K617_get(cres,&i);
printf("%s, %lg, %d\n",cres,value,i);
value=K617_get(cres,&i);
printf("%s, %lg, %d\n",cres,value,i);
value=K617_get(cres,&i);
printf("%s, %lg, %d\n",cres,value,i);
Delay(5);
// K617_vsource_operate (0);
K617_vsource_operate (0);
K617_close ();
K617_close();
 
return 0;
}
/cvi/instr/K617/K617.fp
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/cvi/instr/K617/K617.h
1,7 → 1,7
#include <cvidef.h>
#include <ivi.h>
 
#define GDELAY 0.01
#define GDELAY 0.1
 
typedef struct {
int function,range,zero_check,zero_correct,suppress,trigger;
11,8 → 11,8
} K617STATUS;
extern K617STATUS K617Stat;
void _VI_FUNC K617_open (int interface, int primary_addr, int secondary_addr,
int timeout);
void _VI_FUNC K617_open (int interface, int port, int primary_addr,
int secondary_addr, int timeout);
 
void _VI_FUNC K617_clear (void);
 
/cvi/instr/K617/K617.prj
1,168 → 1,444
[Project Header]
Version = 551
Platform Code = 4
Pathname = "/c/MeasurementStudio/cvi/instr/K617/K617.prj"
CVI Dir = "/c/measurementstudio/cvi"
VXIplug&play Framework Dir = "/C/VXIpnp/winnt"
Number of Files = 3
Sort Type = "No Sort"
Version = 1302
Pathname = "/c/home/cvi/instr/K617/K617.prj"
CVI Dir = "/c/program files/national instruments/cvi2013"
CVI Shared Dir = "/C/Program Files/National Instruments/Shared/CVI"
CVI Pub Local Dir = "/C/ProgramData/National Instruments/CVI2013"
CVI Pub Global Dir = "/C/ProgramData/National Instruments/CVI"
IVI Standard Root Dir = "/C/Program Files/IVI Foundation/IVI"
VXIplug&play Framework Dir = "/C/Program Files/IVI Foundation/VISA/winnt"
IVI Standard Root 64-bit Dir = "/C/Program Files/IVI Foundation/IVI"
VXIplug&play Framework 64-bit Dir = "/C/Program Files/IVI Foundation/VISA/win64"
Number of Files = 4
Target Type = "Executable"
Build Configuration = "Debug"
Warn User If Debugging Release = 1
Flags = 16
Drag Bar Left = 136
Window Top = 598
Window Left = 539
Window Bottom = 914
Window Right = 1083
Copied From Locked InstrDrv Directory = False
Copied from VXIPNP Directory = False
Locked InstrDrv Name = ""
Don't Display Deploy InstrDrv Dialog = False
 
[Folders]
User Interface Files Folder Not Added Yet = True
Library Files Folder Not Added Yet = True
Folder 0 = "Source Files"
FolderEx 0 = "Source Files"
Folder 1 = "Instrument Files"
FolderEx 1 = "Instrument Files"
Folder 2 = "Include Files"
FolderEx 2 = "Include Files"
 
[File 0001]
File Type = "CSource"
Path = "/c/MeasurementStudio/cvi/instr/K617/K617.c"
Res Id = 1
Path Is Rel = True
Path Rel To = "Project"
Path Rel Path = "K617.c"
Path = "/c/home/cvi/instr/K617/K617.c"
Exclude = False
Disk Date = 3336716446
Compile Into Object File = False
Project Flags = 0
Compile Into Object File = False
Object Format = "Win32-MSVC"
ForceCompile_Debug = False
ForceCompile_Release = True
Window Top = 147
Window Left = 227
Window Height = 0
Window Width = 0
Source Window State = "1,109,109,109,19,33,19,0,0,88,0,3,0,3,0,47,0,0,30,15,"
Header Dependencies = "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,"
Line Tags = "92,"
Folder = "Source Files"
Folder Id = 0
 
[File 0002]
File Type = "Function Panel"
Path = "/c/MeasurementStudio/cvi/instr/K617/K617.fp"
Res Id = 2
Path Is Rel = True
Path Rel To = "Project"
Path Rel Path = "K617.fp"
Path = "/c/home/cvi/instr/K617/K617.fp"
Exclude = False
Disk Date = 3336715149
Project Flags = 0
Window Top = 0
Window Left = 0
Window Height = 0
Window Width = 0
Folder = "Instrument Files"
Folder Id = 1
 
[File 0003]
File Type = "Include"
Path = "/c/MeasurementStudio/cvi/instr/K617/K617.h"
File Type = "Function Panel"
Res Id = 3
Path Is Rel = True
Path Rel To = "Project"
Path Rel Path = "../PROLOGIX/prologix.fp"
Path = "/c/home/cvi/instr/PROLOGIX/prologix.fp"
Exclude = False
Disk Date = 3336964657
Project Flags = 0
Window Top = 476
Window Left = 581
Window Height = 0
Window Width = 0
Source Window State = "1,15,15,15,14,22,23,0,0,88,0,0,0,0,0,25,0,0,11,87,"
Line Tags = "20,"
Folder = "Instrument Files"
Folder Id = 1
 
[SCC Options]
Use global settings = True
SCC Provider = ""
SCC Project = ""
Local Path = ""
Auxiliary Path = ""
Perform Same Action For .h File As For .uir File = "Ask"
Comment = ""
Username = ""
Use Default Comment = False
Use Default Username = False
Do Not Include PRJ File in Actions = True
Suppress CVI Error Messages = False
[File 0004]
File Type = "Include"
Res Id = 4
Path Is Rel = True
Path Rel To = "Project"
Path Rel Path = "K617.h"
Path = "/c/home/cvi/instr/K617/K617.h"
Exclude = False
Project Flags = 0
Folder = "Include Files"
Folder Id = 2
 
[Custom Build Configs]
Num Custom Build Configs = 0
 
[Default Build Config Debug]
Config Name = "Debug"
Is 64-Bit = False
Is Release = False
Default Calling Convention = "cdecl"
Optimization Level = "No optimizations"
Require Prototypes = True
Show Warning IDs in Build Output = False
Selected Warning Level = "None"
Warning List None = "4,9,84,105,106,107,108,109,110,111"
Warning List Common = ""
Warning List Extended = ""
Warning List All = ""
Warning Mode = 0
Enable Unreferenced Identifiers Warning = False
Enable Pointer Mismatch Warning = False
Enable Unreachable Code Warning = False
Enable Assignment In Conditional Warning = False
Uninitialized Locals Compile Warning = "Aggressive"
Require Return Values = True
Enable C99 Extensions = False
Enable OpenMP Extensions = False
Stack Size = 250000
Stack Reserve = 1048576
Stack Commit = 4096
Image Base Address = 4194304
Image Base Address x64 = 4194304
Compiler Defines = "/DWIN32_LEAN_AND_MEAN /DK617_MAIN"
Sign = False
Sign Store = ""
Sign Certificate = ""
Sign Timestamp URL = ""
Sign URL = ""
Manifest Embed = False
Icon File Is Rel = False
Icon File = ""
Application Title = ""
Use IVI Subdirectories for Import Libraries = False
Use VXIPNP Subdirectories for Import Libraries = False
Use Dflt Import Lib Base Name = True
Where to Copy DLL = "Do not copy"
Custom Directory to Copy DLL Is Rel = False
Custom Directory to Copy DLL = ""
Generate Source Documentation = "None"
Runtime Support = "Full Runtime Support"
Runtime Binding = "Shared"
Embed Project .UIRs = False
Generate Map File = False
Embed Timestamp = True
Create Console Application = False
Using LoadExternalModule = True
DLL Exports = "Include File Symbols"
Register ActiveX Server = False
Numeric File Version = "1,0,0,0"
Numeric Prod Version = "1,0,0,0"
Comments = ""
Comments Ex = ""
Company Name = ""
Company Name Ex = "%company"
File Description = "K617_dbg (Debug x86)"
File Description Ex = "%application (%rel_dbg %arch)"
File Version = "1.0"
File Version Ex = "%f1.%f2"
Internal Name = "K617_dbg"
Internal Name Ex = "%basename"
Legal Copyright = "Copyright © 2017"
Legal Copyright Ex = "Copyright © %company %Y"
Legal Trademarks = ""
Legal Trademarks Ex = ""
Original Filename = "K617_dbg.exe"
Original Filename Ex = "%filename"
Private Build = ""
Private Build Ex = ""
Product Name = " K617_dbg"
Product Name Ex = "%company %application"
Product Version = "1.0"
Product Version Ex = "%p1.%p2"
Special Build = ""
Special Build Ex = ""
Add Type Lib To DLL = False
Include Type Lib Help Links = False
TLB Help Style = "HLP"
Type Lib FP File Is Rel = False
Type Lib FP File = ""
 
[Default Build Config Release]
Config Name = "Release"
Is 64-Bit = False
Is Release = True
Default Calling Convention = "cdecl"
Optimization Level = "No optimizations"
Require Prototypes = True
Show Warning IDs in Build Output = False
Selected Warning Level = "None"
Warning List None = "4,9,84,105,106,107,108,109,110,111"
Warning List Common = ""
Warning List Extended = ""
Warning List All = ""
Warning Mode = 0
Enable Unreferenced Identifiers Warning = False
Enable Pointer Mismatch Warning = False
Enable Unreachable Code Warning = False
Enable Assignment In Conditional Warning = False
Uninitialized Locals Compile Warning = "Aggressive"
Require Return Values = True
Enable C99 Extensions = False
Enable OpenMP Extensions = False
Stack Size = 250000
Stack Reserve = 1048576
Stack Commit = 4096
Image Base Address = 4194304
Image Base Address x64 = 4194304
Compiler Defines = "/DWIN32_LEAN_AND_MEAN /DK617_MAIN"
Sign = False
Sign Store = ""
Sign Certificate = ""
Sign Timestamp URL = ""
Sign URL = ""
Manifest Embed = False
Icon File Is Rel = False
Icon File = ""
Application Title = ""
Use IVI Subdirectories for Import Libraries = False
Use VXIPNP Subdirectories for Import Libraries = False
Use Dflt Import Lib Base Name = True
Where to Copy DLL = "Do not copy"
Custom Directory to Copy DLL Is Rel = False
Custom Directory to Copy DLL = ""
Generate Source Documentation = "None"
Runtime Support = "Full Runtime Support"
Runtime Binding = "Shared"
Embed Project .UIRs = False
Generate Map File = False
Embed Timestamp = True
Create Console Application = False
Using LoadExternalModule = True
DLL Exports = "Include File Symbols"
Register ActiveX Server = False
Add Type Lib To DLL = False
Include Type Lib Help Links = False
TLB Help Style = "HLP"
Type Lib FP File Is Rel = False
Type Lib FP File = ""
 
[Default Build Config Debug64]
Config Name = "Debug64"
Is 64-Bit = True
Is Release = False
Default Calling Convention = "cdecl"
Optimization Level = "No optimizations"
Require Prototypes = True
Show Warning IDs in Build Output = False
Selected Warning Level = "None"
Warning List None = "4,9,84,105,106,107,108,109,110,111"
Warning List Common = ""
Warning List Extended = ""
Warning List All = ""
Warning Mode = 0
Enable Unreferenced Identifiers Warning = False
Enable Pointer Mismatch Warning = False
Enable Unreachable Code Warning = False
Enable Assignment In Conditional Warning = False
Uninitialized Locals Compile Warning = "Aggressive"
Require Return Values = True
Enable C99 Extensions = False
Enable OpenMP Extensions = False
Stack Size = 250000
Stack Reserve = 1048576
Stack Commit = 4096
Image Base Address = 4194304
Image Base Address x64 = 4194304
Compiler Defines = "/DWIN32_LEAN_AND_MEAN /DK617_MAIN"
Sign = False
Sign Store = ""
Sign Certificate = ""
Sign Timestamp URL = ""
Sign URL = ""
Manifest Embed = False
Icon File Is Rel = False
Icon File = ""
Application Title = ""
Use IVI Subdirectories for Import Libraries = False
Use VXIPNP Subdirectories for Import Libraries = False
Use Dflt Import Lib Base Name = True
Where to Copy DLL = "Do not copy"
Custom Directory to Copy DLL Is Rel = False
Custom Directory to Copy DLL = ""
Generate Source Documentation = "None"
Runtime Support = "Full Runtime Support"
Runtime Binding = "Shared"
Embed Project .UIRs = False
Generate Map File = False
Embed Timestamp = True
Create Console Application = False
Using LoadExternalModule = True
DLL Exports = "Include File Symbols"
Register ActiveX Server = False
Add Type Lib To DLL = False
Include Type Lib Help Links = False
TLB Help Style = "HLP"
Type Lib FP File Is Rel = False
Type Lib FP File = ""
 
[Default Build Config Release64]
Config Name = "Release64"
Is 64-Bit = True
Is Release = True
Default Calling Convention = "cdecl"
Optimization Level = "No optimizations"
Require Prototypes = True
Show Warning IDs in Build Output = False
Selected Warning Level = "None"
Warning List None = "4,9,84,105,106,107,108,109,110,111"
Warning List Common = ""
Warning List Extended = ""
Warning List All = ""
Warning Mode = 0
Enable Unreferenced Identifiers Warning = False
Enable Pointer Mismatch Warning = False
Enable Unreachable Code Warning = False
Enable Assignment In Conditional Warning = False
Uninitialized Locals Compile Warning = "Aggressive"
Require Return Values = True
Enable C99 Extensions = False
Enable OpenMP Extensions = False
Stack Size = 250000
Stack Reserve = 1048576
Stack Commit = 4096
Image Base Address = 4194304
Image Base Address x64 = 4194304
Compiler Defines = "/DWIN32_LEAN_AND_MEAN /DK617_MAIN"
Sign = False
Sign Store = ""
Sign Certificate = ""
Sign Timestamp URL = ""
Sign URL = ""
Manifest Embed = False
Icon File Is Rel = False
Icon File = ""
Application Title = ""
Use IVI Subdirectories for Import Libraries = False
Use VXIPNP Subdirectories for Import Libraries = False
Use Dflt Import Lib Base Name = True
Where to Copy DLL = "Do not copy"
Custom Directory to Copy DLL Is Rel = False
Custom Directory to Copy DLL = ""
Generate Source Documentation = "None"
Runtime Support = "Full Runtime Support"
Runtime Binding = "Shared"
Embed Project .UIRs = False
Generate Map File = False
Embed Timestamp = True
Create Console Application = False
Using LoadExternalModule = True
DLL Exports = "Include File Symbols"
Register ActiveX Server = False
Add Type Lib To DLL = False
Include Type Lib Help Links = False
TLB Help Style = "HLP"
Type Lib FP File Is Rel = False
Type Lib FP File = ""
 
[Compiler Options]
Default Calling Convention = "cdecl"
Max Number Of Errors = 10
Require Prototypes = True
Require Return Values = True
Enable Pointer Mismatch Warning = False
Enable Unreachable Code Warning = False
Track Include File Dependencies = True
Prompt For Missing Includes = True
Stop On First Error File = False
Bring Up Err Win For Warnings = True
Show Build Dialog = False
Enable Unreferenced Identifiers Warning = False
Enable Assignment In Conditional Warning = False
O Option Compatible With 5.0 = False
Enable C99 Extensions = False
Uninitialized Locals Compile Warning = "Aggressive"
Precompile Prefix Header = False
Prefix Header File = ""
 
[Run Options]
Stack Size = 250000
Debugging Level = "Standard"
Save Changes Before Running = "Ask"
Break On Library Errors = True
Break On First Chance Exceptions = False
Hide Windows = False
Break At First Statement = False
Stack Commit = 4096
Image Base Address = 4194304
Image Base Address x64 = 4194304
 
[Compiler Defines]
Compiler Defines = "/DWIN32_LEAN_AND_MEAN /DK617_MAIN"
 
[Command Line Args]
Command Line Args = ""
 
[Included Headers]
Header 0024 = "/c/MeasurementStudio/cvi/instr/K617/K617.h"
Header 0001 = "/c/MeasurementStudio/cvi/include/ansi_c.h"
Header 0002 = "/c/MeasurementStudio/cvi/include/cvidef.h"
Header 0003 = "/c/MeasurementStudio/cvi/include/ivi.h"
Header 0004 = "/c/MeasurementStudio/cvi/include/visa.h"
Header 0005 = "/c/MeasurementStudio/cvi/include/ansi/stdarg.h"
Header 0006 = "/c/MeasurementStudio/cvi/include/cvirte.h"
Header 0007 = "/c/MeasurementStudio/cvi/include/visatype.h"
Header 0008 = "/c/MeasurementStudio/cvi/include/ansi/assert.h"
Header 0009 = "/c/MeasurementStudio/cvi/include/utility.h"
Header 0010 = "/c/MeasurementStudio/cvi/include/ansi/limits.h"
Header 0011 = "/c/MeasurementStudio/cvi/include/ansi/locale.h"
Header 0012 = "/c/MeasurementStudio/cvi/include/ansi/ctype.h"
Header 0013 = "/c/MeasurementStudio/cvi/include/ansi/errno.h"
Header 0014 = "/c/MeasurementStudio/cvi/include/ansi/float.h"
Header 0015 = "/c/MeasurementStudio/cvi/include/ansi/signal.h"
Header 0016 = "/c/MeasurementStudio/cvi/include/ansi/stdlib.h"
Header 0017 = "/c/MeasurementStudio/cvi/include/ansi/math.h"
Header 0018 = "/c/MeasurementStudio/cvi/include/ansi/setjmp.h"
Header 0019 = "/c/MeasurementStudio/cvi/include/ansi/string.h"
Header 0020 = "/c/MeasurementStudio/cvi/include/ansi/stddef.h"
Header 0021 = "/c/MeasurementStudio/cvi/include/ansi/stdio.h"
Header 0022 = "/c/MeasurementStudio/cvi/include/ansi/time.h"
Header 0023 = "/c/MeasurementStudio/cvi/include/gpib.h"
Header 0025 = "/c/MeasurementStudio/cvi/include/vpptype.h"
Max Header Number = 25
 
[Create Executable]
Executable File_Debug = "/c/MeasurementStudio/cvi/instr/K617/K617_dbg.exe"
Target Creation Date_Debug = 3336719389
Force Creation of Target_Debug = False
Executable File_Release = ""
Target Creation Date_Release = 0
Force Creation of Target_Release = False
Executable File_Debug Is Rel = True
Executable File_Debug Rel To = "Project"
Executable File_Debug Rel Path = "K617_dbg.exe"
Executable File_Debug = "/c/home/cvi/instr/K617/K617_dbg.exe"
Executable File_Release Is Rel = True
Executable File_Release Rel To = "Project"
Executable File_Release Rel Path = "K617.exe"
Executable File_Release = "/c/home/cvi/instr/K617/K617.exe"
Executable File_Debug64 Is Rel = True
Executable File_Debug64 Rel To = "Project"
Executable File_Debug64 Rel Path = "K617.exe"
Executable File_Debug64 = "/c/home/cvi/instr/K617/K617.exe"
Executable File_Release64 Is Rel = True
Executable File_Release64 Rel To = "Project"
Executable File_Release64 Rel Path = "K617.exe"
Executable File_Release64 = "/c/home/cvi/instr/K617/K617.exe"
Icon File Is Rel = False
Icon File = ""
Application Title = ""
DLL Exports = "Include File Symbols"
DLL Import Library Choice = "Gen Lib For Current Mode"
Use IVI Subdirectories for Import Libraries = False
Use VXIPNP Subdirectories for Import Libraries = False
Use Dflt Import Lib Base Name = True
Where to Copy DLL = "Do not copy"
Custom Directory to Copy DLL Is Rel = False
Custom Directory to Copy DLL = ""
Generate Source Documentation = "None"
Add Type Lib To DLL = False
Include Type Lib Help Links = False
TLB Help Style = "HLP"
Type Lib FP File Is Rel = False
Type Lib FP File = ""
Type Lib Guid = ""
Uses DataSocket = 0
Uses NIReports = 0
Uses DCom95 = 0
Runtime Support = "Full Runtime Support"
Instrument Driver Support Only = False
Embed Project .UIRs = False
Generate Map File = False
 
[External Compiler Support]
UIR Callbacks File Option = 0
Using LoadExternalModule = False
Create Project Symbols File = True
UIR Callbacks Obj File Is Rel = False
UIR Callbacks Obj File = ""
Project Symbols H File Is Rel = False
Project Symbols H File = ""
Project Symbols Obj File Is Rel = False
Project Symbols Obj File = ""
 
[DLL Debugging Support]
External Process Path = ""
[ActiveX Server Options]
Specification File Is Rel = False
Specification File = ""
Source File Is Rel = False
Source File = ""
Include File Is Rel = False
Include File = ""
IDL File Is Rel = False
IDL File = ""
Register ActiveX Server = False
 
[Signing Info]
Sign = False
Sign Debug Build = False
Store = ""
Certificate = ""
Timestamp URL = ""
URL = ""
 
[Manifest Info]
Embed = False
 
[tpcSection]
tpcEnabled = 0
tpcOverrideEnvironment = 0
tpcEnabled x64 = 0
tpcOverrideEnvironment x64 = 0