What gets reset with "retriggerable" for CO pulses?

When using the Trigger property node, and a boolean TRUE wired to the "retriggerable" option, what gets reset? It does not seem to include the "initial delay time." Unfortunately, I must have a user-adjustable delay prior the pulse triggered by another channel. Is there any way to do this? My board is a PCI 6024E. Thanks, matt

Dear Chad,
Thank you for your response. I had tried your suggestion without success earlier. I just added it to a functional vi, with an error result, as follows:
[Error -200452 occurred at Property Node DAQmx Trigger (arg 1) in AI Master_Buffer_AI_CO_10.vi
Possible reason(s):
Specified property is not supported by the device or is not applicable to the task.]
I can't tell if the initial delay, described as applying to the first pulse, gets reset.
I have a very simple task for a simple multi-function vi. I thought the CO pulse would be a good and easy solution, but have been completely stymied. What I am trying to do is record and stream to disk a few analog input channels. I am using one channel as an input to PFI0, to trigger a pul
se out. What I absolutely need is a single pulse only, with a user adjustable delay from the time the trigger is received until the CO pulse.
The periodic signal that drives the vi ranges from 50 to 150 Hz. I have to adjust the various high and low times to only output a single pulse. My vi is almost there, it has a 'phase-locked' pulse that is consistent over time over the bandwidth needed. My last task is to add the delay. I would prefer to solve this using a counter property in order to exploit hardware timing, rather than a software trigger.
Do you have any ideas? Thanks again. I can correspond by email or phone if that is easier, take care, matt.

