How to implement a delay accurately in 44.53ms using PXI6602

How can I implement a delay of 44.532 ms accurately using PXI 6602?

Hi KKLEE,
I’m assuming you mean for generation? Unfortunately the
Start Delay property in the DAQmx Trigger Property Node is not available for
the 6602. Therefore, there isn’t any deterministic way for you to delay the
counter generation. You can, however, still make an approximate delay by
creating a dummy analog input task with a simulated device, and wiring the
error lines appropriately. The screen capture below shows how this could be
done.
You can create a simulated device in the Measurement &
Automation Explorer by right clicking on Devices
and Interfaces and then selecting NI-DAQmx
Simulated Device from the pop-up window. Choose an M Series device, such as
the PCI-6251.
Please post if you have any questions. Have a great day!
Message Edited by ryan_d on 11-28-2007 06:16 PM
Message Edited by ryan_d on 11-28-2007 06:18 PM
Message Edited by ryan_d on 11-28-2007 06:18 PM
Ryan D.
District Sales Manager for Boston & Northern New England
National Instruments
Attachments:
trigger1.png ‏9 KB

Similar Messages

  • How to implement a delay of usec (6025E board)

    I want to implement a delay of usec(say 0.5usec) however the 2 24bit general purpose counter was already used up.
    how can i implement the 0.5usec delay without using the 24bit counter?
    Thks & best regards
    lyn

    Hi,
    I am not sure that this is possible; you can implement software delays, but to within 1ms resolution. For the usec resolution, you definitely need a counter.
    Regards,
    RamziH.

  • Any one know how to implement a Delay

    I would like to implement a dely without using Create timer..
    I know that delay is a reserved word in Pl/sql
    but when I used it like in C++
    delay(1000);
    I got a compiler error..
    Is the delay in PL/Sql is used for the same function as Delay in C++
    Can any one help????

    Use the DBMS_LOCK.SLEEP function. You might need to grant yourself execute rights to the SYS.DBMS_LOCK package first!
    Cheers,
    Stefan

  • How to implement Master-Detail Search in TopLink without using DataControl

    Hi,
    I am using TopLink and EJB in our requirement. But we are not creating any data controls. Without data controls how to implement master detail search using TopLink and EJB. I did search for a single table. It is working fine. The way i implented is as follows.
    1) Taking search parameter from UI and passing it to A delegator class's method.
    2) Delegator class's method calls the EJB's NamedQuery which i already created using expression builder.
    3) EJB executes the NamedQuery with the parameter we are passing. And it returns the results back to UI.
    But as i am new to TopLink, can anyone tell me the procedure to implement Master - Detail search. Here we need to search based on Master table's column.
    Waiting for the replies regarding this.
    Thanks & Regards,
    Suresh Kethireddy

    Hi,
    I did it successfully. Following is the code.
    Session session = getSessionFactory().acquireSession();
    UnitOfWork uow = session.acquireUnitOfWork();
    ReadAllQuery raq = new ReadAllQuery();
    Dept d = new Dept();
    d.setLoc(loc);
    raq.setExampleObject(d);
    List<Dept> res=(List<Dept>)uow.executeQuery(raq);
    for(int i=0; i<res.size();i++){
    System.out.println("Dept DeptNo ---"+res.get(i).getDeptno());
    System.out.println("Dept DeptName ---"+res.get(i).getDname());
    System.out.println("Dept Location ---"+res.get(i).getLoc());
    List<Emp> eRes=res.get(i).getEmpCollection();
    for(int j=0; j<eRes.size();j++){
    System.out.println(" Emp No ---"+eRes.get(j).getEmpno());
    System.out.println(" Emp Name ---"+eRes.get(j).getEname());
    System.out.println("Emp HireDate ---"+eRes.get(j).getHiredate());
    System.out.println(" Emp Job ---"+eRes.get(j).getJob());
    System.out.println(" Emp Mgr ---"+eRes.get(j).getMgr());
    System.out.println(" Emp Sal ---"+eRes.get(j).getSal());
    But now my question is, i want to search by providing Dept param as well Emp(Which is child table) param also. Is it possible?
    I tried in 2 ways like this.
    1) Emp emp = new Emp();
    emp.setEname(eName);
    dept.addEmp(emp);
    raq.setExampleObject(dept);
    2) Emp e = new Emp();
    e.setEname("ADAMS");
    List<Emp> list = new ArrayList();
    list.add(e);
    d.setEmpCollection(list);
    raq.setExampleObject(d);
    But in both cases i failed to search based on the values i am passing to Emp.
    Is there any other way to achieve my requirement?
    Any help on this is great.
    Thanks & Regards,
    Suresh K

  • How to Implement SSL with Oracle Applications R12 without using Load Balanc

    How to Implement SSL with Oracle Applications R12.1.3 without using Load Balancer

    Please refer to (Enabling SSL in Release 12 [ID 376700.1]).
    Thanks,
    Hussein

  • How to implement Servlet/JSP in PAR to be used standalone (not as iView)

    Hi everyone!
    I want to develop a Servlet (or a JSP) that is part of my PAR with the main iView because it will be called in an iframe within that iView.
    1. It has to be possible to call it directly from the Browser (iframe).
    2. The output has to be exactly what i generate in it, meaning there must not be added anything to the output by the portal.
    3. Because it uses the same classes that the iView itself is made of, I think it has to be part of the same PAR file.
    4. Creating the servlet in an EAR and then copying (duplicating) the class files from the iView into it or putting them into their own jar and copying that into the PAR and the EAR is not really an option (for maintenance and development reasons)
    What I tried so far:
    -- implement the functions in a JSP which I put into dist/jsp => JSP is accessible from the browser but importing classes from the src.core is not possible (neither from default package, nor from any other named package in there)
    -- implement in a JSP which I put into dist/PORTAL_INF/pagelet => JSP is not accessible from the browser (tried with the URL from IResourceInformation), so I don't know whether the imports would work
    -- implement in a Servlet class in the src.core => don't know how to access that from the browser or how to configure it to be accessible or if this is possible at all
    Maybe I am looking at the whole thing from the wrong side and the solution is something completely different from what I thought.
    I have looked for information on this for nearly 8 hours now but did not find anything that really helped me. So any help is really appreciated.
    Kind regards, Roland

    First, thanks for the links.
    But
    3.      Put the compiled servlet class in the private lib or classes folder.
    seems not very pratical to me as you always have an additional manual step to do after each and every little change and therefore another source for possible errors. Also you have to switch perspectives in Developer Studio to do the copying. Isn't there a way to use the already existing class files from the iView?
    Another question away from that: How do I access such a servlet via the web browser? What is the URL to it?
    Quite trivial, but didn't find information on that, too.
    Thanks anyway, Roland

  • How to implement hierarchical structure of managers and reportees using jdeveloper adf

    I want to display hierarchical structure(which can be expanded and compressed) with 3 columns(Employeeid, fist Name,lastname) of managers and his reportees on selecting a top level manager.
    In this i'm going to use programmatic view objects.
    I have employees table.
    Here is my detailed requirement:
    On selecting a user from drop down list, i want to display the list of users reporting to him.
    From the displayed list on selecting a manager, list of users reporting to him has to be displayed in a tree format with the correspoding just being listed below the current selected manager
    Example :
    Top Manger  has been selected from dropdown and clicked submit.
    Output(a table as mentioned below):
    Manager1
    Manager2
    NonManager1
    Manger 3
    On clicking manager1,
    output:
    Manger 1
      Manger11
      Manasger12
      Nonmanager11
    Manger 2
    NonManger1
    Manger3
    on clicking manager1 again, tree has to be compressed and the output has to be just the same as first output.
    Please help me on this by sharing information or any references on how can i achieve this implementation using Jdeveloper adf concepts.
    Will be waiting for the inputs.
    Thank You,
    Dev

    Obviously, you can only display one picture.  So then the question becomes which picture to show.  Therefore, you will have to create some sort of preference of one pattern over another.
    I would use a FOR loop so that you can loop through your available patters and their possible results.  Use the Conditional Terminal on the FOR loop so that you can stop the loop on the first match.  Then you just wire up the selected value for the ring outside of the loop.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to implement line selectability for a table control using table Wizard?

    Hello SDN Community,
    I have created a table control using the Table Wizard.  I found my exact question in this forum, but unfortunately it had not been andsered.  While I cannot paste a screen-print into this plane-text area, here are the steps I followed...
    1) SE51
    2) Create new screen 0100
    3) Click Layout button
    4) Clidk Table Control (with Wizard) and draw box on canvas.
    5) Step is "Start" - click Continue
    6) Step is "Name of Table Control" - provided name
    7) Step is "Table Name" - provided name of dictionary table (AUFK)
    8) Step is "Definition of Columns" - selected order numver and order text
    9) Step is "Table Control Attributes" - Line Selectability is in display mode - cannot set it.
    I would like to have a selectability column for my table.  Would appreciate any insight into how to do this.
    Thank you,
    Dean Atteberry.

    This is a puzzling...
    For the table control wizard, in the Table Control Attributes step, I was able to get line selectability to open up by declaring a char01 data element at the beginning of my type.
    The puzzling is in regards to the "Selection col. fld" entry field.
    If I leave it blank and try to go to the next step, I get message "Enter the name of the selection column if you are using a program table"
    So it looked like it wanted to know the name of my selection column.  So I type in "CHAR1".  and got the message "The field "CHAR1" for the selection column is already contained in the table."
    Hmmmmm.... don't understand............
    Dean Atteberry.

  • How to implement linux's "more" command's function use java?

    In linux, we can type as following:
    more [filename]
    we can view the file's content ,page up, page down etc.
    can java implement such more command's function?

    the j2se libraries don't have an abstraction for getting information like this - so java is effectively unaware of a console
    there is an enhancement request for this - i've not heard any mention of this getting into Tiger (??)
    http://developer.java.sun.com/developer/bugParade/bugs/4050435.html
    when i had a go at this
    http://forum.java.sun.com/thread.jsp?forum=31&thread=408133
    and kind of relevent
    http://forum.java.sun.com/thread.jsp?forum=54&thread=445190
    asjf

  • How to implement row level security using external tables

    Hi All Gurus/ Masters,
    I want to implement row level security using external tables, as I'm not sure how to implement that. and I'm aware of using it by RPD level authentication.
    I can use a filter condition in my user level so that he can access his data only.
    But when i have 4 tables in external tables
    users
    groups
    usergroups
    webgrups
    Then in which table I need to give the filter conditions..
    Pl let me know this ...

    You pull the Group into a repository variable using a session variable init block, then reference that variable in the data filters either in the LTS directly or in the security management as Filters. You reference it with the syntax VALUEOF("NQ_SESSION.Variable Name")
    Hope this helps

  • How to implement Oracle DWH using JDBC

    Hello,
    i'm new to the Oracle database and i'm wondering how to implement a DWH Core or Datamart System using Oracle 11g Express. How can i "switch" a relational oracle database to a dimensional one, preparing it for OLAP/BI queries´, preferably using the JDBC interface ?
    Thanks a lot!

    An good introduction to Oracle OLAP is found on the OTN site: Oracle OLAP.
    --Ken Chin

  • How to implement paging in webdynpro jave based on search criteria.

    Hi All,
    In a requirement I need to implement paging in webdynpro java development.
    I successfully did it when there is no search criteria is available i.e webdynpro fetched all data from the BO object and I did it using a "indexNO" (unique serial no from 1,2,3,4.....) field available in BO object.
    But when there is search criteria available , i.e the data to be fetched from the BO based on some specific field , at that time the "indexNo"  field of all data fetched based on search criteria are discrete i.e not continious. In that case how to implement the paging concept.
    I am using CE version 7.1 EHP 1.
    Thanks in advance
    Srikanta Satapathy

    Hi,
    If you go to your VO and generate the ViewObjectImpl, in there you can create a method which will contain two parameters, 1 the attribute name and 2 the value.
    Then you can follow something like explained in this post:
    ADF Tutorial: How to apply bulk actions to a view object rows
    The only difference is that you will need to create a method like this:
    public void updateAttribute(String attribute, Integer value){
            RowSetIterator iter = createRowSetIterator(null);
            while (iter.hasNext()){
                Row row = iter.next();
                row.setAttribute(attribute, value);
    Then you expose that as a client interface and then after you filter your table by your criteria you just need to execute this method passing the right parameters.
    Regards

  • How to implement  business rules by using drolls in OSB

    Hi
    I am new to Drools,can any body tell how to implement drools concept in OSB11,provide any useful links or blogs.
    Thanks in Advance
    Mani

    Mani,
    I have implemented Drools by exposing them over web service call through Business Service of OSB.
    As you are using Java Callout, try to set proper return type for the java method called, better to use XMLObjects as the return type.
    http://www.xenta.nl/blog/2011/08/29/oracle-service-bus-java-callouts-with-xmlobjects/
    http://mazanatti.info/index.php?/archives/63-Oracle-Service-Bus-generating-XML-Objects-from-Java-Callouts.html
    http://blog.xebia.com/2009/10/11/java-callout-on-the-alsb/
    http://itnewscast.com/middleware/oracle-service-bus-java-callouts-xmlobjects
    How to retrieve the java object in a proxy service in osb -- Plz help
    Hope it helps !!
    Abhinav
    Edited by: Abhinav on Dec 12, 2012 4:21 PM

  • How to implement moving (linear) averaging in a subVI with dynamic data?

    I was wondering how to implement a moving or rolling linear averaging using a subVI on a set of dynamic data coming from the DAQ Assistant or a counter input channel that will be written using the Write to Measurement File VI?  Below is an example of what I mean.
    Solved!
    Go to Solution.

    You could use the MeanPtbyPt vi to give the running average.  Assuming your code snippet is inside a loop, wire an =0? comparison of the iteration number to the initialize input to reset the value and put 25 (or whatever you want) as the sample length.

  • ** Any one know How to Implement POI of Google map ***

    **Hi Friends,
    if any one knows about implementation.just share with me.
    [email protected]

    HI Friends,
    How to implement Point Of Interest from google map.
    Is it possible, i checked in google static map api ..it provides markers and path and also some features
    other than POI.
    May i know how to implement POI,
    what api i have to use..i checked google ajax api. im not able to get that one.
    So,give me ur suggestions.
    what i have to do .
    [email protected]

Maybe you are looking for

  • How do i make an image pause in a flash movie clip

    Please can someone help me. I am trying to find out how to pause or stop an image in a basic flash movie clip,  after it has entered from one side and before it exits the other side. I have been trying to work it out myself for three days but no joy.

  • In ESS-Leave Request -A critical error has occured.

    In ESS when tried to enter the Leave which is under Leave request the below error occured: Critical Error A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost. Please contact your system administrat

  • Importing photos from iPhoto to Aperture

    Importing from cd, Nikon camera, and cf memory card to Aperture Library is working well for me; but importing from iPhoto is troublesome. If I import from the iPhoto Library (a Library that has always seemed unnecessarily complex to me), there is nei

  • Send multiple records to rfc without using BPM

    Dear Experts, Could you please help on the following scenario. I need to send multiple customer master data records from a file  to rfc without using BPM. The following is the mapping i am using source                                                

  • TS4006 find the location of my ipad 2

    i lost my ipad 2 please help me find it?