How the table is written with the digital I/o card

Hi, sort again at the sight of lab but I'm looking at some old lab view code that has an array of integers 8 bits with 8 values inside that is connected to a DIO VI writing.  Is just a few questions, there a way to know if writing DIO VI is a view lab Vi or VI created by a user? Also the DIO is the NI PCI-6533, 32-bit card and there is the array of 8-bit integers has 8 elements inside it would be the the map first write the first 4 elements at the same time (first element of bits 0-7, bits 8 to 15 seconds, ect) and then the last 4 items in the table or would be writing DIO VI will have to run twice once for the first 4 values and, once again, for the last 4?

Thank you

Hello

use a non sequential ring with values...

Display photos or even better the actual code would help greatly to give good advice! At the moment we can only guess, what you're talking about...

Tags: NI Software

Similar Questions

  • How to find end rowa with 1 digital duplicates in a table

    Hello world

    I have a customer requirement to get the records in a table that are end with the digital 1.

    Few of the user accounts, added with a '1' at the end of their normal user IDs. Everything by making some process in-house, the system has created a new account with the '1' appended to the end.

    So I need a query to correctly identify these users.

    Here is the sample records:

    PK1 userid name lastname email

    1 AAA Jack smith j.smith@a

    2 AAA1 Jack smith j.smith@a

    3 BBB Scott S s.scott@a

    4 BBB1 Scott S s.scott@a

    Note: name and email id and name are the same

    Of the above, I need to get the records of AAA1 and BBB1.

    My output should be like below

    AAA1 2 Jack

    4 Scott BBB1

    Please help me on this.

    Thanks in advance.

    Hello

    One way to do that is to add a condition EXISTS to the above:

    SELECT pk1, userid, name

    From your_table m

    WHERE SUBSTR (userid,-1) = "1" - or userid WHERE AS '%1 '.

    AND THERE ARE)

    SELECT 1

    From your_table

    WHERE userid | '1' = m.userid

    AND name = $m.name

    AND lastname = m.lastname

    AND email = m.email

    )

    ;

  • How to change the input range (DAQ assistant) with a digital command?

    Hello everyone

    I am currently working with the NI USB-6218 acquisition card.

    In order to acquire a signal, I would like to be able to choose the input range of the DAQ with a digital command Wizard (and not opening the window of DAQ assistant) (as 'number of sample' and section 'rate'...)

    Is this possible and if so, how?

    Thank you very much in advance for your answers!

    You can't with the DAQ Assistant so just click on and select "generate the Code of OR-DAQmx. You can edit the Subvi who performs the installation.

  • How to concatenate the string with a digital command?

    Hello

    How to concatenate the string with a digital command?

    Thank you.

    I think I forgot to add the semicolon, what you can do is, drag the CONCATENATE function and add semicolon.

  • How can I measure the length of the lines written with the Paint program?

    I know that an earlier version of the painting software was able to measure the length of the lines written with the Paint program.   I don't know what version it was.   I have the Windows 7 Home Premium Version 6/1 (Build 7601 Service Pack 1, Copywright@2009.  How can I measure the length of the lines that I have the project using paint software?   Do I need to get the previous version?   How can I get?   PLEASE ANSWER!

    Hi Ralph,

    The description of the problem seems a little unclear and I wish I had a better understanding before you start working on it. I would really appreciate if you could answer the following questions:

    1. What is the name of the paint program?

    2 have you tried to install the software of paint in Windows 7?

    3. are you able to install it? If this is not the case, do you have an error code or message?

    4. in what version of Windows was fine paint software work?

    Please provide us with more information on the specific question to help you to fix as soon as possible.

    Your response is very important for us to ensure a proper resolution. Please get back to us with the information above to help you accordingly.

  • How to reduce the height of a table which is with PanelCollection and pc will find panelbox and pb is panelgridlayout and pgl is at the center of tableFirstTemplate?

    Mr President.

    How to reduce the height of a table which is with PanelCollection and pc will find panelbox and pb is panelgridlayout and pgl is at the center of tableFirstTemplate?

    Concerning

    Normally at the height of the table control you need property autoheightRows -1 and then set height in the table like this inlinestyle

    height: 300px;

  • Manual large editions with sensitive html setting. Is there a way to determine how the entries appear in the table of contents?

    I publish major textbooks with sensitive html setting. Is there a way to determine how the entries appear in the table of contents? If I publish a small section of the manual then 2nd level entries appear as eruptions under the chapter name, but if I publish the manual in its entirety then level 2 headings are not at all. I would like them to appear as the eruptions in the table of contents, but I need to publish the manual as a whole in order to keep the cross references. Any help will be greatly appreciated!

    I think that this would make clearer - and it would skip and tables of contents of books under.

  • How the parameter of the procedure with the default table type?

    Hello!

    How the parameter of the procedure with the default table type?
    For example:
    type varchar2lType is table of varchar2(50) index by binary_integer;
    create or replace procedure test1
       (
        s1  varchar2(50)
        sa2 Varchar2Type
       )
    as
    begin
       dbms_output.put_line('yyxxyyy!');
    end;
    /
    Published by: bullbil on 16.01.2012 06:35

    If he should really be an associative array for some reason any (can't think why, but just for fun...) you could declare a dummy array in the packet header and specify as the default:

    create or replace package wr_test
    as
       type varchar2ltype is table of varchar2(50) index by pls_integer;
       g_dflt_varchar2l_tab varchar2ltype;
    
       procedure testit
          ( p_testarray varchar2ltype default g_dflt_varchar2l_tab );
    end wr_test;
    
    create or replace package body wr_test
    as
       procedure testit
          ( p_testarray varchar2ltype default g_dflt_varchar2l_tab )
       is
       begin
          dbms_output.put_line('p_testarray contains ' || p_testarray.count || ' elements');
       end testit;
    
    end wr_test;
    

    It is a bit of a hack, because it relies on a global variable that is exposed. A more orderly approach would overload the procedure so that a version does not have the table and another argument:

    create or replace package wr_test
    as
       type varchar2ltype is table of varchar2(50) index by pls_integer;
    
       procedure testit;
    
       procedure testit
          ( p_testarray varchar2ltype );
    
    end wr_test;
    
    create or replace package body wr_test
    as
    
       procedure testit
       is
          v_default_array varchar2ltype;
       begin
          testit(v_default_array);
       end testit;
    
       procedure testit
          ( p_testarray varchar2ltype )
       is
       begin
          dbms_output.put_line('p_testarray contains ' || p_testarray.count || ' elements');
       end testit;
    
    end wr_test;
    
  • How the values to insert into the table with the command insertion

    Dear all
    can someone tell me how the values to insert into the table with the command insert, I want to say I always use command insert behind my forms on what shutter release button press the button of my save, but today I had a form of 6i, where controls (textbox, combo, etc.) are delineated with directly the table with I guess than the Properties Windows , I created 3 columns in tand 3 text on forms fields, now kindly tell me how to do this fields to fill and do not insert command, I mean directly defined with table column



    Please help me its urgent

    Hello

    If the block is based on your database table, just committed the shape, then changes will be applied to the database.

    François

  • I can't share the pictures taken with a digital camera on my iPad and iPhone 5s so I find them on my Mac mini

    I don't have happen not to share photos taken with a digital camera Sony DSC - H 200 on all my Apple iPad and iPhone 5 s devices while they are on the photo software my Mac mini comment can I do pay back them on all of my devices?

    Google translate:

    I can't share photos taken with a digital camera on my iPad and iPhone 5 s when I find them on my Mac mini

    I don't seem to share photos taken with a digital camera Sony DSC - H 200 on my Apple iPhone all 5s and iPad devices while they are on the photo in my Mac mini powerful software be, I do it to get them on all of my devices?

    I can't understand what you mean. To get photos from your computer to your iPhone, you can synchronize them. For information on how to view:

    Keep your photos safely stored and updated on all your devices - Apple Support

  • Problem with the digital signatures of workers govt

    If I get emails quite frequently NAVAIRSYSCOM workers via my e-mail from work which is the right company, no Government excuseraient. On my last phone an orginal Droid, a few emaisl would tell me there was a problem with the digital signature for e-mails, but I always saw the e-mail itself.

    Since switching to the Maxx HD, I can see no longer the body of emaisl to these people. All I get is a "impossible to decrypt this message." It is not every person govt, but enough that it is very frustrating. Any ideas on how to work around this problem? and I know that the message is not encrypted, I can see fine by Exchange and we are app.

    We have a couple of our team focuses on similar issues. Passing this along.

  • analog sync of input with the onset of the digital output

    I'm trying out an analog signal to a file with a specified frequency samples.  I also need a digital output to trigger a measurement at a frequency specified on a separate system.  The frequency is controlled by the loop exits and timed when the iteration number divided by the period is exactly a whole number.

    Both outputs work.  The problem is that they are not synchronized.  The analog output amounts to about 0.5 ms faster than the digital signal.  (I checked with an oscilloscope)  They both start in the 1 ms each loop runs for, but I really need them to start at the same instant.  What can I do to synchronize?  Also, if I'm going in the wrong direction complete, please indicate.

    I use a card PCI-6723, which I think someone at some point, said not having a material sample clock.  That's why I try to use a timed software loop.

    Hi NEA.

    You must use the 6723's built-in calendar to accomplish what you want.  As the digital output subsystem is only clocked by the software, an appropriate solution should be to use one of the counters to the pulse output.

    The attached code should show how.  You can use the counter to output a pulse all samples of the AO N task.  Material requires the initial delay to have a minimum of 2 ticks, so the meter will be behind the task of the AO by 2 samples in this case.  There are different ways to work around this problem if you need (for example write two samples of 0 first).

    Best regards

  • Problem with a digital output in the information of an analog input

    Hello

    I use a SCXI-1000DC module with a module of the SCXI-1600, SCXI-1531 module and SCXI-1163 module to receive an analog of an accelerometer signal and a digital signal.
    I claim that the accelerometer is constantly monitored, and the output is on when I want to, by an impulse that I comand in labview.
    I use a rate 25 k and a 12, 5K samples per channel on DAQmx Timing.

    I notice in DAQmx read, if I put a sample of hight by channel, the output is not there when I want to, and if I put a few samples per channel, I exit when I want to, but the program seems to be slow with the passage of time. I don't know how I can solve this problem!

    I'm sorry for my English, and I hope you can help me.

    Thank you

    Silvia

    Hello Silvia,.

    If you ask a larger number of samples, the labview diagram will stay longer in the DAQmx Read function, so the while loop runs slowly, and the digital output is updated less often.

    I suggest that you use 2 separate while loops: one for the analog input and the other for digital output, so that each loop might run at a different speed.

    Best regards

  • How can I get the digital power meter?

    How can I get the digital power meter?

    I use a method similar to the example below to measure the market factor using the inputs of a multifunction data acquisition meter.  If the duty cycle is 0% or 100% for a given period, DAQ reading times out and returns an error.  In this case, I would get the digital state of the counter of entry so I can put as cycle to 0% or 100%.  I want to do it without knowing the digital port and line the entrance of counter... for example I would like to continue referencing DAQ/ctrX since I already have this information.

    The application uses an M series: PXI-6229 DAQ and LabVIEW 2011 to make a system customized for VeriStand.

    https://decibel.NI.com/content/docs/doc-12396

    For the moment I wired the block diagram to add a case structure to check the meter ID and string constants to set the identifier of digital input, as they share the physical connection.  As much as I can say that makes the specific code for the PXI-6229 (or any DAQ with only two counters that share connections with p2.1 and p) 1.4

    I have attached the VI sub.

    When the device is used with a different data acquisition, I can add the connection and/or separate control.  Looks like at least one will be necessary given that the meter can only detect the edges... I think it was the piece of information I needed.

    Thanks for your help!

  • How can I change the data format of the digital display of the digital meter?

    I created a screen that uses digital counters to display data.  Each meter has its visible digital display so that the user can see the level accurately.  I have changed the format of the data from the meter to 2 digits of precision and want to display to have the same format, but there seems to be no way to do it.  The digital display is locked to 6 significant figures, which will be confusing for my users.  I know that this was possible in previous versions of LabVIEW, but was somehow lost to 8.6.1 and 2009.

    I am aware that I could do some "work-arounds" with channels or replacing the digital screens with digital indicators, but it is not acceptable.  How can I change the properties of digital signage?

    Hi AEI_JR,

    on the Properties dialog box, when you set the display format of the counter, you will find a switch to choose between 'Digital' (the default) and "digital display"...

Maybe you are looking for

  • The layout is messed up... esp. behind the colors

    The best example is the clear blue section just above this area, I do not see the words its just empty, but my mouse response when put on it... The same thing in facebook at the top where the blue header are there no visible text.

  • Firefox hangs with Outlook Web Access. Is there a problem with Quicktime or Firefox?

    When I've upgraded to Firefox 4.0, I had this problem as well and restored to 3.6. Then I upgraded to 5.0, it had been fixed, hope, but nothing helped.I'm on a Mac (snow leopard), and the problem occurs usually when I try to access my work email (Out

  • Power on Satellite Pro 6100 problem

    HelloI seem to have problems with my SP6100 power. It does not power on battery or plugged it in. The charger flashes, but trying to try to power on - it fails to do so. Do you think it is a problem of motherboard or real power in MS? If so, please c

  • Satellite L850-161 starts * recovery * mode after I turn it off sleep

    I bought this laptop there are a little more than two months, and the first time that something unusual has happened was when I put the laptop to sleep and when I flipped open the screen stayed black and would not turn on, but I could hear the sounds

  • Paragraph in the box style containing (text)

    Easy I know but I can't do , need help please.If my choice is the text:Alert(App.Selection[0].appliedParagraphStyle.Name)Returns the paragraph used Style.If my choice is the text box that contains the text, how to alert the paragraph used inside the