How to block a number of cardboard/acquisition of data to a particular program?

Is it possible to "connect" a DAQ card serial number with a Labview design/program?

For example, PCI-6601 is a serial number 12345 and I write a program (called ProgramABCD) to the acquisition of data, I want to "tie" / "bind" 12345 and ProgramABCD together, so that ProgramABCD will not work on an another PCI-6601 (unless I have change the serial number corresponding to ProgramABCD for the new PCI-6601).

Thank you.

Hi celine,.

You could read the serial number of the device programmatically using a node property and then based on that, decide whether to terminate or continue the program. See this link: http://digital.ni.com/public.nsf/allkb/92F3F7C79579FA238625718700764F9D?OpenDocument

However, if this will be distributed to the end user as a .VI file not an executable, then the end user could always go into the code and change/modify it so that it can use different devices with it.

Tags: NI Hardware

Similar Questions

  • How to count the number of elements in a data block

    Hi all
    How to count the number of elements in a particular data block oracle Forms 10g.
    If it's a text_item or the display_item or the list_item etc is there any method to do this.

    Please answer...

    get the first element with GET_BLCOK_PROPERTY(..., FIRST_ITEM);
    loop until GET_ITEM_PROPERTY(..., NEXTITEM) is null
    count on in the loop.

  • How to find the number of days between 2 date elements in the XSLT file

    Hello

    I need to calculate the number of days between 2 date elements (type xs: date). Can you please direct me as to how I can do the same thing.

    I work in 11g and using XSLT 1.0. I tried several options but yet to get a solution for this. I think that this can be done also using XSLT 2.0, but who has not worked for me.

    Can someone please help with this problem, thanks in advance!

    Thank you
    Anju

    Hello

    Have you seen this message?
    Re: Get the Date difference between 2 values of date in days

    You can do in the XSLT file since the dates are in ISO 8601 format.
    http://www.w3.org/TR/NOTE-datetime

    Here is a sample XSLT...

    
    
    
    
    
    
    
    

    The XSLT above will result in * 4 * for the next entry...

    
    2012-01-11T00:00:00.000-05:00
    2012-01-15T00:00:00.000-05:00
    
    

    You can test this example here...
    http://xslttest.appspot.com/

    I hope this helps...

    See you soon,.
    Vlad

    It is considered good etiquette to the answerers rewards with points (as "useful" - 5 pts - or 'correct' - 10pts)
    https://forums.Oracle.com/forums/Ann.jspa?annID=893

  • Fraudulent calls. How to block this number on iphone

    I get calls from 0800 number pretending to O2. How can I block on my iPhone

    Phone > Recents

    get information on the number of frauds and then scroll down and select 'block this caller '.

  • How to block a number in M4 aqua?

    Someone working for calling and texting me messages very unlikely. I want to block his phone number. How in M4 aqua? Thank you

    There is another way - save the number as a contact then said edit contact and select always send to voicemail

  • How to reduce the noise in an acquisition of data USB-6251

    Hello world!!!

    I have a few questions about a system that I have developed using a data acquisition OR usb card 6251. The pressure control system.

    First of all, the signals are acquired using an Omegadyne pressure transducer. (Typically, the signals are between 0.1 mV and 38 mV, pressure is between 0 to 50 lb/PO2). The transducer is connected to the usb-6251 daq card (I use pinout of the 1 and 2 for the signal acquisition, also, I have a 100 K resistor between pin 2 and 3) and the card is connected directly to the computer. In addition, I have an omega counter, I use it only to see pressure on the screen. But long term, it will be useless.

    One of the problems I have found is the noise, the measured voltage values change much. Even if the figures in the player screen do not change so much... (or do not change)
    The system should regulate the pressure so if every second it changes a lot, the system did not work properly. How can I make the technical more similar to that of the meter? In the labview program that I use, I use a block 'base DC', he reduced noisy signals a lot, but not enough that experience, I need more stable values.

    Thank you

    I don't mean in the /manuals of broaching and do not open .doc from unknown sources files (a chart single .png is fine ;-))

    However, I guess you already measured in differential mode and the 100 k is a path for the currents of polarization forever

    The reason why your counter is stable can be the fact, that she has a generation to filter low pass (on average) with a big enough constant time.

    First things to do:

    You did it that there is a filter anti-aliasing suitable for your sampling rate?

    Read the signal on at least 100 ms (120ms in line 60 Hz) possible higher sampling rate and take a look at the signal (and display a chart as a .png or .jpg image)

    This will give you an idea how the signal looks the same. Then you can choose a filter according to your system and the signal or other investigations to do not even catch the noise (groundloops, protection...)

    You can use an example on the screws or the testpanel to the MAX for this measure.  (Personally, I prefer a similar scope :-))

  • Number of Saturdays between two dates

    Hello

    How can I get number of Saturdays between two dates, including the two dates?

    for example number of Saturdays between 09/05/2014 and 10/05/2014 is five

    Help, please

    I use oracle 10g

    SQL> with t
      2  as
      3  (
      4  select to_date('05/09/2014 ', 'dd/mm/yyyy') from_dt
      5       , to_date('05/10/2014 ', 'dd/mm/yyyy') to_dt
      6    from dual
      7  )
      8   select to_char(from_dt + (level-1), 'fmDay') day_
      9        , count(*) cnt
     10     from t
     11  connect
     12       by level <= to_dt - from_dt + 1
     13    group
     14       by to_char(from_dt + (level-1), 'fmDay');
    
    DAY_             CNT
    --------- ----------
    Saturday           5
    Thursday           4
    Tuesday            4
    Friday             5
    Wednesday          4
    Monday             4
    Sunday             5
    
    7 rows selected.
    
    SQL>
    
  • Number of weeks between two dates that are in the same or different year

    Hello

    How to calculate the number of weeks between two dates?

    for example. "" "17-mar-2013' and June 27, 2013" or June 15, 2013 "and" 25-mar-2014


    Thanks in advance.

    lukx

    Hello

    Looks like your date range is incorrect.

    Please try the below.

    SQL >-front right

    SQL > select D2 - D1 "days."

    2 round ((D2-D1)/7.0) "weeks."

    3 round (Months_between (d1, d2), 0) 'months '.

    (select 4

    5 TO_DATE ('20121201', 'YYYYMMDD') D1, D2 TO_DATE ('20130116', 'YYYYMMDD')

    6 from two

    (7) date_range;

    Elapsed days weeks months

    ------------ --------- ---------

    46         7         1

  • How can I block unknown number or call number Caller ID?

    How can I block unknown number or call number Caller ID? A madman who got hold of my number and do not stop calling me. It is ruining my business that I only work with a mobile phone number. I get unknown calls 400 per day and none causing business that my phone is busy all the time. Samsung has this feature, but I refuse to believe that Apple isn't a solution for this problem.

    Asking again not you will get a different answer.

    You can not. your carrier may offer blocking of anonymous calls. Contact with them.

    Better yet, contact the police. This is harassment. They can trace the source of the calls. If they are from one person, it is a criminal offence.

  • How can I block my number before you make a call

    How can I block my number before you make a call? Thank you!

    Settings > phone > display my number: OFF

  • BlackBerry Smartphones how to block an unwanted number?

    I got a BB8520 and I need to know how to block a specific number, that is to say, I don't want to receive more calls from 99250666. How do I do that?

    BB doesn't have these services to block a specific incoming call. If you want you can use an application called Advanced Call Blocker to block incoming calls various. I'll send you the link in case you need to download the application.

    Use your device to download.

    http://OTA.getempower.com/call-blocker-BlackBerry/

    Ankush.

  • How to block a sender of e-mail on the mail app on my phone?

    I get an annoying number of emails of a commercial shipper. I managed to block this sender on my iMac, but I don't know how to block on my iPhone and iPad. Help?

    See if next wikiHow article can help you.

  • How to block emails using Yahoo as a browser?

    I have MS IE ver 9 and use the email associated with Yahoo. How can I block email?  In MS Outlook, it is quite easy. Thank you

    Hello

    Number description, it seems that you want to block emails in Yahoo mail account. I can imagine how annoying it will be when we receive emails, unwanted in our email account.

    You want to block e-mail from a specific address?

    I suggest to refer to the following articles and perform the steps mentioned there.

     

    How to block / unblock messages from a domain or a specific address

    http://help.Yahoo.com/kb/index?page=content&y=PROD_MAIL_CLASSIC&locale=en_US&ID=SLN3261

     

    How to block messages from a specific sender? I can UN-block later?

    http://help.Yahoo.com/l/us/Yahoo/mail/YAHOOMAIL/abuse/abuse-09.html

     

    For any further assistance about the Yahoo Mail account, I suggest you to contact the Support Mail Yahoo.

    Here is the link: http://help.yahoo.com/kb/index?page=product&locale=en_US&y=PROD_MAIL_ML&pir=UAvdnhpibUn_SInL_5tNsTRE2ve7uocUd6jy1X4ZG617KoJpoA_DOJ8WzkNLs.0ZT3mCk.fsXatWeRpVEIxd7tJSNuBI2uDZ

     

    It will be useful. For any other corresponding Windows help, do not hesitate to contact us and we will be happy to help you.

     

     

    Kind regards.

  • How to synchronize the start of the acquisition of two cards of different daq hardware

    Hello

    I'm running a continuous acquisition with a PCI-6133 (@2,5. MECH / s per channel, 8 channels) and a PCI-6259 (@250 ksps / sec per channel, channel 3). Both performed in the same loop. The raw data from the data acquisition boards are written in a separate file PDM. Because the sampling frequency of the 6133 is 10 times higher than 6259, each loop, the number of values read from the 6133 is 10 times higher than 6259. If I look in the tdms file, I see the two acquisitions does not begin at the same time.

    timestamp of the acquisition

    PCI-6259: 02.06.2016 13:09:14, 866

    PCI-6133: 02.06.2016 13:09:14, 941

    Also, the number of samples of the 6133 is not 10 times higher.

    number of samples

    PCI-6259: 4949658

    PCI-6133: 49309378

    questions

    -How can I synchronize the beginning of acquisition? Are there some tutorials?

    -What could be the reason why the erroneous report of samples (should be 10 between the daq cards)?

    Thank you very much.

    Michael

    Hello Michael,

    the beginning of the acquisition can't at the same time as you do not use a common trigger. If you adjust for the different start time, the difference in the number of samples is only about 300 samples (0, 075 s difference at the beginning of the acquisition, which amounts to 187500 samples).

    This difference of 300 samples occurs because the schedules of the 2 cards are not synchronized.

    If you want to synchronize the starting and the acquisition between 2 cards, you need to connect with a cable RTSI. In this way, you can route the 1 device to another sample clock. The delivery of the sample through the RTSI cable clock is done automatically by the DAQmx driver.

    You can get more information in this section of documentation: http://www.ni.com/product-documentation/4322/en/#toc9

  • Question - Win7 Home Prem... seeking to block a port. Recently, network multiple attacks of DoS.Generic.SYNFlood go a single specific port. Anyone know how to block a port?

    Recently, several attempted network using DoS.Generic.SYNFlood attacks.  All attacks are trying to come across 40 Port.  How can I block this port?  I checked the registry of Port number and 40 is unassigned... exactly why they use it.  Can anyone help?

    How can I block this port?

    http://www.sciencehq.com/infos/how-to-block-ports-in-Windows-7.html

Maybe you are looking for