Can I implement a stack in LabVIEW?

As a company, I would like to emulate a microcontroller LC3 in LabVIEW. The memory card is like so:

It has a 16-bit word size and is addressable 16 bits. Is this possible?

Of course, it is - use a wide range of U16. In LabVIEW table indices are 32 bit, so you shouldn't have a problem with the 16-bit addresses, treated as an array index.

Tags: NI Software

Similar Questions

  • Can I implement read receipt on an SMS for only 1 person in particular?

    Can I implement read receipt on an SMS for only 1 person in particular?

    The iPhone does not support reading for SMS confirmations. If it's an iMessage, the receiver must have their device configured to send read receipts. Here goes back to Apple. http://www.Apple.com/feedback and click on the box in this area.

  • Can I get a "schedule" of labview makes when it runs the program?

    Can I get a "schedule" of labview makes when it runs the program? that is how long it spends making each sub vi, and what order it's them.

    See you soon

    The execution Trace Tool kit is an add-on. If you do not your package of discs... maybe try a demo version?

    Spy OR get loaded with BT (or one of these things).

    Start > programs > National instruments > NI Spy?

    Ben

  • I use systec usbmodule1 to send and receive messages CAN one have tried this in labview?, if so can you send me the code please

    I use systec usbmodule1 to send and receive messages CAN one have tried this in labview?, if so can you send me the code

    Thank you

    Hey,.

    All our drivers CAN have been written for CAN of National Instruments hardware (referenced here: http://digital.ni.com/public.nsf/allkb/E2C6ED025C798C5586256F4E00520448 ). So, you will need to manually, code all your communications unless Systec provides a LabVIEW driver. There could be several dll files Systec provides for communication, which you will be able to access through LabVIEW. Take a look at the node of library function call, which is in the range of functions under connectivity-> libraries & executables. Here, you can call a dll file, as well as the different functions in this dll.

    I suggest posting your question either on the forum of LabVIEW, as mentioned previously, or on the forum CAN found here: http://forums.ni.com/ni/board?board.id=30

  • Can Excel launch an executable of Labview?

    Hi all:

    Can Excel launch an executable of Labview?

    I would like to open an Excel file, fill data in Sheet1

    and then press a button on the worksheet "Sheet1" Excel.

    By pressing this button, it will start to run an executable of Labview.

    Thank you all,.

    \\carlos in Sunnyvale, CA

    An executable of LabVIEW is an executable file like any other executable file. As long as the LabVIEW run-time engine is installed, you can call in an Excel macro using the Shell() command as calling Shell (executable).

    (EDIT: clicked Post until I had finished it)

    OR, you try to call using ActiveX with LabVIEW as an ActiveX Server?

  • How can I fix overflo stack to line 15

    I have Windows XP Service Pack 3. How can I fix a stack of overflo on line 15 error?  I don't know much about computers. I have a laptop.

    "Stack overflow" is a sign of a badly written request.  What do you do when this error?

  • Can I implement folders to organize my emails I've done in outlook?

    implementation of e-mail records

    Can I implement folders to organize my emails I've done in outlook?

    Hey Eduardo Loma.

    I'm sorry, but the Windows Mail application allows currently to add and remove folders. However, you should be able to accomplish this task using the web interface to your e-mail account (for example Outlook.com)

    -Chris

  • How can I implement a membership plan monthly to plan creative photography of Cloud? (no annual contract)

    How can I implement a membership plan to the month for "Plan of creative photography of cloud"? (no annual contract)

    Hello

    Unfortunately, the month plan for creative photography of cloud plan is not available.

    For a list of products and plans, you can see the link below.

    Pricing plans and creative Cloud membership | Adobe Creative Cloud

    Hope this will help you.

    Concerning

    Hervé Khare

  • Can I implement a search feature in Muse

    Can I implement a search feature in Muse

    Here you will find similar topics:

    https://forums.Adobe.com/message/6114356

    https://forums.Adobe.com/thread/1484909

    http://www.Muse-themes.com/blogs/News/7722357-Embedding-a-Search-Bar-in-Adobe-Muse-Google-custom search

    Thank you

    Sanjit

  • How can I implement a comfirmation window when closing the javafx applications?

    Hi, guys
    I would add a confirmation window when the user closes my javafx application, if the user clicks Yes, I close the application, so no, I wouldn't close it, how can I implement this feature?
     
    primaryStage.setOnCloseRequest(new EventHandler<WindowEvent>(){
    
                   @Override
                   public void handle(WindowEvent arg0) {
                        try
                        {
                             //todo
                        }
                        catch(Exception ex)
                        {
                             System.out.print(ex.getMessage()+"\r\n");
                        }
    
                   }
            });

    Hello. Here is an example:

    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Pos;
    import javafx.stage.*;
    import javafx.scene.*;
    import javafx.scene.paint.Color;
    import javafx.scene.layout.*;
    import javafx.scene.control.*;
    
    public class ModalDialog {
    
        public ModalDialog(final Stage stg) {
         final Stage stage = new Stage();
            //Initialize the Stage with type of modal
            stage.initModality(Modality.APPLICATION_MODAL);
            //Set the owner of the Stage
            stage.initOwner(stg);
            Group group =  new Group();
            HBox hb = new HBox();
             hb.setSpacing(20);
            hb.setAlignment(Pos.CENTER);
            Label label = new Label("You are about to close \n your application: ");
            Button no  = new Button("No");
    
            no.setOnAction(new EventHandler() {
    
                public void handle(ActionEvent event) {
                       stage.hide();
                }
            });
            Button yes  = new Button("Yes");
            yes.setOnAction(new EventHandler() {
    
                public void handle(ActionEvent event) {
                       stg.close();
                }
            });
    
             hb.getChildren().addAll(yes, no);
             VBox vb =  new VBox();
             vb.setSpacing(20);
             vb.setAlignment(Pos.CENTER);
             vb.getChildren().addAll(label,hb);
            stage.setTitle("Closing ...");
            stage.setScene(new Scene( vb, 260, 110, Color.LIGHTCYAN));
            stage.show();
    
        }
    
    }
    

    Test:

       import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.*;
    
    /**
     *
     * @author Shakir
     */
    public class ModalTest extends Application {
    
        /**
         * @param args the command line arguments
         */
        public static void main(String[] args) {
            Application.launch(ModalTest.class, args);
        }
    
        @Override
        public void start(final Stage primaryStage) {
            primaryStage.setTitle("Hello World");
            Group root = new Group();
            Scene scene = new Scene(root, 300, 250, Color.LIGHTGREEN);
    
           primaryStage.setOnCloseRequest(new EventHandler(){
    
                   @Override
                   public void handle(WindowEvent arg0) {
                                    arg0.consume();
                        try
                        {
                         ModalDialog md = new ModalDialog(primaryStage);
                                    }
                        catch(Exception ex)
                        {
                             System.out.print(ex.getMessage()+"\r\n");
                        }
    
                   }
            });
    
            primaryStage.setScene(scene);
            primaryStage.show();
        }
    }
    
  • Question: can we implement 80column report through BI Publisher

    a report with 80 odd columns can be implemented by BI Publisher? We could go back the database data, but those capable by RTF model.
    is there a limitation for RTF model columns?

    If you are using another format of model, there is no limit, but if you use it, RTF, you have.

  • How can I implement fftshift in LabVIEW

    How to implement fftshift in my program. ?

    So basically, I have a double-sided fft, and I want to be moved in order to have zero frequencies, like the image of matlab below.


  • Implement pickits.dll in LabVIEW

    Hello

    I have problems with the pickits.dll chips. I want to implement the dll file in Labview and communicate with a material called Analyzer series of LIN of microchip.

    When I run my Labview VI, it cannot communicate with the device.

    It comes to my composition in Labview that does not work.

    This composition is created on an OS WIN7/64 bit and a system 32-bit/WIN XP. The two does not work.

    The Analyzer is run with the chip Network Analyzer(64bit) demo application.

    I downloaded the LIN Serial Analyzer Update v2.05 (64-bit) of the homepage of the electronic chip and with this application, it works.

    The pickitS.dll works inside LabView correct. When I run the Prototype of the "Get_PickitS_DLL_Version" function, it returns the correct Version of the DLL.

    Is my composition in LabView, right?

    Any that work with the Analyzer series of LINEN or similar devices of microchip?

    concerning

    Hello

    I solved the problem. For initialization of the FLAX series Analyzer, you have to take the ' base' constructor and the 'Initialize_MyDevice' method with the parameters USBIndex = 0 and ProductID = 0xA04. With this basic adjustment, you can initialize the device. Then you must set the baudrate of 19200 for Bus LIN.

    Feel free to ask me if you have problems with your device.

  • Protocol Bluetooth Stack in LabVIEW

    Hello

    What I'm trying to do is to use LabVIEW on a PC with an attached Bluetooth dongle to talk to an owner designed Bluetooth device to connect with Bluetooth phones. I need the program to send some commands to the patented device, disconnect, then connect and talk to another device. The patented device that I want to connect is essentially just a server waiting for a cell phone to communicate with her. Once connected, garbage are exchanged between the phone and the device, and once authenticated, the Unit completed its function.

    I've tested my Bluetooth dongle using the Simple Bluetooth Client.VI and the Simple Server.VI of Bluetooth running on two different PCs. They have been able to connect and transfer data properly.

    My question arises, however, in LabVIEW allows you to specify a channel to connect via Bluetooth. The device patented essentially being a dumb device, she wants to follow the typical Bluetooth Stack Protocol and start once paired frequency hopping. He will not be able to devote himself to a single channel and frequency with the computer of pigs.

    So I want to know is how LabVIEW treats the Protocol. The string that you specify in the VI Bluetooth actually affects the Protocol or that's just the way it communicates with the Bluetooth dongle? I have just need to know if LabVIEW supports already the Bluetooth protocol, or if there is a way around a dedicated channel. I want the computer to display and behave like a mobile devices view.

    I read through several of the NOR tutorials, examples and discussion forums, but I couldn't find answers to my question. I could be missing something simple or easy here, but I want to assure you that it is still possible to achieve before I start to develop the code.

    What I use:

    LabView Full 2012

    IOGear Bluetooth 2.1 USB Micro adapter

    I must admit that I'm not the most technically savvy person when it comes to Bluetooth stacks and protocols, so please excuse mistakes with technical information, I could have. I must, however, work colleagues who are very experienced in Bluetooth (but not in LabVIEW), worry is not on the level of technical language that you use.

    Thank you for your considerations in my problem. Do not hesitate to ask others (within limits reasonable owner) or clarification.

    Kind regards

    Bronson

    bronsonmock,

    The screws of LabVIEW Bluetooth and functions use RFCOMM, which is a connection protocol that exposes the Winsock interface. RFCOMM is a simple protocol that emulates communication series. The RFCOMM interface defines the clients and servers of Bluetooth.

    Creating client applications and server Bluetooth in LabVIEW is similar to creating applications server and client for TCP communication. A Bluetooth Server uses the Protocol for discovery of Service (SDP) to broadcast the availability of the services on the server contains and listens to incoming connections. A client creates an outgoing RFCOMM connection to a server. Once the client and server connect to each other, they exchange data until the client or the server terminates the connection or the connection is lost.

    Bluetooth of LabVIEW functions are really just a wrapper for the Windows bluetooth library functions. You can take a look and see how these protocols are processed to a lower level comprehension. I've also included this document where I shot the first two bits of information.

    Use of LabVIEW with wireless devices:

    http://zone.NI.com/reference/en-XX/help/371361J-01/lvconcepts/using_lv_with_wireless/

  • Implementing an IVI in labview

    Hello

    I recently created a new IVI driver for a card of NOR-Fgen 5412 max. I'm not sure of the implementation of this driver in labview, however. Can someone point me in the right direction?

    Thank you

    Eric

    If you have configured MAX for the driver AND then use the IVI function generator class driver on the Instrument of e/s palette.

Maybe you are looking for