National Instruments Corporation. Trademarks LabVIEW ® , NI-488.2 ™ , NI-VISA ™ , NI-VXI ™ , and VXIpc ™ are trademarks of National Instruments Corporation. Product and company names listed are trademarks or trade names of their respective companies.
Commander/Servant Hierarchies... 1-4 Interrupts and Asynchronous Events... 1-4 MXIbus Overview ... 1-5 MXI-2 Overview ... 1-5 Chapter 2 Introduction to the NI-VXI Functions Function Groups ... 2-1 VXI/VME Function Groups... 2-1 VXI-Only Function Groups ... 2-3 Calling Syntax ... 2-3 LabWindows/CVI...
Page 5
Header Files... 2-9 The datasize.h File ... 2-9 The busacc.h File ... 2-10 The devinfo.h File... 2-10 The Beginning and End of an NI-VXI Program ... 2-10 System Configuration Tools... 2-11 Word Serial Communication... 2-13 Master Memory Access... 2-14 Slave Memory Access ... 2-16 Interrupts and Signals ...
Page 10
Remote Controllers ... 2-7 Figure 3-1. Preemptive Word Serial Mutual Exclusion (Per Logical Address)... 3-9 Figure 3-2. NI-VXI Servant Word Serial Model ... 3-16 Figure 3-3. NI-VXI Interrupt and Signal Model... 3-39 Figure 3-4. NI-VXI Interrupt and Signal Model... 3-45 Tables Table A-1.
Glossary. NI-VXI User Manual Appendix B, Customer Communication, contains forms you can use to request help from National Instruments or to comment on our manuals. The Glossary contains an alphabetical list and description of terms used in this manual, including abbreviations, acronyms, and metric prefixes.
Customer Communication National Instruments wants to receive your comments on our products and manuals. We are interested in the applications you develop with our products, and we want to help if you have problems with them. To make it easy for you to contact us, this manual contains comment and configuration forms for you to complete.
NI-VXI application programmer’s interface (API). Comprehensive functions for programming the VXIbus/VMEbus are included with the NI-VXI software. They are available for a variety of controller platforms and operating systems. Among the compatible platforms are the National Instruments line of embedded controllers and external computers that have a MXIbus interface.
Chapter 1 Overview of NI-VXI VXI Configuration Space • Upper 16 KB of A16 space reserved for VXI configuration space • 64 bytes per device • 8-bit logical address specifies base address for each device • 256 devices per VXI system...
Chapter 1 Overview of NI-VXI a fashion very similar to IEEE 488 instruments. In general, message-based devices typically contain some level of local intelligence that uses or requires a high level of communication. In addition, the Word Serial Protocol has messages for configuring message-based devices and system resources.
April 1989 as an open industry standard. MXI-2 Overview MXI-2 is the second generation of the National Instruments MXIbus product line. The MXIbus is a general-purpose, 32-bit, multimaster system bus on a cable. MXI-2 expands the number of signals on a...
Page 19
The new synchronous MXI block protocol increases MXI-2 throughput to a maximum of 33 MB/s between two MXI-2 devices. All National Instruments MXI-2 boards are capable of initiating and responding to synchronous MXI block cycles.
This chapter concludes with an overview on using the NI-VXI application programming interface. The NI-VXI functions are a set of C/C++ and BASIC language functions you can use to perform operations with a VXI/VME system. The NI-VXI C/C++ language interface is consistent across hardware platforms and operating systems.
Page 21
Chapter 2 Introduction to the NI-VXI Functions Note: Although signals are defined in the VXI specification, VME customers may still use the signal register available on any VXI/VME/MXI hardware. This register provides a simple notification mechanism that can be used by any bus-master.
Servant Word Serial Protocol Functions—Servant Word Serial functions allow you to communicate with the message-based Commander of the local CPU (the device on which the NI-VXI interface resides) using the Word Serial, Longword Serial, or Extended Longword Serial protocols. These capabilities include command/query handling and buffer reads/writes.
All of the NI-VXI functions described in this manual are completely compatible with LabWindows/CVI. Type Definitions The following data types are used for all parameters in the NI-VXI functions and in the actual NI-VXI library function definitions. NI-VXI uses this list of parameter types as an independent method for specifying data type sizes among the various operating systems and target CPUs of the NI-VXI software interface.
If you have a multiple-mainframe VXI/VME system, please continue with the following sections. If you have a single-mainframe system, you can skip to the Using NI-VXI section later in this chapter. Controllers A controller is a device that is capable of controlling other devices. A...
Chapter 2 Introduction to the NI-VXI Functions In general, a multiple mainframe VXI/VME system will have one of the following controller configurations: Extender Only Embedded Controller NI-VXI User Manual cable connected towards the root frame) in the frame acts as a remote controller.
Remote Controller Controller and Extender The extender and controller Parameters In NI-VXI, some functions require a parameter named extender or controller. Since some extenders act as controllers, there is often confusion concerning what logical addresses should be passed to these functions.
Page 27
Chapter 2 Introduction to the NI-VXI Functions Most functions that take a controller parameter will allow you to pass (-1) as the logical address. This selects the default controller for the system. Notice that the default controller is determined by the following factors: Notice that -1 is never a valid value for the extender parameter.
NI-VXI, the software distribution actually includes several additional header files along with type definitions and macros that can make using NI-VXI easier, and make the code more portable across different platforms. The three main files of interest are The datasize.h File...
NI-VXI interface operational. When other functions can access information obtained by VXIbus Resource Manager, as well as use other NI-VXI features such as interrupt handlers and windows for memory access. The second function destroys this structure and frees the associated memory. All programs using NI-VXI must call other NI-VXI function.
The outcome of all of this is that when exiting a program, you should call number of times that you have called In environments where all applications share NI-VXI, and hence the Caution: internal structure (such as Microsoft Windows), it can be dangerous for any one application to call because this can close out the structure from under another application.
Page 31
Chapter 2 Introduction to the NI-VXI Functions For example, all VXI devices have at least one logical address by which they can be accessed. However, it is simple to change the logical address of most devices. Therefore, any program that uses a constant as a logical address of a particular device can fail if that device is reassigned to a different logical address.
Commander. However, there are times when you want the controller to operate as a Word Serial Servant. NI-VXI allows for the controller to accept Word Serial commands from a Commander. This chapter also different set of functions that a Servant uses for message-based communication with its Commander.
Notice that there is no bus error handler installed by the program (See the Interrupts and Signals section). Instead, the program uses the NI-VXI default bus error handler. This handler automatically increments the C/C++ Example: #include <nivxi.h>...
Chapter 2 Introduction to the NI-VXI Functions On modern, 32-bit operating systems running on high-performance Note: processors (such as Microsoft Windows NT on a Pentium or Solaris 2 on a SPARC), we have found no performance gained by using macros instead of functions.
= CloseVXIlibrary(); Interrupts and Signals In NI-VXI, you can set up your controller to function as both an interrupt handler and an interrupter. You can also have your controller respond to writes to its signal register. Signaling another device requires the high-level or low-level VXI/VMEbus access functions, as discussed earlier.
Page 37
EnableSignalInt() function will be invoked when the event occurs. Installing and using callback handlers is very simple with NI-VXI because all of the operating system interaction is handled for you. The following section of code gives an example of using an callback handler.
The addition of trigger lines to the VMEbus is one improvement the VXIbus has over VME in the field of instrumentation. To take advantage of this feature, NI-VXI has a wide selection of functions you can use to set up your controller to both source and acknowledge trigger lines.
Initializing and closing the NI-VXI software interface, and getting information about devices in the system are among the most important aspects of the NI-VXI software. All applications need to use the system configuration functions at one level or another. When the NI-VXI RM runs, it logs the system configuration information in the RM table file, resman.tbl...
CloseVXIlibrary and disable interrupts. Failure to call when terminating your application can cause CloseVXIlibrary creates a new entry in the dynamic NI-VXI RM table SetDevInfo VXIedit completely initializes the RM table to how the RM CreateDevInfo...
A field value of zero (0) specifies to return a structure containing all possible information about the specified device. GetDevInfoLong (la, field, longvalue) GetDevInfoLong the NI-VXI RM table. The field parameter specifies the attribute of the information to retrieve. GetDevInfo the fieldvalues of fields of the VXI address base and size allocated to the device by the RM.
RM table according to how the RM configured the VXI system. No initial changes are necessary for VXI devices. SetDevInfoLong (la, field, longvalue) SetDevInfoLong the NI-VXI RM table. The field parameter specifies the attribute of the information to change. SetDevInfo the fieldvalues of fields of the VXI address base and size allocated to the device by the RM.
SetDevInfoShort (la, field, shortvalue) SetDevInfoShort the NI-VXI RM table. The field parameter specifies the attribute of the information to change. SetDevInfo the fieldvalues of fields of the Commander’s logical address, mainframe number, slot, manufacturer ID number, model code, device class, VXI address space allocated, VXI interrupt lines/handlers allocated, protocols supported, and so on.
Page 44
WR Violation. After the Servant asserts the ERR* bit, the application can determine the actual error that occurred by sending a Read Protocol Error query to the Servant. The NI-VXI Word Serial functions query the Servant automatically and return the appropriate error codes to the caller, at which time the Servant deasserts the ERR* bit.
16-bit transfers of the Word Serial Protocol. The VXIbus specification, however, provides no common command usages for these protocols. The commands are either VXI Reserved or User-Defined. The NI-VXI interface gives you the ability to send any one of these commands. Programming Considerations The Commander Word Serial functions provide a flexible, easy-to-use interface.
Unrecognized Command events from a device. When an Unrecognized Command event is received by the NI-VXI interrupt or Signal interrupt handler, Word Serial command transfer in progress that caused the generation of the Unrecognized Command event.
Serial commands Byte Available (BAV), Byte Request (BREQ), Trigger, or Clear. All of these Word Serial commands require different Response register polling techniques. NI-VXI User Manual aborts the Commander Word Serial operation(s) in progress operation aborts read, write, and trigger operations...
WSresp (la, response) WSresp query from a VXI message-based Servant. This function is intended only for debugging purposes. Note: NI-VXI User Manual WSLcmd WSLresp polls the RR bit before reading the response from WSLresp is the word serial buffer read function.
VXI message-based devices within the VXI Commander/Servant hierarchy. The local CPU (the CPU on which the NI-VXI functions are running) uses the Servant Word Serial functions to perform VXI message-based Servant Word Serial communication with its Commander. These functions are needed only in the case where the local CPU is not a top-level Commander (probably not the Resource Manager), such as in a multiple CPU situation.
Word Serial Protocol. The VXI specification, however, provides no common command usages for these protocols. The commands are either VXI Reserved or User-Defined. The NI-VXI interface gives you the ability to receive and process any one of these commands. Programming Considerations Most of the Servant Word Serial functions require an interrupt handler.
Local VXI Communication Registers Write Data Read Data High High Read Command WSS? WSSL? WSSE? WSSsendResp() WSSLsendResp() WSSrdHandler WSScmdHandler SetWSScmdHandler() GetWSScmdHandler() DefaultWSScmdHandler() Figure 3-2. NI-VXI Servant Word Serial Model 3-16 Response ERR* RespProtError() WSSnoResp() WSSLnoResp() ERROR GenProtError() WSSLcmdHandler WSSEcmdHandler SetWSSLcmdHandler() SetWSSLcmdHandler() GetWSSLcmdHandler()
DefaultWSScmdHandler (cmd) DefaultWSScmdHandler interrupt, which initializes the NI-VXI software. The current whenever the local CPU Commander sends any Word Serial Protocol command or query (other than BAV or BREQ). While Word Serial operations are enabled, the time a Word Serial command is received (other than BAV if a...
WSSrdDoneCount use the DefaultWSSwrtHandler (status, count) DefaultWSSwrtHandler interrupt, which initializes the NI-VXI software. When count or an error occurs, it calls the status of the call. The default handler sets the global variables WSSwrtDone use the variable Afterwards, you can inspect...
NI-VXI software. InitVXIlibrary replaces the current WSSrd InitVXIlibrary replaces the current WSSwrt WSSwrt automatically installs a default handler, InitVXIlibrary , when it initializes the NI-VXI software. 3-20 interrupt handler WSSEcmd is called. InitVXIlibrary interrupt handler WSSLcmd DefaultWSSLcmdHandler interrupt handler with...
Word Serial command to the Data Low register or reading a response from the Data Low register. By default, the Servant Word Serial functions are disabled. At any time after initializes the NI-VXI software, you can call processing of Servant Word Serial commands and queries. WSSLnoResp () WSSLnoResp Longword Serial commands.
DOR to prevent another BREQ from being sent before the application is able to handle the BREQ properly. NI-VXI User Manual sets the WR bit so that it is ready to accept any further WSScmd after processing a Word Serial command (it calls for a Word Serial query, which requires a response).
VXI/VMEbus addresses. These are required in many situations, including the following: Low-level and high-level access to the VXI/VMEbus, as the NI-VXI interface defines them, are very similar. Both sets of functions can perform direct reads of and writes to any VXI/VMEbus address space with any privilege state or byte order.
The srcaddr and destaddr parameters specify the offset within the particular NI-VXI User Manual reads a single byte, word, or longword from a particular reads a single 16-bit value from a particular VXI device’s traps the bus error condition and indicates the error through .
Some of the situations that require direct reads and writes to the different VXI/VMEbus address spaces include the following: Low-level and high-level access to the VXI/VMEbus, as the NI-VXI interface defines them, are very similar in nature. Both sets of functions can perform direct reads of and writes to any VXI/VMEbus address space with any privilege state or byte order.
NI-VXI uses a term within this chapter called the hardware (or window) context. The hardware context for window to VXI/VME consists of the VXI/VME address space being accessed, the base offset into the address space, the access privilege, and the byte order for the accesses through the window.
Access-Only Privilege A process can obtain Access-Only Privilege by requesting access-only privileges in the NI-VXI User Manual MapVXIAddress SetByteOrder function can change the settings of the MapVXIAddress call (via the accessparms parameter).
You can use this function for simple polled operations. NI-VXI User Manual retrieves the byte/word order of data transferred into retrieves all of the hardware interface settings (context)
VXI/VME address spaces (obtained from making a window (and possibly calls to you can call SetContext NI-VXI User Manual sets the size for mapping user windows. The will attempt to map a window of MapVXIAddress MapVXIAddressSize MapVXIAddress MapVXIAddress function.
Local Resource Access Functions Local resources are hardware and/or software capabilities that are reserved for the local CPU (the CPU on which the NI-VXI interface resides). You can use these functions to gain access to miscellaneous local resources such as the local CPU register set and the local CPU Shared RAM.
Signal register generates a local CPU interrupt, and the local CPU then acquires the signal value in some device-specific manner. All National Instruments hardware platforms have a hardware FIFO to accumulate signal values while waiting for the local CPU to retrieve them.
Page 75
8 bits are device dependent. Consult your device manual for definitions of these values. Two methods are available to handle VXI signals under the NI-VXI software interface. Signals can be handled either by calling a handler or by queuing on a global signal queue.
If the signals were routed to the Unrecognized Command Events from message-based devices perform no operation. Unrecognized Command Events call the function WSabort NI-VXI User Manual is called to inhibit more signals DisableSignalInt , the DisableSignalInt DefaultSignalHandler to abort the current Word Serial operation in progress.
Figure 3-3 provides a graphical overview of the NI-VXI interrupt and signal functions. Hardware VXI/VME Interrupts 1-7 Get Status/Id VXIintAcknowledgeMode() EnableVXIint() RouteVXIint() DisableVXIint() NI-VXI Software User VXIintHandlers (1 per VXI/VME interrupt level) ISRs SetVXIintHandler() GetVXIintHandler() User DefaultVXIintHandler() Application WaitForSignal Considerations...
EnableSignalInt begin the reception of signals. Calls to SetSignalHandler enabled to guarantee proper signal routing of the first signals. NI-VXI User Manual is the sample handler for VXI signals that function is called for every InitVXIlibrary to abort the current Word Serial transfer in...
A multitasking operating system lets you have any number of WaitForSignal permits only one pending NI-VXI User Manual retrieves signals from the global signal queue. Two function specifies which types of signals should be to selectively dequeue a signal off of the SignalDeq places signals at the end of the global signal queue.
However, because VME interrupters may be present in a VXI system, the VXI/VME interrupt handler functions are included with the NI-VXI software. The the status/ID value should be handled as a signal or handled by a VXI/VME interrupt handler. Two methods are available to handle VXI signals.
Page 82
AcknowledgeVXIint interrupts that the local CPU is not enabled to automatically handle NI-VXI User Manual DefaultSignalHandler is called from the application for every VXI InitVXIlibrary function to selectively return a signal off a global signal WaitForSignal calls can be pending.
DeAssertVXIint debugging purposes. Programming Considerations Figure 3-4 is a graphical overview of the NI-VXI interrupt and signal model. Hardware VXI/VME Interrupts 1-7 Get Status/Id VXIintAcknowledgeMode() EnableVXIint() RouteVXIint() DisableVXIint() NI-VXI Software User VXIintHandlers (1 per VXI/VME interrupt level) ISRs SetVXIintHandler() GetVXIintHandler()
VXI/VME interrupts or as VXI signals (the default is VXI signals). You must then call as VXI/VME interrupts (not as VXI signals). A -1 (negative one) or local logical address in the controller parameter specifies the local NI-VXI User Manual sets the global variables VXIintLevel SetVXIintHandler...
After device-specific interaction has caused the deassertion of the interrupt on the backplane, your application must call VXI/VME interrupt level. NI-VXI User Manual function specifies which types of signals RouteSignal EnableVXItoSignalInt RouteVXIint...
You can use these protocols in any way that your application requires. You can use them for device synchronization, for stepping through tests, or for a command path. The NI-VXI trigger functions have been designed to accommodate all trigger lines and the protocols for all appropriate TTL and ECL VXI trigger lines (SYNC, ASYNC, SEMI-SYNC, START/STOP, and ON/OFF).
VXI-MXI-1 and VXI-MXI-2 controllers that are configured for extender only (that is, not extending controllers), as well as external MXI-1 controllers, do not have trigger functionality. See the section, Multiple Mainframe Support, in Chapter 2, Introduction to the NI-VXI Functions, for more information. External Controller/VXI-MXI-1 Trigger...
Triggering with NI-VXI. Acceptor Trigger Functions The NI-VXI acceptor trigger functions act as a standard interface for sensing (accepting) TTL and ECL triggers, as well as for sending acknowledgments back to the sourcing device. These functions can sense any of the VXI-defined trigger protocols on the local embedded controller or external extended controller(s).
The current handler is invoked regardless of whether WaitForTrig Map Trigger Functions You can use the NI-VXI map trigger functions as configuration tools for multiframe and local support for VXI triggers. You can configure the triggering hardware to route specified source trigger locations to...
Source Trigger Functions The NI-VXI source trigger functions act as a standard interface for asserting (sourcing) TTL and ECL triggers, as well as for detecting acknowledgments from accepting devices. These functions can source any of the VXI-defined trigger protocols from the local embedded controller or external extended controller(s).
Chapter 3 Software Overview Trigger Configuration Functions You can use the NI-VXI trigger configuration functions to configure not only the general settings of the trigger inputs and outputs, but also the TIC counter and tick timers. TrigAssertConfig (controller, trigline, mode) TrigAssertConfig for the TTL/ECL triggers.
Sysreset, Bus Error, and/or Soft Reset interrupts. The NI-VXI software interface can handle all of these system conditions for the application through the use of callback routines. The NI-VXI software handles all system interrupt handlers in the same manner. Each type of interrupt...
DefaultBusErrorHandler exception, and is installed as a default handler when initializes the NI-VXI software. During an access to the VXI/VMEbus, the BERR* signal (bus error) is asserted to end the bus cycle if the address or mode of access is determined to be invalid. The bus error exception condition generates an exception on the local CPU, which can be trapped by the bus error handler.
DefaultSoftResetHandler () DefaultSoftResetHandler interrupt, and is installed as a default handler when initializes the NI-VXI software. It increments the global variable SoftResetRecv the local CPU is written, the VXI interface (if an embedded CPU) and the VXI register sets are reset (VXI logical address and address base are retained).
Chapter 3 Software Overview DefaultSysresetHandler (controller) DefaultSysresetHandler interrupt, and is installed as a default handler when initializes the NI-VXI software. It increments the global variable SysresetRecv DisableACfail (controller) DisableACfail embedded controller or extended controller(s) ACfail conditions (dependent on the hardware platform). The VXI/VMEbus specification allows for a minimum amount of time after a power failure condition occurs for the system to remain operational.
The automatically installs a default handler, when it initializes the NI-VXI software. It increments the global variable corresponding enable and disable function is not possible.
NI-VXI software. InitVXIlibrary returns the address of the current Sysreset InitVXIlibrary DefaultSysresetHandler replaces the current ACfail interrupt handler with , when it initializes the NI-VXI software. EnableACfail replaces the current bus error interrupt handler 3-65 Chapter 3 Software Overview...
SetSysresetHandler (func) SetSysresetHandler handler with an alternate handler. The automatically installs a default handler, when it initializes the NI-VXI software. Your application must then call interrupts to the local CPU. NI-VXI User Manual , when it initializes the NI-VXI software.
The VXI/VMEbus extender functions are used to dynamically change the default RM settings if the application has such a requirement. Usually, the application never needs to change the default settings. Consult your utilities manual on how to use the NI-VXI resource editor utility, either default extender settings.
Chapter 3 Software Overview you can use mapping. The NI-VXI Resource Manager automatically configures a default mapping based on the user-modifiable configuration files. The MapTTLtrig mapping. Only special circumstances should require any changes to the default configuration. MapUtilBus (extender, modes)
Reference This appendix contains two tables you can use as a quick reference. Table A-1, Function Listing by Group, lists the NI-VXI functions by their group association. This arrangement can help you determine easily which functions are available within each group. Table A-2, Function Listing by Name, lists each function alphabetically.
Page 114
EnableACfail EnableSignalInt EnableSoftReset EnableSysfail EnableSysreset EnableTrigSense EnableVXIint EnableVXItoSignalInt FindDevLA GenProtError GetACfailHandler GetBusErrorHandler GetByteOrder NI-VXI User Manual Table A-2. Function Listing by Name Group System Interrupt Handler VXI Signal System Interrupt Handler System Interrupt Handler System Interrupt Handler Triggers VXI/VME Interrupt...
Electronic Services Bulletin Board Support National Instruments has BBS and FTP sites dedicated for 24-hour support with a collection of files and documents to answer most common customer questions. From these sites, you can also download the latest instrument drivers, updates, and example programs. For recorded instructions on how to use the bulletin board and FTP services and for BBS automated information, call (512) 795-6990.
Telephone and Fax Support National Instruments has branch offices all over the world. Use the list below to find the technical support number for your country. If there is no National Instruments office in your country, contact the source from which you purchased your software to obtain support.
National Instruments for technical support helps our applications engineers answer your questions more efficiently. If you are using any National Instruments hardware or software products related to this problem, include the configuration forms from their user manuals. Include additional pages if necessary.
Documentation Comment Form National Instruments encourages you to comment on the documentation supplied with our products. This information helps us provide quality products to meet your needs. Title: NI-VXI™ User Manual Edition Date: July 1996 Part Number: 371702A-01 Please comment on the completeness, clarity, and organization of the manual.
Page 127
VXI chassis, a VXI-MXI, and a VME-MXI may all be controllers depending on the configuration of the VXI system. Carriage Return; the ASCII character 0Dh. NI-VXI User Manual In Word Serial Protocol, a 16-bit imperative to a servant from its Commander (written to the Data Low register);...
Page 133
Glossary NI-VXI The National Instruments bus interface software for VME/VXIbus systems. nonprivileged access One of the defined types of VMEbus data transfers; indicated by certain address modifier codes. Each of the defined VMEbus address spaces has a defined nonprivileged access mode.
VXI interrupts, indicating that a Servant has a need for service. resman The name of the National Instruments Resource Manager application in the NI-VXI bus interface software. See Resource Manager. Resource Manager A message-based Commander located at Logical Address 0, which...
Page 137
Servant has a Commander. A Commander can in turn be a Servant to another Commander. Trigger Interface Chip; a proprietary National Instruments ASIC used for direct access to the VXI trigger lines. The TIC contains a 16-bit counter, a dual 5-bit tick timer, and a full crosspoint switch.
Page 138
VXI Interactive Control program, a part of the NI-VXI bus interface software package. Used to program VXI devices, and develop and debug VXI application programs. Called VICtext when used on text- based platforms. Versa Module Eurocard or IEEE 1014 VMEbus Class device Also called non-VXIbus or foreign devices when found in VXIbus systems.
Page 140
Index callback handlers handling signals or interrupts, 2-18 system-dependent behavior (note), 2-19 CloseVXIlibrary function description, 3-2 requirements for NI-VXI programs, 2-10 to 2-11 Commander/Servant hierarchies, 1-4 Commander Word Serial communication Extended Longword Serial Protocol, 3-7 Longword Serial Protocol, 3-7 overview, 2-13, 3-5 to 3-7...
Page 142
MXI-2 (figure), 2-7 fax and telephone support, B-2 FaxBack support, B-2 FindDevLA function, 3-2 FTP support, B-1 functions. See NI-VXI functions; specific groups of functions. GenProtError function, 3-18 GetACfailHandler function, 3-64 GetBusErrorHandler function, 3-64 GetByteOrder function, 3-30...
Page 143
GetWindowRange, 3-31 MapVXIAddress, 3-28, 3-29, 3-31 MapVXIAddressSize, 3-32 multiple-pointer access for window, 3-28 to 3-29 Access-Only Privilege, 3-28 to 3-29 NI-VXI User Manual Owner Privilege, 3-28 overview, 2-2, 3-26 to 3-27 programming considerations, 3-27 SetByteOrder, 3-32 SetContext, 3-32 SetPrivilege, 3-33...
Page 144
2-14 to 2-16 slave memory access, 2-16 to 2-17 system configuration tools, 2-11 to 2-12 triggers, 2-19 Word Serial communication, 2-13 NI-VXI functions. See also specific groups of functions. alphabetical list, A-9 to A-14 calling syntax, 2-3 classification reference, A-1 to A-7...
Page 145
Word Serial Protocol, 3-14 Servant Word Serial Protocol functions alphabetical list (table), A-2 to A-3 DefaultWSScmdHandler, 3-17 DefaultWSSEcmdHandler, 3-17 DefaultWSSLcmdHandler, 3-17 to 3-18 DefaultWSSrdHandler, 3-18 NI-VXI User Manual DefaultWSSwrtHandler, 3-18 GenProtError, 3-18 GetWSScmdHandler, 3-18 GetWSSEcmdHandler, 3-19 GetWSSLcmdHandler, 3-19 GetWSSrdHandler, 3-19...
Need help?
Do you have a question about the NI-VXI and is the answer not in the manual?
Questions and answers