AI and AO Synch with AO Controls

Hi everyone,
I am having some difficulties modifying the shipped NI example that shows how to perform a multi-function (AI and AO) synch (see pic).... I hope someone can help.
The NI example works fine as it and synchs my AI and AO... But I need to be able to control the AO waveform generated while the instrument is running (turn it on/off, change the frequency, number of pulses written, etc as needed)... Ideally, I want the AO function inside a case structure within a while loop... This way, I toogle a boolean and the AO writes what is need and stops... Until I toogle again..
I generally know I way around LV.... My problem is that I am not sure which parts of the AO function should stay ouside the while loop (so it initializes) and which bits should be inside the loop for control (e.g. dig trigger, start etc) keeping in mind the instrument as it will ony work when the AI and AO start functions are connected via the error wire... Thus, I can't just just drag stuff into a new loop and re-wire as the 2 loops will be dependent, which I do not want... Also don't for get the trigger wire..
I have tried a range of things, but nothing works... Any suggestions? Should I be using a queues for the start error and trigger source wires?
Regards,
Jack
LV 2010SP1
Attachments:
Picture1.jpg ‏94 KB

Hello jcannon,
The only way to change the parameters of an analog output on the fly is setting the channel under non regenerative mode, you may try the example shown in the image below, but it may be difficult to put this code and the sync code together.
Regards
Mart G