Similar Messages

  • What's up with iTunes for Windows 7 64 bit?  Makes my PC run like a 286 on Windows 3.11.

    What's up with iTunes for Windows 7 64 bit?  So slow and draggy.  Makes my high end PC with multi-core processor and video card run like a 286.  Even did this after doing a fresh install of the operating system with the latest version of iTunes. 
    No other software does this on my machine.  There has to be some crazy issue causing this.

    Try this,
    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 & above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    Now launch your iTunes and see if it is working now.

  • What's Wrong With Safari for iOS5?

    Suddenly I can't get Safari to keep me logged in to my social media sites.  I have to constantly log in to Facebook, LinkedIn, etc.   This just started in the lastvweek or so, and it's really starting to get on my nerves.  Click a FB link, "content unavailable" then login and tell Facebook not to remember my "new" device several times a day. Unacceptable!

    You still cannot change the default browser from Safari - but you can use any browser that you like. I use iCab Mobile as well. If you click on a link in an email message for instance - it will still open in Safari no matter how many other browsers you may have.
    Maybe resetting/clearing Safari would help. Of course you will have to enter your passwords again for those social sites, but it may fix the issue with Safari.
    Go to Settings>Safari>Clear History, Cookies and Data or Cache. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • Where can I get help with Office for Mac

    Hi everyone,
    I use Microsoft Office for Windows at work, and often go to one of the groups at msnews.microsoft.com to ask questions and get help. I would like to be able to check from home to see if anyone has answered my questions, but I can't figure out how to access this from my Mac. Do I need special software for this? At work I use Outlook Express. What should I use from my Mac?
    Thank you,
    Rob

    Many of those groups can also be accessed on the web with any web browser via http://groups.google.com/
    There are several NNTP news readers like Newswatcher and MT Newswatcher on http://www.versiontracker.com/ and http://www.macupdate.com/ which tie into that newsgroup protocol if your internet service provider supports it.

  • Selling orignial iPhone, what to do with AppleCare for original iPhone?

    Hi:
    I recently received a new original iPhone as a replacement and also purchased the AppleCare for an additional year of warranty in case I have the same problem on this new iPhone (the home button stopped working). So now I am considering getting the 3G and selling this new 1st gen iPhone. What can I do with the AppleCare I have?
    1) Move it it the new phone?
    2) transfer it to the old phone new owner?
    3) all or non of the above?
    Thanks,
    mn3

    You can look this up on Apple's web site.
    "If you choose to sell or give away your Apple product, you can also transfer the ownership of the AppleCare Protection Plan. Please see the AppleCare Protection Plan Terms and Conditions for complete details."
    http://www.apple.com/support/products/faqs.html

  • How to get help with refund for in app purchase

    I downloaded the free app "Bakery Story" without realizing it was an app that allowed the user (in this case, my child) to run up a bill very quickly with in-app purchases (using my real money instead of the play money within the game). As soon as I received the statement from Apple about these unexpected purchases, I enabled the parental controls that block purchases from within apps like this. I am trying to use Apple website to find the rightbplace to request a refund on those purchases, but I only get so far with the express lane before I get a "server not responding" message. Any ideas for how to get help? (clicking the Report a Problem" link in the invoice email doesn't work either (and my WI fi Internet connection seems fine).

    These Links may be Helpful
    Mac Apps Store Customer Service
    http://www.apple.com/support/mac/app-store/contact.html?form=account
    iTunes Customer Service Contact
    http://www.apple.com/support/itunes/contact.html

  • How do i get started with NFC for my android app?

    As far as i can tell there is absolutely nothing to be found about NFC for actionscript.
    Could anyone point me in the right direction to get started on this?
    Kind regards
    Denis

    you should look for (or create) an ane (adobe native extension) to provide the gateway you want.
    SmallScreenDesigns may already have one that does what you want:  http://www.adobe.com/devnet/air/native-extensions-for-air.html
    and:  http://code.google.com/p/ane-lab/source/browse/#svn%2Ftrunk%2Fmobile%2Fandroid%2Fjava%2Fnf c1

  • What is wrong with this for loop equation?

    The purpose of the loop is to find what level you are, based on the exp you have. My formula is similar to the one found here, with a few modifications (more exp needed at first, less needed later)
    [http://upload.wikimedia.org/wikipedia/commons/0/02/RS_skill_Formula.jpg]
    The results should show that at 0 to 93 exp you are lvl 1, 94 to 191 is lvl 2, 192 to 297 is level 3, .... and 41402+ is lvl 50. (give or take 1 or 2 exp, for rounding)
    public class ExpTest
         public static int getLvl(int exp)
              double EXP = 0;
              int Lvl = 0, i;
              for(i = 1; i <= 50; i++)
                   EXP = ((i + 50)/3 + (70 * (2 ^ (i / 9))));
                   if (EXP > exp) break;
              Lvl = i - 1;
              if (Lvl > 50) Lvl = 50;
              return(Lvl);
         public static void main(String[] args)
              int exp = 95, lvl;
              lvl = getLvl(exp);
              System.out.println(lvl);
    }

    Edited loop, it still doesn't work correctly:
    for(i = 1; i <= 50; i++)
         EXP = ((i + 50) / 3.0 + (70 * (Math.pow(2,(i / 9.0)))));
         if (EXP > exp) break;
    }

  • HT204655 Get started with Photos for OS X - questions?

    What if I want to use a different cloud service? There is no option for backing up to another cloud service? Hope you add that option soon. And it's fine to do away with Events and use Albums, but why not convert all Events to Albums for consistency?

    iCloud Library is not a back up service. It's your actual library in the Cloud. You still need to back up your Library on your Mac. But that's a different thing. Events are converted to Albums when you migrate.

  • Cancel one phone and get started with internet for the house

    I have 2 phones on my account one for and and the other for my wife, now we work together and pretty much using one phone so im paying for 2 phones while only using one.
    I want to just get rid of that phone on my account and start up Internet at our new home so im actually paying for something instead of wasting.
    how do i go about that do i still pay a cancellation fee for the 2nd phone to?

    James_M
    Thanks so much for visiting the community to post your question.
    You said you are looking to get internet,  Are you looking to get one of our USB Modems or highspeed internet at home?
    If you are looking to just cancel one phone line, it absolutely can be done. If you are still under contact with the one line you want to cancel, then there will be an ETF (early termination fee).
    If there is an ETF on the line of service that you are looking to cancel, you may be able to check with friends or family members to see if anyone is looking to take over the line and put it in their name which is called an Assumption of Liability.
    An AOL (assumption of liability) change (formerly known as: name change, transfer of liability, billing responsible party change, etc.) is the process of transferring an account's financial liability from an existing Account Owner to another Account Owner.

  • Will Lightroom 4 get updated with support for Canon 7D Mark II Raw Files?

    I received an update for Photoshop to support Canon 7D Mark II raw files (ACR 8.7), will Lightroom 4.4 get an update to support these files?

    I don't know why you feel it makes things more complex. All you need to do is use the DNG converter as your download software. The conversion takes place during the download, and then you can import directly into Lightroom. I'm not trying to sell you on using DNG. But it isn't as cumbersome as it seems.
    Since Lightroom doesn't utilize the Camera Raw plug-in, it makes it more difficult to provide updates. In Lightroom update means distributing a whole new Lightroom program.

  • SAP standard example to get start with Webdynpro for ABAP

    Hi,
    I just started learning Webdynpro for ABAP.
    I'm looking for SAP standard buit in applilcation example which explains all the the view controls, properties and Layout desining.
    please let me know the standard applications of SAP for learning.
    Many Thanks,
    Gupta

    hi..
    just go to package SWDP_DEMO, it has all sample webdynpro applications using all UI elements.
    By the way...question is posted in wrong forum
    Regards
    Manas Dua

  • Ive paid for my music but am not allowed to do what i want with them

    i no i cant do anythin about this but its jus annoying because i have downloaded song and paid for them using itunes, and i shud be able to do what i want with them for example put them on my walkman phone to listen to, but some of them are encoded so i cant.
    ive looked on i tunes to see if it tells u anywhere before u buy these songs and it doesnt.
    so i feel ive wasted aload of money buying songs i like for to put on my phone and i cant!!

    You can always put protected songs into a playlist and burn them out to an audio CD as is mentioned in this Apple article under "resolution"...
    http://support.apple.com/kb/TS1476
    Once you burn the Audio CD, it is just a normal Audio format CD that you can play on any normal audio CD player. Or insert into any computer drive and read. Just like your store bought audio CDs you have probably already ripped into iTunes.
    Cheers,
    Patrick

  • What equipment do I need for garage band

    Hi all have not yet bought a Mac but will do soon I hope.. just doing research first
    Some questions if anyone can help Garage band equipment needed
    1.      what spec. mac book/pro or Imac do i need ...ram ect.
    2.     what hardware do I need PreSonus/M-AUDIO have no idea what brand or keyboard pro keys
    I will be recording my guitar, Vocals( have a XLR mic) and some type of keyboard is M-AUDIO PROKEYS SONO 88 any good?
    Thanks for your help
    please any advise welcome
    Richie

    richardfromknocklyon wrote:
    Hi all have not yet bought a Mac but will do soon I hope.. just doing research first
    Some questions if anyone can help Garage band equipment needed
    1.      what spec. mac book/pro or Imac do i need ...ram ect.
    2.     what hardware do I need PreSonus/M-AUDIO have no idea what brand or keyboard pro keys
    I will be recording my guitar, Vocals( have a XLR mic) and some type of keyboard is M-AUDIO PROKEYS SONO 88 any good?
    Thanks for your help
    please any advise welcome
    Richie
    I think these days, any mac will do. Personally, I'd want to get one with Firewire since the interfaces I'd want to use are all firewire (with maybe 1 or 2 exceptions), and Thunderbolt isn't quite there yet with peripherals.
    If your music goals are more ambitious, you might weigh higher-end options, but in terms of basic garagebanding around, any current mac should work fine.
    M-Audio makes a variety of good keyboard controllers. I like the ones with at least a semi-wieghted keyboard like the Axiom series, or their fully weighted keyboards. I've got a keyboard background so the key action is important to me. 
    Here's a site that has a number of models on it to peruse.
    http://www.sweetwater.com/shop/keyboards/keyboard-controllers/
    Best is if you can feel the actual keyboard to see if you would be happy with it. If you've had a piano background, you'll probably want a better physical action than the cheapest synth actions. However, if you're just getting started, that might be fine. Outside of the keyboard itself, M-Audio controllers work well, and offer good bang for the buck.
    You would also want to get an audio interface. A link for those:
    http://www.sweetwater.com/shop/computer-audio/audio_interfaces/
    A lot depends on your budget. If you're just starting you can get away with something for around $100 or so. Double or tripple that for better quality. Add a zero for something even more substantial. Firewire is generally better, although RME makes a great USB interface now although it's pricey. A lot of the less expensive USB interfaces are widely used and popular, presonus, m-audio, motu, mackie, etc. The good thing about the Sweetwater site is you can see what other people seem to be buying these days.

  • What's the proper protocol for a reset on my ipod touch 4g?  iOS 6 has totally jacked it up and it will no longer do anything but crash, and won't sync with itunes wirelessly or by cable.

    What's the proper protocol for a reset on my ipod touch 4g?  iOS 6 has totally jacked it up and it will no longer do anything but crash, and won't sync with itunes wirelessly or by cable.
    It's a 64G ipod touch and was fine till Apple told me to upgrade to ios 6.  Now most of my apps crash, my music won't play and I just get a white screen when I hit Music.
    When I try to sync to itunes it acts like it's going to sync and appears to recognize the ipod, but it's grayed out and has an update circle by it that spins for a while until itunes eventually freezes alltogether.  Is there a  way to go back to ios 5 after a erase and reset?

    iOS: Unable to update or restore

Maybe you are looking for