USB 6009 DAQ to use in Simulink at External mode with DAQ toolbox

hi
Currently I am using usb 6009 daq board for data acquisition in using simulink. I have created a model with taking analog input from data acquisition toolbox. Then when i want to run in external mode and try to connet to target, the following error is coming up:
Could not execute target data map file 'untitled_rtwin_win32\untitled_targ_data_map' or it does not exist. Stop the target, delete the untitled executable, rebuild the code,and try again. Note that execution of external mode requires the build directory to be present...
How can I solve this problem? For your info, I am using 32-bit matlab, version: 2012a
For your info, a snapshot of the error is attached,
Any help would be appreciated Thanks
Attachments:
Untitled.jpg ‏130 KB

Hi Mahmudur,
what does MathWorks say about this error message?
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome

Similar Messages

  • Can the mac osxlion usb jump drive be used after as a external drive for storing media files

    can the mac osxlion usb jump drive be used after as a external drive for storing media files

    If you are talking about the Lion install USB thumb drive sold by Apple then no it can't. it has some specail formatting that makes it show up as a DVD drive and is securely locked from any changes.
    But I must ask why would you want to. That would destroy that drive and wipe out the Lion installer.
    USB thumb drive can be bought for $8.

  • Is there a way to use the iMac's display mode with a Mac mini with out logging in first on the Mac mini

    Is there a way to use the iMac's display mode with a Mac mini with out logging in first on the Mac mini (late2014)
    im currently useing my Mac mini as a portable computer, I take it to the university and use the iMacs there as a monitor but before I can do that I have to log in to my Mac mini first which means doing it blind
    is there a way to put the IMacs into display mode with out logging into my Mac mini first
    or is there a portable monitor that I can use that will not require me to login first

    This
    Target Display Mode: Frequently Asked Questions (FAQ) - Apple Support
    says:
    How do I enable TDM?
    Make sure both computers are turned on and awake. 
    Connect a male-to-male Mini DisplayPort or ThunderBolt cable to each computer.
    Press Command-F2 on the keyboard of the iMac being used as a display to enable TDM.
    Note: In Keyboard System Preferences, if the checkbox is enabled for "Use all F1, F2, etc. keys as standard functions keys," the key combination changes to Command-Fn-F2.
    How do I exit TDM?
    To leave TDM, press Command-F2 on the keyboard of the iMac that is in TDM. You can also exit TDM if you shutdown or sleep either computer or detach the cable.
    Can I use a third-party keyboard or older Apple keyboard to enable TDM?
    Some older Apple keyboards and keyboards not made by Apple may not allow Command-F2 to toggle display modes. You should use an aluminum wired or wireless Apple keyboard to toggle TDM on and

  • Can you install tiger on a power mac g4 with out a DVD drive if so how, I do have have a 2011 iMac can I use that in target disk mode with a FireWire cable any help would be appreciated

    Can you install tiger on a power mac g4 with out a DVD drive if so how, I do have have a 2011 iMac can I use that in target disk mode with a FireWire cable any help would be appreciated

    Hello,
    You need to put the Tiger Install Disc in the 2011 iMac, boot the 2011 uMac into Target mode...
    http://support.apple.com/kb/HT1661
    Boot the G4 holding the Option or alt key, hopefully the Install Disc in the 2011 iMac will show as a boot choice.
    We just want to use the 2011 iMac as a big expensive FW Optical drive, it cannot be installed osing the 2011 iMac itself.

  • HT3131 I purchased a sony 3d monitor and I am using it for my external display with my macbook pro.  We have followed the instructions but no display!!??  What do I do

    I purchased a sony 3d monitor and I am using it for my external display with my macbook pro.  We have followed the instructions but no display!!??  What do I do now

    We need more information if members of the forum are going to assist you.
    What instructions did you follow?
    How are you connecting your MBP to the Sony TV?
    Which model MBP do you have?

  • Any one use an Apple MA034 external modem with PowerbookG4 running Tiger?

    any one use an Apple MA034 external modem with PowerbookG4 running Tiger?

    Not too common with G4 PowerBooks as they have an internal modem. I can't find Apple's sepcs but a third-party ad shows it minimally needs 10.4.3 or higher and a G-series processor. That should work.
    However, the Apple version is expensive used. I googled Apple MA034 external modem and found an Amazon page that showed other compatible modems that were much cheaper.

  • Can I use Time Capsule as external drive with a Time Capsule?

    I have a Time Capsule set up with AirPort and it works well for backups.  Can I buy a second Time Capsule and plug it into this TC with ethernet and use it as an external drive?

    jshafer wrote:
    So, you are recommending using a USB drive into the TC or using an NAS plugged into the ethernet port...is that correct?
    Yes, correct. USB drive is not fast but it is still mostly going to be faster than wireless.. it is of course slower than ethernet.. so what you are using on your clients dictates what is the rate determining step of the network.
    Am I correct in thinking that an NAS using ethernet connection would be faster than USB?
    Does a true NAS have its own internal backup system?
    Yes, to both.. but remembering the client has to be able to make use of it. ie is also ethernet.
    True NAS is faster than TC as they use RAID systems.. more reliable.. you can replace disks in the raid.. TC is sealed.. and all decent NAS will be able to back themselves up to a USB drive.. on incremental basis.. which is major shortcoming when people try and use the TC in this role.

  • Anyone have a example for useing volitile image in exclusive mode with

    i need a example of how to use a volitile image in exclusive mode with active rendering .
    anyone know of one or even partial code of how to do it ive been racking my brain trying to figure out how to do it.
    or even a example of fullscreen that i can use to draw to the screen in exclusive fullscreen mode.
    and im not talking about the sun tutorial no one can even answer my question about it when i asked in the java forum

    by the way, here's a commented version of the example I gave earlier in case the puzzle pieces are upside down for you...
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    /* Goes into FullScreen with 640x480 16 bit
    * Not all proper checks are made (like getting available DisplayModes),
    * But you can always look at the doc for the rest of the checks. Besides,
    * What computer doesn't have 640x480...?
    public class Example extends Frame implements Runnable, KeyListener {
         VolatileImage v;
         int w,h,x,size; // x and size are for the moving ball
         boolean done; // when this is true, the program exits
         public Example() {
              /* Sets up the frame to be used for fullscreen */
              super(GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration());
              GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
              /* the below 2 methods aren't required
              * but using them results in best performance.*/
              setUndecorated(true);
              setIgnoreRepaint(true);
              /* A few mandatorial checks */
              if (device.isFullScreenSupported()) {
                   device.setFullScreenWindow(this);
              if (device.isDisplayChangeSupported()) {
                   device.setDisplayMode(new DisplayMode(640,480,16,0));
              /* our frame must be showing before we
              * we create our BufferStrategy or image,
              * in this case a VolatileImage.
              * Showing our frame also switches to
              * fullscreen mode.
              show();
              w = getSize().width;
              h = getSize().height;
              x = 0;
              size = 30;
              v = createVolatileImage(w,h); // creates volatile image (duh)
              done = false; // program exits when true
              addKeyListener(this); // used for exiting
              new Thread(this).start(); // starts the thread
         public void run() {
              while (!done) {
                   x += 2; // increase ball location
                   if (x >= w-size) x = 0; // back to left if all the way right
                   /* You could also use repaint() here,
                   * but you won't get a screen update
                   * until the system decides it's time.
                   * calling paint(getGraphics()) is much faster
                   paint(getGraphics());
                   /* Pausing of the thread... */
                   try {
                        Thread.sleep(1);
                   catch (InterruptedException e) {
                        done = true; // exit if there was some error
              System.exit(0); // this won't be called until done is true
         public void paint(Graphics g) {
              /* this attempts to get the graphics
              * from VolatileImage */
              Graphics gfx = v.getGraphics();
              /* If VolatileImage has no image memory,
              * we restore it and get the graphics for it */
              while (v.contentsLost()) {
                   if (v.validate(getGraphicsConfiguration()) == VolatileImage.IMAGE_INCOMPATIBLE) {
                        v = createVolatileImage(w,h);
                   gfx = v.createGraphics();
              /* this paints the ball etc */
              gfx.setColor(Color.black);
              gfx.fillRect(0,0,w,h);
              gfx.setColor(Color.cyan);
              gfx.fillOval(x,h/2-(size/2),size,size);
              g.drawImage(v,0,0,null); // draw the VolatileImage
         public void update(Graphics g) { // used for no blinking
              paint(g);
         public void keyPressed(KeyEvent e) {
              if (!done) done = true; // program exits on any key press
         public void keyReleased(KeyEvent e) {}
         public void keyTyped(KeyEvent e) {}
         public static void main(String[] args) {
              new Example();
    }

  • HT1665 how come i cant use other headphones or external speakers with my ipod

    how come i cant use headphones or external speakers with my ipod.sood as you plug either in there is no sound.

    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so.
    Try the following to rule out a software problem
    - Check also Settings > General > Accessibility > Hearing. Make sure that the sound balance is not set all the way to "R".
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store. Seems you have a bad headphone jack.
    Apple Retail Store - Genius Bar
    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price                  
    A third-party place like the following will replace the jack for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the jack yourself
    iPod Touch Repair – iFixit

  • Will the memory leak for queue when used in producer and consumer mode in DAQ to transfer different sized array.

    In the data acquisition, I use one loop to poll data from hardware, another loop to receive the data from polling loop sent by queue.
    But everytime the size of the transferred data array may not be the same, so the system may assign different array size and recycle very frequently.
    Will it cost memory leak. Or will it slow down the performance, since the array size is not fixed, so every time need to create a new sized array.
    Any suggestion or better method. 
    Solved!
    Go to Solution.

    As i understand your description, your DAQ-loop acquires data with the setting '-1' for samples to read at the DAQmx read function. This results in the different array sizes.
    Passing those arrays directly to a queue is valid and it does not have significant drawback in performance (at least as far as i know) and it definetly does not leak memory.
    So the question is more or less:
    Is it valid that your consumer receives different array sizes for analysis? How does your consumer handle those arrays? 
    hope this helps,
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Can I use Front Row on external monitor with MacBook Pro's cover closed?

    I've seen that you can use the remote to control Front Row even when the lapatop's cover is closed (on a MacBook Air). Is it possible with a first generation MB Pro? Are there special settings?
    Thx

    You can use a MacBook Pro in "clamshell" mode if you have the AC adapter plugged in for power, an external display attached and an external keyboard and mouse (USB or Bluetooth) to wake the computer after it's been closed. This is the official word from Apple:
    http://support.apple.com/kb/HT3131
    However, even if you don't have a keyboard and mouse, you should still be able to wake the MacBook Pro using the Apple remote by pressing the "menu" button. (You do still need to have the power plugged in and the display plugged in.)
    -Doug

  • Question on Using thunderbolt iMac as external display with a Macbook Air

    If I connect my macbook air to new thunderbolt iMac - can I access peripherals attached to usb, firewire, ethernet like the thunderbolt 27"?
    if so how can i do this?
    thanks!
    Derrick

    Thunderbolt 10.6 Help: Using another Mac as an external display
    Only video and in some scenarios audio is transmitted. Nothing else.
    Stefan

  • Use iMac in Target Display Mode with a Power Mac G4

    I would like to connect my Power Mac G4 MDD (Model = http://support.apple.com/kb/SP63) to the new iMac (27 inch, Mid 2010) in Target Display Mode. That is, I want the new iMac to be the display for my Power Mac G4. Has anybody done this (including using the iMac 27 inch, Late 2009, which can also do this)? In a general sort of way, this sort of thing is described on this support page: http://support.apple.com/kb/ht3924.
    The problem: The iMac requires a Mini Displayport connection. The PowerMac has ADC and DVI-I display connections and also came with an adapter for converting DVI-I to VGA. How can I convert/adapt to get the appropriate Mini Displayport connection?
    Gefen makes a converter (http://www.gefen.com/kvm/dproduct.jsp?prod_id=8913) that will convert DVI-D to Mini Displayport, but the description explicitly says that it will work with DVI-D only while my PowerMac has DVI-I. I know that these are two different, incompatible connections.
    Is there another converter that works with DVI-I? Or is there a way to adapt from DVI-I to DVI-D? Or how about a VGA or ADC to Mini Displayport converter?
    Thanks.

    japamac-
    Thanks so much for your reply. You're right on target for what I'm looking for and that article is VERY helpful! If you don't mind, I do have a couple more questions/clarifications.
    1) First, I think that I didn't read the Wikipedia reference concerning DVI (http://en.wikipedia.org/wiki/DigitalVisualInterface) closely enough. It includes the following paragraph. If I understand it and what you said, it shouldn't be a problem to connect the male DVI-D of the converter into the female DVI-I socket of my Power Mac. Right?
    +The long flat pin on a DVI-I connector is wider than the same pin on a DVI-D connector, so it is not possible to connect a male DVI-I to a female DVI-D by removing the 4 analog pins. It is possible, however, to connect a male DVI-D cable to a female DVI-I connector. Many flat panel LCD monitors have only the DVI-D connection so that a DVI-D male to DVI-D male cable will suffice when connecting the monitor to a computer's DVI-I female connector.+
    2) I'm not clear on the difference between the Altona AT-DP200 and the Gefen converter. The Gefen converter is somewhat less expensive, so I'm trying to figure out what the downside is. The article you mentioned says that the ATP-DP200 "doesn't scale images", but that seems to only be an issue if I'm trying to connect other devices (PS3, Blu-ray), not if I just want to connect my Power Mac.
    The description of the Gefen converter includes the following drawbacks:
    +The only major drawback to Gefen's solution is no support for VGA devices or HDCP. A minor gripe would be the fact that the Gefen device only accepts one input resolution and only outputs one resolution (1920 x 1200 at 60 Hz). These limited options aside, the Gefen device looks like it could do the basic trick of transforming a DVI signal to Mini DisplayPort so that you could use your 27" iMac for a few more purposes, provided that the input signal carries the required 1920 x 1200 resolution.+
    I'm not clear on what the practical impact of those limitations would be. I don't think the the lack of support for VGA devices or HDCP is an issue for my application. But I'm wondering about the statement that it only accepts one input resolution and outputs only one resolution (1920 x 1200) and the need for the input signal to carry 1920 x 1200. I take it, first of all, that the Power Mac can supply that input resolution. And, what is the impact of the device only having that resolution output to the iMac screen? That is, how would that look on the screen, ugly or okay? Finally, would the Altona device provide a better looking output on the iMac screen because it can apparently handle different resolutions? The manufacturer's description says, "Resolutions: all resolutions up to 1920x1200 (It is Important to select one of the resolutions that display
    is capable of displaying, refer to your display’s users manual)."
    Thanks again.

  • How can I use a 3.5mm external mic with an iPad 3?

    Do I require an adapter? Different App? I would like to use it with GarageBand.
    This is the microphone I wish to record with:
    http://www.giant-squid-audio-lab.com/gs/gs-stereo1.htm
    Thank you for any/all help,

    Thank you for your help but how can i compare my temp int i to the tpList array?
    I wanted to do something like this
    if( i == tpList)
    System.out.println(tpList[i].toString() + "\n");
    but I will get prompt to inform me that
    if( i == tpList[i])
    incomparable types : int and TimePiece
    Please advise.
    Thank you

  • Using samples on an external drive with the ESX24

    Can anybody help me with this?!:
    I have some Gigastudio Samples on an external drive and I am trying to use them in Logic with the ESX24; I know there is a way to do this by creating an alias somewhere in the library folder in my HD. does anyone know how to do this?
    Please help!

    Yes, EXS will tell you, if you go here by clicking on 'options':
    ...and select Giga convert...
    regards, Erik.

Maybe you are looking for

  • Is a gateway mandatory for RAC environment?

    Question: Is a gateway mandatory for RAC installation, general on RAC environment? *..when yes, why?* Many thanks I make this test with my only one RAC node 1. Run with gateway: [oracle@linux1 ~]$ crs_stat -t Name           Type           Target    S

  • Java.lang.ExceptionInInitializerError,Could not instantiate TransactionMana

    hi all, <b>i am using SAP Netweaver Developer studio. have problem using hibernate in a EJB Modul Project. i have create a stateless session bean to writie the bussiness logic using my hibernate mapping classes, but somehow i get the error:</b> Detai

  • Encore cs5 encode fails

    Made avi's in Premiere Pro cs5. When we import them to Encore cs5 and try to Transcode they come up with Encode Failed error. What is our fix? Trying to encode in Adobe Media but that doesn't always work either.

  • TNS Refuse error after Redirect using RAC

    First off, I'm using the JDBC driver 10.2.0.4.0 with the "10g data store helper" selected in WebSphere against a 10g database configured for RAC. I don't have the configuration details for the database, but can get them if needed. WebSphere JDBC stri

  • "boot drive" is "startup disk". also how do i repair these?

    are these two the same terms meaning the same thing irrespective of how many partitions you have on a drive or is there some distinction i should understand? also, i can Verify a startup disk but i cannot Repair one is that right? if so, how do i fix