Similar Messages

  • Calender not working in 4s after upgrading to IOS 8 and and after synching with my new iphone 6  , calender not working in 6  as well. Please help.

    Hi my old phone 4s after upgrading to IOS 8, Calender is not working. Just a blank page and it quits automatically. I bought a new iphone 6+ and after synching , it also showing the same issue.

    There's no way a software update causes a hardware issue.  This is just coincidental.  Bring your phone to Apple for evaluation and possible replacement.

  • Podcast not downloading and not synching with PC

    Have 2 podcasts on my ipod touch. I am unable to play either one of them. When trying to synch with PC..........unable to do so. Cant get rid of them either?? Are they corrupted. Tried reset.........nothing happened....Help

    you can delete podcasts by swiping right to left over the podcast episode title.

  • How can I work offline and then re-synch with version control in SharePoint?

    I am using RoboHelp 11 with SharePoint 2010 for version control. How can I work off-line and then re-synch my files with SharePoint when reconnected?
    If I allow the connection to SharePoint to remain while working remotely through VPN, I am constantly annoyed by notices that "the underlying connection is lost."
    Thanks!
    Carol

    Until/unless a solution is available here's my proposed work-around:
    1.Check in all files from my primary project to SharePoint. (I have only one project.)
    2. Duplicate the project that is linked to SharePoint. Name it "Off-Line Project" so that I am always aware of the project I'm working on. Don't link Off-Line Project to source control/SharePoint.
    3. Before working off-line, import or overlay the latest version of all content (html) files from the SharePoint-linked project into Off-Line Project.
    4. Work off-line using only Off-Line Project.
    5. Returning to the office, get the latest version of all files from SharePoint. (eventually, I won't be the only person working on the project) import (or maybe just overlay using Windows Explorer?) the files I've worked on from Off-Line Project to the primary project.
    Feedback? Suggestions?

  • I'm new to flash and need help with some controls

    I'm builidng a site that has a portfiolio of work to display.
    When the visitor arrives at the portfolio page he (or she) is
    faced with a split panel. The right panel displays a summary of a
    client and the work. The left panel displays the work examples
    attributed to that client. By clicking forward and backward arrows
    in the right panel, the visitor can call the summaries of the
    different clients. Landing on a client page 'opens' a separate swf,
    called using loader component, that contains the portfolio of that
    client's work into the left panel
    1. I want forward and backward arrows located on the main
    movie in the left panel to control the progress of the loaded swf,
    rather than using forward and backward arrows on the loaded swf.
    2. I want to prevent the forward and backward arrows in both
    panels from clicking beyond frames in the Portfolio area of the
    timeline.
    3. I want the backward arrow to be innactive on the first
    frame, and the forward arrow to be innactive on the last frame.
    I have no problems making the arrows work on the main movie
    controlling the client summaries. What I don't know how to do is
    make them control the movement of the loaded swf, or #2 and #3.
    Any help will be greatefully appreciated. Thanks in advance,
    Art

    "Art Lazaar" <[email protected]> wrote in
    message news:[email protected]...
    > Tralfaz,
    >
    > Thanks for your response. I must be missing something
    very simple here, but I
    > can't make this work no matter what I do. Let me see if
    I understand some of it:
    >
    > On my main movie I put the fwd_btn and rew_butn
    codes...do I put these on the
    > actual buttons, or in an actions time line? When I put
    them on the buttons, I
    > get an error report saying they need to be in an 'on'
    event handler. I thought
    > that's what 'onRelease' was.
    >
    > On my loaded movie, I place the 'one.swf' code. I'm not
    sure what you mean by
    > placing the code inside a loop, I don't seem to be able
    to find a reference to
    > using 'loop' anywhere. When I use an 'onEnterFrame', I
    presume I do that with
    > onEventClip(enterFrame). When I do that, if I run the
    'one.swf' by itself, i
    > get an error report saying onEeventClip is for movies
    only. But there's no
    > error report when it loads from the main movie. What
    happens tho' is it loops
    > continuously, even if there are stops() in it.
    >
    > Boy, am I confused ;)
    >
    > I am really baffled by this seemingly simple little
    task. Your help is
    > gratefully appreciated.
    >
    > Art
    >
    >
    >
    Hi Art,
    There are different coding methods, depending on where you
    put code..
    1) Frame code
    Click on a frame of the timeline to enter frame code
    2) Attached code for movieclips and buttons
    Click once on a movieclip or a button then enter attached
    code
    To make an onEnterFrame event for a movieclip, first chose
    either frame code or attached code method. I personally rarely ever
    use
    attached code because it hides code in places that can be
    hard to find. Almost all my coding is frame code, but it's a
    personal
    choice.
    Frame code method to make an onEnterFrame for the main
    timeline..
    // put this code into a frame on the main timeline
    this.onEnterFrame = function()
    // do something once per frame at the frame rate
    checkMyButtons(); // once per frame we will check on the
    button status
    OR
    Attached Code method to attach an onEnterFrame event to a
    movieclip
    // click once on the movieclip (don't dbl click it .. stay at
    the root timeline level)
    onClipEvent(enterFrame)
    // do something once per frame at the frame rate
    Those two types of code are not interchangeable. One type
    must be entered into a frame and the other style must be attached
    to a
    movieclip or you will get errors.
    Then there is the DOT syntax way to write frame code that is
    equivalent to attaching code..
    myMovieClip.onRelease = function()
    trace("release");
    myMovieClip.onPress = function()
    trace("press");
    myMovieClip.onDragOut = function()
    trace("drag out");
    tralfaz

  • Handling Unit Management and supply areas with WM/control cycles

    Dear all,
    has anyone come across the issue how to handle a replenishment process for production with supply area within WM and Handling Unit Management?
    Normally a supply area is being staged via control cycles. in the supply area, all storage units get lost (standard functionality as far as I know). When we post the GI, the components will be taken out of the supply area, backflushing is not allowed as far as I know.
    Now: what happens if HUM is switched on? Do we have to enter a HU for these GI's as well? Or does the supply area  keep the information of the SU/HU? I want to avoid that the users have to tell the system the HU no. for every screw they take/consume...
    Thanks & regards
    Christian

    Hi,
    (as already described,)
    it is possible to use handling unit management together with lean        
    warehouse management. You activate handling unit management independent  
    from storage unit management (that is only possible in case of full-WM   
    as far as I know).                                                       
    Only in case if storage location is full-WM- AND HU-managed the storage  
    unit management is always active and HU numbers are taken over as SU     
    numbers. In all other cases HUM and SUM are independent from each other  
    and number ranges must be set a way that they are not overlapping.                                                                               
    Regards,
    Ely

  • Will my calendar, etc on the iphone with ios5 and cloud synch with my snow leopard imac not cloud connected?  Not much useful information on this as far as I can see.

    There does not seem to be  much useful information on cloud related matters.  I will eventualy uptae to Lion but not for a while. Meanwhile I would like to know
    if my calendar, etc on the iphone were I to update to ios5 and cloud would  synch satisfctory (usul caveat) with my snow leopard imac not cloud connected?  

    It is a very impressive phone.
    You might want to look at FILES or FILES LITE. I use it for pdf and excel files.
    Also, Trapster is very good for directions. And police radar/redlight cameras.

  • I am running outlook as mail, calendar and contacts and synching with icloud for my I phone. today, on my pc i cannot access my Calendar in Icloud or my Contacts in ICloud. Windows 7

    I am running Outlook for my mail, calendar and contacts and it synchs with I cloud for my I phone. /Today on my PC i cannot access myh "Calendar in Icloud" or my Contacts in ICloud. Get pop up dialogue box which says "the set of folders cannot be opened. The information store could not be opened"
    Any suggestions?
    Thanks
    Steve

    curtterp wrote:
    I use Touchdown from Nitodesk for my work email. Its a little pricey, but it works with your companys OWA (Outlook Web Access) portal. They do have a 30 day trial that they insist that you try to make sure it will work for you before you shell out any money for the app. It syncs the Calendar, notes, tasks, emails etc.
    It has a discovery feature that it will figure out what it needs to configure. All you need to provide is how you log into OWA (Username/password, website) and the program does the rest. It works very well for me.
    No I am not employed by Nitrodesk. I only use the program. There was no need to ask my IT people to set anything up for me.
    Give it a try, it might work as well for you too.
     One day I will have to give this app a try, I am just use to configuring my device to sync without a 3rd party app but I have heard that Touchdown seems to be the best thing going to setup a corp sync process..

  • My macbook pro synchs to iphone, but iphone notes and address book do not synch with my laptop

    When I enter contacts on my iphone 4 they do not go accross to laptop, but do go from laptop to iphone. On previous MBP it worked, as did notes that appeared in my inbox. I am running lion, all boxes are ticked, apps synch ok but not address book and notes

    I can't figure out what's going on.  Been working on this all day.  Yes, all the preferences are checked off and I've triple checked everything.  The truth is, after many experiments, I think the problem has to do with how address book is communicating with my contact list.  I use quickbooks 2012 for mac.  It has all of my customers and vendors synched with my address book on my mac.  If I add a customer in quickbooks it shows up in address book on my mac.  But it doesn't show up in Icloud or on my Iphone.  If I manually add a customer to my Iphone it synchs fine with Icloud and my address book.  It seems that the only time devices can't communicate is when I add a contact in quickbooks.  No matter what I do, I can't get the new contact from quickbooks to icloud or my iphone.  It looks like those programs/devices completely ignore the new contact in address book that was created in quickbooks.  I realize you probably can't help me here but if you have any ideas let me know.

  • Synch with Groupwise Causes alarms to be set at 12:05 AM

    Hi,
    I have a Black Berry 8700 and I have the 4.7 desktop client and am synching with Groupwise 7.0.3.  When I synch my calendar items they get transferred to my BB with an alarm time of 12:05.  I have my default alarm time set to 5 minutes prior to the appointment start time set in both Groupwise and on the BB. 
    If I manually change the appointment notify time from say 875 minutes to 5 minutes it will synch back to GW fine. Has anyone seen this and more importantly what is the fix.
    Thanks
    Dan

    Install GroupWise Client 7.0.3 HP1 - (In Novell GroupWise versions earlier than 7.0.3 HP2, the alarm time was relative to a minimum value (midnight, 30 December 1899), whereas Novell GroupWise 7.0.3 HP2 and later, the alarm time is based on the current date and time.)
     This solved my problem!!!!
    Message Edited by kevin.johnson on 04-27-2009 06:11 PM

  • CK40N - Update for material with price control 'V'

    i Experts,
    When im running standard cost estimate in CK40N, say for material types semi finished. The components that is raw materials of the SFG is also updated with the price, meaning for a raw material with price control 'V' has a price of 10, after
    releasing the cost estimate for the SFG, when i look into the material master of raw material, the price of 10 is also updated
    in the standard price.
    I am not sure why this is happening, i believe it should not happen. Because in the valuation variant, if i give the strategy as standard price, this price is easily picked up. And more over with price control 'V', i can change the standard price. Can anybody throw some light on this.
    Best regards
    gj

    Hi Rakesh,
    Thanks for the information. But i do agree even during release there is no impact on the inventory. But in my cost variant, say in PPC1, if i give the strategy say 1. standard price 2. moving average price, during cost estimate run, its going to take the standard price for the material irrespective of the price derived automatically for moving average price. For eg in our case for raw material with price control 'V' after sce run if the standard price is 10 and moving average price is 14, as per strategy of PPC1 above its going to take 10 and not 14.
    Is there any other way to avoid this. Please correct me if i had went wrong somewhere.
    Best regards
    gj

  • My address book will not synch with iCloud or iPhone 4

    Since upgrading to lion, my address book will not synch with icloud or my iphone 4.  Any idea what I should do?

    I can't figure out what's going on.  Been working on this all day.  Yes, all the preferences are checked off and I've triple checked everything.  The truth is, after many experiments, I think the problem has to do with how address book is communicating with my contact list.  I use quickbooks 2012 for mac.  It has all of my customers and vendors synched with my address book on my mac.  If I add a customer in quickbooks it shows up in address book on my mac.  But it doesn't show up in Icloud or on my Iphone.  If I manually add a customer to my Iphone it synchs fine with Icloud and my address book.  It seems that the only time devices can't communicate is when I add a contact in quickbooks.  No matter what I do, I can't get the new contact from quickbooks to icloud or my iphone.  It looks like those programs/devices completely ignore the new contact in address book that was created in quickbooks.  I realize you probably can't help me here but if you have any ideas let me know.

  • I can no longer synch music library and audio books, it says can only be synched with one of the libraries, anyone else had this?

    i had to reboot my laptop, so reloaded itunes sofware, im now finding that when i'm synching my Iphone to synch audio books ive downloaded, , it says its synched with another itunes library ( my music) do i want to erase this iphone and lsynch with this iphone library, the music percentage at the bottom reduces to 0% in prep to erase.
    anyone else got this problem?
    Lee

    try a new/fresh apple brand cable and make sure it is the only usb cable in use. this worked for me, i noticed i had no problem with a lighting cable. i did a restore from scratch and from backup and it did not help me...and if you cant sync than you wont be able to get anything but apps back after the restore

  • I'm too old to learn iCal.  How do I tell iTunes to synch with Outlook for Mac for all of the Contacts and the Calendar on my iPhone and iPad??  Thanks

    I'm too old to learn iCal.  How do I tell iTunes to synch with Outlook for Mac for all of the Contacts and the Calendar on my iPhone and iPad?? 
    Also, once I figure out how to replace iCal with Outlook/Mac on iTunes, how do I synch the phone and pad so that the information on those devices over-writes onto Outlook as a backup, rather than having a blank Calendar on Outlook wipe out all of the information on the phone and pad???
    Thanks

    If you haven't tried already, plug your devices into iTunes, and on each device next to the "Summary" tab at the top is another tab called "Info." Click that and scroll down to Contacts, Calendars, etc. There should be a pull down bar under each category for "Sync contacts from..." and you should be able to select from that pull down list Outlook.  Hit Apply at the bottom and see if that does it.

  • Why does it tell me my ipad is synched with another itunes library and wants to erase the thing when I want to synch it?  I haven't synched it with any other mac but my own.

    why does it tell me my ipad is synched with another itunes library and wants to erase the thing when I want to synch it?  I haven't synched it with any other mac but my own.

    Hi Lisa,
    I know from experience that this must be a frustrating situation for you especially if you don't want to loose the music/video content that is currently on your ipod. Unfortunately though you may have to consider re-syncing it as it thinks its currently synced with another computer.
    If you bought any music that is on the ipod through itunes you can opt to right click the ipod in itunes and 'transfer purchases' if you authorise your library in the 'Store' menu in itunes. Some reasons for this happening may include some of the following:
    Deleting and reinstalling your itunes on the computer.
    Removing the account you had on the computer you used itunes in and making a new one. (User account, eg: Lisa).
    Changing computers in the past.
    A friend or family member syncing it on their computer to give you there music.
    A sign of a failing iPod.
    Alternatively you can opt to not sync it and keep the music that is on your ipod there but this means you will never be able to update your ipod.
    Hope this helps!

Maybe you are looking for