Problems with matlab labview interface

I wrote a code to check the interface of Matlab and LabView. I am reading a matrix from a file and created two 1D subarrays using index array out of it. I am passing the subarray as input in the matlab script to calculate its length. With subarray 2 in the vi I am getting the result I expect. When I choose the subarray 1  as input to the Matab script, LabView crashes.
Is there any problem with my code?
 

There is no need to host files somewhere else.  Feel free to upload them to the forums and attach them to your post.
Minor comments first.  Why are you re-reading your config file every 2 seconds?  Do you expect it to change?  If not then read it once and don't read it again.
I think it would be best if you stopped when an error occured, you can do this by wiring an error to the Or going into the stop condition, or use the compound arithmatic with Or.
But I think the major issue you have is that your Arduino reference can be wipped out if you do things wrong.  If your equal comparision is false you go to the false case, where you aren't passing the arduino reference.  So when you go to close you won't close your reference, and your hardware will still be open, and trying to run again will result in an error.  Similarly if your for loop runs for 0 iterations your reference is lost.  Attached is an updated version which has some of these changes.
Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.
Attachments:
Prueba 1 Hooovahh Edit2.vi ‏765 KB

Similar Messages

  • Problems with Java AQ interface migrating 9i to 10g

    Hi!
    I've got problems with Java AQ Interface migrating from 9i DB, JDBC, AQ to 10g rel.2 DB, JDBC, AQ
    First, i started to occasionally receive NullPointerException in Oracle JDBC 9.2.0.8
    java.lang.NullPointerException
    at oracle.jdbc.driver.OracleStatement.describe(OracleStatement.java:6439)
    at oracle.jdbc.driver.OracleStatement.get_column_index(OracleStatement.java:6203)
    at oracle.jdbc.driver.OracleResultSetImpl.findColumn(OracleResultSetImpl.java:1557)
    at oracle.jdbc.driver.OracleResultSet.getString(OracleResultSet.java:1543)
    at gpnic.messaging.LDAPMessenger.messageFromRS(Unknown Source)
    We were using 9.2.0.8 JDBC and 9i and 10g databases.
    We decided to go up for 10g r2 JDBC Drivers, and 10.2 AQ but started to get the following errors:
    oracle.AQ.AQOracleSQLException: ORA-25216: invalid recipient, either NAME or ADDRESS must be specified
    ORA-06512: на "SYS.DBMS_AQIN", line 454
    ORA-06512: на line 1
         at oracle.AQ.AQOracleQueue.enqueue(AQOracleQueue.java:1267)
         at gpnic.comm.messaging.transport.AQTransportAdapter$AQDestanation.send(AQTransportAdapter.java:607)
         at gpnic.comm.messaging.transport.OutboundThread.run(OutboundThread.java:83)
    I'm specifying address of an agent, but oracle says I am not.
    I tried both native AQ and JMS interfaces, bot got the same error. I specify recipient the following way:
    'consumer' var contains name of AQ agent and is not null
    native AQ interface:
    aqSess = AQDriverManager.createAQSession(db_conn);
    AQQueue destQ = aqSess.getQueue(schema, queue);
    dequeueOptionsOut = new AQDequeueOption();
    dequeueOptionsOut.setWaitTime(AQDequeueOption.WAIT_NONE);
    dequeueOptionsOut.setConsumerName(consumer);
    dequeueOptionsOut.setDequeueMode(AQDequeueOption.DEQUEUE_REMOVE);
    dequeueOptionsOut.setNavigationMode(AQDequeueOption.NAVIGATION_FIRST_MESSAGE);
    AQMessageProperty mpOut = new AQMessageProperty();
    Vector vRecpt = new Vector();
    vRecpt.add(new AQAgent(consumer, null, 0));
    mpOut.setRecipientList(vRecpt);
    AQMessage aqMsg = null;
    AQEnqueueOption eOpt = null;
    //prepare message
    aqMsg = destQ.createMessage();
    CLOB chMsg = CLOB.createTemporary(db_conn, true, CLOB.DURATION_SESSION);
    chMsg.open(CLOB.MODE_READWRITE);
    chMsg.putString(1,msg);
    //creating oracle type message
    gpnic.db.SDSTypes.SdsMsgT oraMsg = new gpnic.db.SDSTypes.SdsMsgT(chMsg);
    AQObjectPayload payload = aqMsg.getObjectPayload();
    payload.setPayloadData(oraMsg);
    //setting properties
    aqMsg.setMessageProperty(mpOut);
    //do enqueueOut
    eOpt = new AQEnqueueOption();
    destQ.enqueue(eOpt, aqMsg); //<- here AQOracleSQLException is thrown
    JMS interface to Oracle AQ:
    TopicSession session;
    TopicConnection connection;
    TopicPublisher publisher;
    AQjmsAgent[] recipientList;
    connection = AQjmsTopicConnectionFactory.createTopicConnection(db_conn);
         session = connection.createTopicSession(true, Session.CLIENT_ACKNOWLEDGE);
         connection.start();
         Topic topic = ((AQjmsSession) session).getTopic(schema, queue);
         publisher = session.createPublisher(topic);
         recipientList = new AQjmsAgent[1];
         recipientList[0] = new AQjmsAgent(consumer, null);
    CLOB chMsg = CLOB.createTemporary(db_conn, true, CLOB.DURATION_SESSION);
    chMsg.open(CLOB.MODE_READWRITE);
    chMsg.putString(1,msg);
    //creating oracle type message
    gpnic.db.SDSTypes.SdsMsgT oraMsg = new gpnic.db.SDSTypes.SdsMsgT(chMsg);
    AdtMessage adtMessage = ((AQjmsSession)session).createAdtMessage();
    adtMessage.setAdtPayload(oraMsg);
    ((AQjmsTopicPublisher) publisher).publish(adtMessage, recipientList); <- here Exception is thrown
    We tried the following combinations
    9i DB, 9i jdbc, 9i aq - enqueue ok
    10g DB, 9i jdbc, 9i aq - enqueue ok
    10g DB, 10g jdbc, 10g aq - exception is thrown
    Can anyone help?

    Duplicate post, please check Upgrade 9i to 10g

  • Problems with SOAP Adapter/Interface

    Hi Experts,
    we currently try and experiment with XI 3.0 Stack 09 and the SOAP adapter respectively.
    We started with a simple interface (foo..., see wsdl attachment) that we want to provide by XI.
    All configurations (SLD, Integration Repository, Integration Directory) should have been done accordingly as we suppose, similar to other szenarios we have already implemented.
    When we send a SOAP request based on a generated wsdl to XI we get the exception at the bottom of this text, containing e.g.
    com.sap.aii.messaging.srt.BubbleException: error during conversion [null "null"];
    com.sap.aii.messaging.util.XMLScanException: Parsing an empty source. Root element expected!
    For sending the SOAP message we used XMLSpy.
    Did someone have similar problems or can give us an working WSDL example, or some hint?
    Thanks in advance,
    Klaus Lukas
    foo.wsdl
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:p1="urn://poreceive.xi.pse.siemens.com" targetNamespace="urn://poreceive.xi.pse.siemens.com" name="foo_out_sync">
         <wsdl:types>
              <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn://poreceive.xi.pse.siemens.com" targetNamespace="urn://poreceive.xi.pse.siemens.com">
                   <xsd:element name="foo" type="foo_DT"/>
                   <xsd:complexType name="foo_DT">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                        fe0bb241d2a011d9cd15e9729ee2f568
                        </xsd:appinfo>
                        </xsd:annotation>
                        <xsd:sequence>
                             <xsd:element name="item" type="xsd:string">
                                  <xsd:annotation>
                                       <xsd:appinfo source="http://sap.com/xi/TextID">
                                fe0bb240d2a011d9acede9729ee2f568
                                </xsd:appinfo>
                                  </xsd:annotation>
                             </xsd:element>
                        </xsd:sequence>
                   </xsd:complexType>
              </xsd:schema>
         </wsdl:types>
         <wsdl:message name="foo">
              <wsdl:part name="foo" element="p1:foo"/>
         </wsdl:message>
         <wsdl:portType name="foo_out_sync">
              <wsdl:operation name="foo_out_sync">
                   <wsdl:input message="p1:foo"/>
                   <wsdl:output message="p1:foo"/>
              </wsdl:operation>
         </wsdl:portType>
         <wsdl:binding name="foo_out_syncBinding" type="p1:foo_out_sync">
              <soap:binding xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
              <wsdl:operation name="foo_out_sync">
                   <wsdl:input>
                        <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"/>
                   </wsdl:input>
                   <wsdl:output>
                        <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"/>
                   </wsdl:output>
              </wsdl:operation>
         </wsdl:binding>
         <wsdl:service name="foo_out_syncService">
              <wsdl:port name="foo_out_syncPort" binding="p1:foo_out_syncBinding">
                   <soap:address location="http://xxxxxxxx:8000/XISOAPAdapter/MessageServlet?channel=:Foo_SOAP_Service:SOAP_Foo_out&version=3.0&Sender.Service=Foo_SOAP_Service&Interface=urn%3A%2F%2Fporeceive.xi.pse.siemens.com%5Efoo_out_sync" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
              </wsdl:port>
         </wsdl:service>
    </wsdl:definitions>
    soap message incl. error
    <?xml version="1.0"?>
    <!-- see thedocumentation -->
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP:Body>
    <SOAP:Fault>
    <faultcode>SOAP:Server</faultcode>
    <faultstring>error during
    conversion</faultstring>
    <detail>
    <s:SystemError
    xmlns:s="http://sap.com/xi/WebService/xi2.0">
    <context>XIAdapter</context>
    <code>XMLScanException</code>
    <text><![CDATA[
    com.sap.aii.af.mp.module.ModuleException
    at com.sap.aii.af.mp.soap.ejb.XISOAPAdapterBean.process
    (XISOAPAdapterBean.java:697)
    at
    com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl3.process
    (ModuleLocalLocalObjectImpl3.java:103)
    at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process
    (ModuleProcessorBean.java:221)
    at
    com.sap.aii.af.mp.processor.ModuleProcessorLocalLocalObjectImpl0.process
    (ModuleProcessorLocalLocalObjectImpl0.java:103)
    at com.sap.aii.af.mp.soap.web.MessageServlet.doPost
    (MessageServlet.java:543)
    at javax.servlet.http.HttpServlet.service
    (HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service
    (HttpServlet.java:853)
    at
    com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet
    (HttpHandlerImpl.java:385)
    at
    com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleReques
    t(HttpHandlerImpl.java:263)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet
    (RequestAnalizer.java:340)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet
    (RequestAnalizer.java:318)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebConta
    iner(RequestAnalizer.java:821)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.handle
    (RequestAnalizer.java:239)
    at com.sap.engine.services.httpserver.server.Client.handle
    (Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request
    (Processor.java:147)
    at
    com.sap.engine.core.service630.context.cluster.session.ApplicationSessio
    nMessageListener.process(ApplicationSessionMessageListener.java:37)
    at
    com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner
    .run(UnorderedChannel.java:71)
    at com.sap.engine.core.thread.impl3.ActionObject.run
    (ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute
    (SingleThread.java:94)
    at com.sap.engine.core.thread.impl3.SingleThread.run
    (SingleThread.java:162)
    Caused by: com.sap.aii.messaging.srt.BubbleException: error during
    conversion [null "null"]; nested exception caused by:
    com.sap.aii.messaging.util.XMLScanException: Parsing an empty source.
    Root element expected!
    at
    com.sap.aii.messaging.srt.xmb.XMBWebServiceExtension.onResponseToWS
    (XMBWebServiceExtension.java:936)
    at
    com.sap.aii.messaging.srt.xmb.XMBWebServiceExtension.invokeOnResponse
    (XMBWebServiceExtension.java:602)
    at com.sap.aii.messaging.srt.ExtensionBubble.onMessage
    (ExtensionBubble.java:58)
    at com.sap.aii.af.mp.soap.ejb.XISOAPAdapterBean.process
    (XISOAPAdapterBean.java:576)
    ... 20 more
    Caused by: com.sap.aii.messaging.util.XMLScanException: Parsing an
    empty source. Root element expected!
    at com.sap.aii.messaging.util.StreamXMLScannerImpl.open
    (StreamXMLScannerImpl.java:104)
    at com.sap.aii.messaging.mo.DefaultItem.setData
    (DefaultItem.java:294)
    at
    com.sap.aii.messaging.srt.xmb.XMBWebServiceExtension.makeItemFromPayload
    (XMBWebServiceExtension.java:972)
    at
    com.sap.aii.messaging.srt.xmb.XMBWebServiceExtension.onResponseToWS
    (XMBWebServiceExtension.java:879)
    ... 23 more
    ]]></text>
    </s:SystemError>
    </detail>
    </SOAP:Fault>
    </SOAP:Body>
    </SOAP:Envelope>

    Hi Klaus
    In your wsdl file the soap address tag (given below)
    <b><soap:address location="http://xxxxxxxx:8000/XISOAPAdapter/MessageServlet?channel=:Foo_SOAP_Service:SOAP_Foo_out&version=3.0&Sender.Service=Foo_SOAP_Service&Interface=urn%3A%2F%2Fporeceive.xi.pse.siemens.com%5Efoo_out_sync" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/></b>
    is to be edited as
    <b><soap:address location="http://xxxxxxxx:50000//XISOAPAdapter/MessageServlet?channel=:Foo_SOAP_Service:SOAP_Foo_out" /></b>
    because the soap address format should be like :
    <i>http://host:port/XISOAPAdapter/MessageServlet?channel=party:service:channel</i>
    For more information :
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/5ab43b274a960de10000000a114084/frameset.htm
    Hope this will be helpful.
    Regards
    Suraj

  • Problems with H2 digital interface

    I have a SoomH2, and a macbook, os 10.5.8. When I plug into the USB, to use as a mike for garage band, the sound going into the computer is all distorted and shows a solid thick wad of sound on the garage band recording level, despite turning down the gain on the H2 and/or the macbook. There is a backround of static, even if there is no sound going in. I have had the same problem with the power off, running off of the USB, with batteries and turned on, and with the external power. An old posting said to put a USB powered hub in between, but if I am already plugged in, with the H2 on, that should not be necessary.
    When new, the H2 worked, but developed this problem intermittently, and now does it all the time. Put a new software version into the H2, no difference.
    Used by itself, the H2 is fine, and you can download into garage band. The macbook internal mike does not have any problems, and goes into garage band just fine,  but is not a high quality mike for music. Has anyone else had a problem like this, and how did you resolve it. Thanks for any help.

    Hi Klaus
    In your wsdl file the soap address tag (given below)
    <b><soap:address location="http://xxxxxxxx:8000/XISOAPAdapter/MessageServlet?channel=:Foo_SOAP_Service:SOAP_Foo_out&version=3.0&Sender.Service=Foo_SOAP_Service&Interface=urn%3A%2F%2Fporeceive.xi.pse.siemens.com%5Efoo_out_sync" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/></b>
    is to be edited as
    <b><soap:address location="http://xxxxxxxx:50000//XISOAPAdapter/MessageServlet?channel=:Foo_SOAP_Service:SOAP_Foo_out" /></b>
    because the soap address format should be like :
    <i>http://host:port/XISOAPAdapter/MessageServlet?channel=party:service:channel</i>
    For more information :
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/5ab43b274a960de10000000a114084/frameset.htm
    Hope this will be helpful.
    Regards
    Suraj

  • Audio problems with an USB interface

    Hi everyone, this is my first post and glad to finally do it.
    I am so pleased with arch linux, it's just simply amazing. I have learnt a lot following the wikis, it's pretty simple and effective.
    I managed to install and configure ssh server, samba server (surprisingly easy), usb samsung laser printer, nvidia drivers, KDE desktop (so fast in arch), fonts, cpu scaling and I'm so happy with the results and perfomance.
    The only problem I ran into is about audio, I think the wiki on audio is pretty  incomplete (don't get me wrong I enjoy your work).
    The problem is with an USB interface line 6 toneport gx (http://line6.com/toneportgx/), I know the device is meant to be an usb guitar interface but since I don't longer play guitar I use it as soundcard. As complementary information it works with no problem on Ubuntu 10.04 (which is the distro I came from).
    The interface works and it's unmuted since I dmix does not work when I try to play sounds from different sources I had to install pulseaudio. Pulseaudio works partially, the sound was improved and finally I am able to play different sources. The big problem is when high cpu load ocurrs the the audio dies and does not come back even when the cpu loads decrease.
    Any help is appreciated.
    Thanks.

    You may want to debug pulseaudio (check their wiki to see how, involves running pulseaudio in verbose mode) to see what happens.

  • Problem with different Labview platform

    Maybe this issue must be address to NI.
    I have this library calling a register DLL. The purpose of the library is to convert a type of movie file from hard drive(*.mcf type) to image stream then to show and eventualy to save it.
    The DLL is designed by NAC camera designer, which is a high speed camera. The code is based on properties, methodes and events from DLL.
    Code works well in Labview 8.6.1, in Labview 11.0.1, Labview 12.0f3. Unfortunately code does not work in Labview 11.0.1f2 which happens to be the one I am developing my applications.
    I will post the code developed by NI Japan (camera also is designed in Japan) and the mcf file as well as the DLL which must be registered.
    The code is compiled in 8.6.1.
    Register first the dll then open the NAC MCFF Control_E.vi.
    Brows the mcf file
    Press Open button
    Slide the frames one by one for showing the images content of the mcf.
    If you want to open under other labview then 8.6.1 then copy the folder and run a mass compile under that version then open the same top vi.
    Please, show me what is different for different versions of labview then in my version does not work.
    Than you,
    Virginia
    Solved!
    Go to Solution.

    Just because it doesn't crash does not mean automatically that everything is alright. You just might be unlucky that the memory corruption does not happen in a vital part of the LabVIEW memory.
    Now, when loading your LLB in LabVIEW on my machine, the first indication that something is wrong would be the error message that C:\Windows\System32\gdi32.dll could not be found. And indeed this is a system DLL that should never be referenced by the full path but simply by the DLL name alone. So change the Library Name or Path in the CLN inside the nac_NI_BitmapRead.vi to just "gdi32.dll" (without quotes). And when you are at it, change the first parameter to be a pointer sized integer too, since this IS a pointer.
    Now look in the configuration dialog in the Function tab a bit further down and notice that the Calling convention is set to C. 99% of all Windows userspace APIs are really stdcall under Win32 and fastcall under Win64. A "bug" in LabVIEW versions before 2009 attempted to automatically fix wrong calling conventions from C to stdcall, based on certain naming attributes of the actually exported function in the DLL (and no, LabVIEW does not show those decorated names but the human readable name). The problem with this fix was that it did not allow for calling (admittingly seldom but nevertheless possible configurations) of DLL functions that happen to follow this naming scheme but were explicitedly declared cdecl by the programmer.
    Try it and tell us if that will help.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Problem with FireWire audio interface (Edirol FA-66)

    I am experiencing the following problem with my FireWire Audio interface via Edirol FA-66. At unpredictible moments the 'Digital In' LED starts blinking, and after that the audio signal stops working. I do not know if Logic is the culprit, since it also happens now and then with iTunes
    Note: there are digital in/outs connected.
    Only shutting down the Edirol and restarting the iMac G5 resolves the problem, be it only temporary: after a while the phenomenon shows up again.
    Extremely ennoying.
    What could be the culprit?
    Bonkie
    Belgium
    Earth

    Hi Patrick, I don't know that specific interface but could it possibly be that the flashing LED also act as an alert for when the firewire connection has gone down?
    Reason I suggest this is I have the same thing from with my iMac & focusrite saffire Le, where i lose audio now & then, & when it happens if i check in the interfaces software control panel it always has a 'firewire connection error' - I then just have to unplug & replug-in the interface to re-establish the firewire conection. Just a thought but maybe it's worth consulting the edirol manual/tech support to see if this is the case ref the LED function?
    Adam

  • XY board 60 x 60 mm with easy LabVIEW interface

    I am looking for a vendor of an XY-board that can travel 60 x 60 mm,
    and with an easy interface towards LabVIEW. Anybody got some
    recommendations ?
    Martin

    I'm not totally sure what you mean by XY-board. A quick google search for the term gives tablets and led displayes.. If this is what you search NI offers a LCD 4,3" 16:9 ratio it has serial interface through VISA programming.
    http://sine.ni.com/nips/cds/view/p/lang/sv/nid/212315
    If this is not at all what you seek please try to elaborate what you mean by XY-board that can travel 60x60mm
    Best Regards
    Jonas Mäki
    Applications Engineering
    National Instruments

  • Problem in ni labview interface simulation toolkit

    HI
    I use labview7.1,ni labview interface simulation
    toolkit v3.02,matlab R2006a,visual c++6 but I have a error when I use
    built in matlab.My file name is "a.mdl"
    Can you help me?
    *******************ERROR******
    Microsoft (R) Program Maintenance Utility   Version 6.00.9782.0
    Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
        mkdir C:\SimulationInterfaceToolkit\ModelInterface\\tmw\lib
            1 file(s) copied.
            1 file(s) copied.
    ### Compiling the source a
    cl -Ot  -DUSE_RTMODEL -DNI_ROOTMODEL_a -DMODEL=a -DRT -DNUMST=1 
    -DTID01EQ=0 -DNCSTATES=0  -DMT=0 -DHAVESTDIO
    -DNATIONAL_INSTRUMENTS_SIT   -c -W3 -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl
    -nologo -D_X86_=1 -D_WINNT -D_WIN32_WINNT=0x0400 -D_WIN32_IE=0x0300
    -DWINVER=0x0400 -DWIN32  -D_WIN32 -D_MT -D_DLL -MD -DRVE a.c
    a.c
    fatal error C1900: Il mismatch between 'P1' version '19991026' and 'P2' version '19970710'
    NMAKE : fatal error U1077: 'cl' : return code '0x2'
    Stop.
    C:\Program Files\MATLAB\R2006a\work\a_nidll_rtw>echo The make command returned an error of 2
    The make command returned an error of 2
    C:\Program Files\MATLAB\R2006a\work\a_nidll_rtw>An_error_occurred_during_the_call_to_make
    'An_error_occurred_during_the_call_to_make' is not recognized as an internal or external command,
    operable program or batch file.
    >>

    duplicate

  • Problems with USB Audio Interface

    My Behringer mixing board came with a USB Interface so I can out put the audio from the board into my laptop via USB. The trick is though Logic recognizes it and I can record say microphone audio from the board on Logic, I cannot hear the tracks that already on Logic. For instance, say I want to record a vocal track onto something I have created on Logic. Logic will let me record the microphone vocal but it won't allow me to hear the track, rendering it useless. It is a very simple USB interface and I have been thinking of upgrading but I am wondering if it something I am doing wrong on Logic. Any thoughts?
    Ken

    when you select , lets say the USB device in your audio preferences, it will be used as the input and output device. You can use the USB interface's audio outs plugged into your mixer, and use speakers or the headphone jack. When you create an aggregate device, using the USB device and your built in audio, and choose it in your audio preferences, this allows you to use the inputs and outputs of both the USB interface and your built in audio from your mac. So now you can record from one device while listening back on another. meaning you can record the audio from the USB device and listen back using your Mac speakers or from headphones plugged into your mac.
    if you get a better audio interface, one with mic inputs, you will still need to connect it to speakers or plug in headphones to it to hear audio. If you have the budget, a dedicated firewire audio interface will usually give better results, in audio quality, than a behringer mixer and a usb interface.

  • Problems with Lexicon Lambda Interface and Mac OS10.5

    Hi everybody
    I used my Audio interface Lexicon Lambda for a wile with 10.4 and it worked great. I updated now to 10.5.2 and since then I have buffer problems. I can change all the setting but it just change the time until it happen. Everything sound digital noise, a delay and so on.
    For test reasons I went back to 10.4 and it worked fine, now I am back on 10.5 and still problems.
    The answer from the Lexicon Pro Support was: "There are no firmware updates for the Lambda; however, there may be software updates for the Leopard OS that improve the performance of your audio application when using the Lambda hardware."
    So any ideas, any persons with similar problems? Is it just me, but in my opinion this should be a Lexicon problem, am I wrong?
    Thank you for all your answers.
    Marco

    Leopard is really a different OS. Lots of things have been changed in networking, security, core audio etc.
    Changes often carry problems.
    A 10.5.3 update is on the go but until then it's better if you remain with Tiger.
    cheers
    rob

  • Problem with payables open interface import-unable to pick invoice data

    Hi,
    I have put the Interface data in two staging table and then moved them to AP_INVOICES_INTERFACE and AP_INVOICE_LINES_INTERFACE tables.
    Code:
    insert into XXWU_AP_INVOICES_INTERFACE (
    invoice_id,
    invoice_num,
    vendor_id,
    vendor_site_id,
    vendor_site_code,
    invoice_amount,
    INVOICE_CURRENCY_CODE,
    invoice_date,
    DESCRIPTION,
    PAY_GROUP_LOOKUP_CODE,
    source,
    org_id,
    OPERATING_UNIT
    values (
    ap_invoices_interface_s.nextval,
    'INV345DJ',
    '3317',
    '14335',
    'ACH NY1',
    1200.00,
    'USD',
    to_date('01-31-2010','mm-dd-yyyy'),
    'This Invoice is created for test purpose',
    'WUFS SUPPLIER',
    'Manual Invoice Entry',
    81,
    'WU_USD_OU'
    insert into XXWU_AP_INVOICE_LN_INTERFACE (
    invoice_id,
    invoice_line_id,
    line_number,
    line_type_lookup_code,
    amount,
    org_id
    values (
    ap_invoices_interface_s.currval,
    ap_invoice_lines_interface_s.nextval,
    1,
    'ITEM',
    1200.00,
    81
    INSERT INTO AP_INVOICES_INTERFACE (SELECT * FROM XXWU_AP_INVOICES_INTERFACE);
    INSERT INTO AP_INVOICE_LINES_INTERFACE (SELECT * FROM XXWU_AP_INVOICE_LN_INTERFACE);
    I can very much see the data in Open Interface Invoices(Front End). But when I run the payables open interface import program with correct Operating Unit, Source and Batch Name, the program unable to pick the data from the interface tables and unable to create a invoice.
    Note:
    1] The program run successfully everytime, but there is no output in the output file.
    2] In the Log file One Message is there saying 'Zero(0) invoices were created during the process run.'
    3] All the initail setup is right, i think, because I ran the same program few days back and it was working fine and the invoices were created at that time. Now what is going wrong I am unable to figure it out.
    Please help ASAP.Thanks in Advance
    DJ Koch.
    Edited by: DJKOCH on 17 Aug, 2010 9:51 PM

    Can you run the program - Payables Open Interface Import with Debug mode set to Yes.
    Once the program completes sucessfully verify the log file of the program and try to find out if there are any invoices which is causing the exceptions.
    Also confirm that the invoices which are in the AP_INVOICES_INTERFACE and AP_INVOICE_LINES_INTERFACE tables are of the correct period in which you are trying to create the invoices.
    Hope this helps.
    Thanks and Regards
    Manish Jain.

  • Problem with Payables Open Interface Import

    We have a third party's software which uploads invoices into the OraFin's (11.5.9) AP_INVOICES_INTERFACE and AP INVOICES_LINES_INTERFACE tables. Then we run PAYABLES OPEN INTERFACE IMPORT PROGRAM, and Invoice_id in AP_INVOICES_ALL has different value then we just had before in interface tables.
    The sequence has replaced the Invoice_id with new one instead of just to transfer it to the base table (AP-Invoices_All) only.
    Is there any way to avoid the change of the given Invoice_id?
    Thanks for your prompt answer, Gurus :).

    The sequence has replaced the Invoice_id with new one instead of just to transfer it to the base table (AP-Invoices_All) only.Is there any way to avoid the change of the given Invoice_id?
    No.
    This is standard functionality. Invoice import program regenerates the invoice_id from sequence everytime the invoice is imported.
    Thanks
    Nagamohan

  • Anyone else notice a problem with VLC's interface recently?

    I have been using VLC for years without any notable issues. In the past month the interface has gotten very laggy. It takes longer to select menu items, and the  time slider bar is so unresponsive to be nearly unusable. All the other programs seem to be working fine. Anyone else have any insight on this?
    Here is what I tried so far:
    I deleted my ~/.config/vlc folder
    I tried downgrading to vlc-2.1.5-3
    I checked that  video hardware-accelerated decoding is enabled under Tools > Preferences > Input/Codecs
    I have Radeon HD 4250 integrated graphics with the open source driver.

    2.1.5 has been somewhat of a buggy release in general (Inclusion of VDPAU decoding but it doesn't actually work, had some crashes here and there) actually reading that you enabled HW acceleration might be a possible cause. From what I've heard most of these should be fixed in 2.2 and upstream even recommends to update to the 2.2 RC if you are on linux, because they apparently fixed many things (read in a mail announcing the RC release, didn't find that particular mail anymore but yeah)

  • Problem with the Labview PDA and file transfer.

    I�m using PALM Tungsten T3 to run some applications. The OS environment is Windows XP. When I try to download a data.txt or data.dat file to the pc using the Hotsync, it gives me an error. There is installed datalogmgr that is the application that allows files exchange between Palm & PC.
    Error message
    Se ha iniciado la sincronización HotSync 03/09/04 16:12:12
    Aceptar Calendario

    fopen(C:\PDAdata\19_samples.txt) failed
    LabVIEW Datalog Conduit ha fallado la sincronización
    I have installed the LVPDA_Patch_70f1.rar file (in the correct order). I tried also with another file generated by PDATempData (in the examples) and it didn�t work. I tried Also to delete datalogmgr and download it again. I tried to instal
    ll Labview COnduit again. Any idea?

    I know its been a long time since your post. Did you make sure to have the directory that you want the file transferred into created on your PC before the sync. If the folder isn't there you will get that error.
    Dan
    Don't drive angry. Don't drive angry!

Maybe you are looking for

  • Why tata docomo cdma (india) sim is not working with my iPhone 5 A1429 Hong-Kong model?

    I have bought second hand iPhone 5 Hong kong model A1429 and it works with all gsm carriers can i use cdma sim in it? i have iOS 8.1 and i searched through internet and i found that A1429 model supports worldwide GSM and CDMA networks but actually it

  • Finding The Mapped Path

    I have written a rather complex system that uses smoke, mirrors, and occasional subterfuge to display web pages. I noticed that the CFFORM javascript controls weren't working on some of the end-of-the-line cfm pages. Through trial and error, I discov

  • Running Lion and Snow Leopard on the same MacBook Pro

    So here's the thing .....apparently Lion won't run Photoshop and Illustrator CS2 (which I'm quite happy with and not about to shell out silly amounts of money to Adobe for even CS3) and apparently there may be (and I stress may be) problems with Word

  • HELP!  New to MAC and I inserted a mini DVD!!!

    I didn't know that mini DVD's couldn't be inserted into my Mac Pro and well---I just learned. Not only is this a brand new laptop, but the DVD is the only surviving copy of our trip to Disney. Is there any way I can get the mini dvd out without screw

  • How to remove all personal information for your blackberry?

    I am currently an Altel subscriber, whom is being switched to AT&T.  I would like to sell or donate my current blackberry 9630 as it is in new condition.  How do I ensure all my data has been removed and it is safe to do so?  I checked online and it