Focusrite Sapphire and Core Audio not working together in Logic 8

Hello all.
We're having some trouble with our Logic 8 at work.
Today we connected a Bose home speaker system to our Mac Pro via USB.
Once removed and back to our usual output of the Focusrite Sapphire, core audio is malfunctioning within Logic, and the software crashes at the initialising stage.
To offer details;
· We normally run our audio through the Focusrite Sapphire
· Today (the first and last time) we ran the audio through a Bose home system
· We can run system sound though the Sapphire no problem
· Core audio works fine in Logic when the Sapphire is disconnected from the Mac
· The system is an 8 core Mac Pro running Leopard. The software is Logic Studio 8
· Additional software running is Spectrasonics' Omnisphere and East West's Play
We tried to view the crash report in Console, alas that is crashing upon start up too.
Any help would be most appreciated, we're scratching heads and beards.
I've searched the forum for the past year to see if there has been an identical issue.
Lou.

Ahh OK, ( I'm presuming you're using the normal Saffire, not the LE or the pro? )
go here:
http://www.focusrite.com/support/software/saffire/
Download the latest software and install, also within that file there will a firmware updater, run that too.
Let me know the results.

Similar Messages

  • Digidesign Core Audio not working in Logic pro 7.1

    Help! I'm not able to use Digidesign's (002 interface) as a core-audio interface for Logic Pro 7. Pro-Tools works fine with the 002. Logic works fine with built-in interface. However whenever I go to change from the built-in audio interface to the core audio 002 interface in audio drivers (in preferences), it won't allow me and I get the following message:
    "Audio device has been removed" (press OK) then
    "Previously selected audio interface is not available" (Press OK) (digidesign 002 interface has double brackets around the name in the audio drivers). If you try to relaunch driver again it disappears from the drivers list? In addition the "Digi design core-audio " application that opens up on the dock - just says "not connected" and some buttons are greyed out and you cannot "reconnect"?
    Is there a conflict of drivers with the OS/Logic version and digi core-audio? I'm running Pro-Tools ver6.4, with digi core-audio 6.9 (updated from 6.4 - didn't solve the issue?), Logic Pro 7.1 and OS 10.3.9 (on a G4 1.25Ghz, 512Ram)?
    It seems like a core-audio driver problem - but having updated to the latest version I'm still not getting any joy? Any offers?! Cheers.

    Check the FW cable.
    Anyway about compatibility Digidesign says this:
    Mac OS X 10.3.9 Not Supported
    With ALL versions of Pro Tools 6.x for Panther (other than Pro Tools LE 6.8.1 with Mbox 2 hardware only), the highest version of Mac OS X 10.3 that you should use is Mac OS X 10.3.8. There are incompatibilities with Pro Tools 6 and QuickTime 7, which is installed by Mac OS X 10.3.9. If you must use Mac OS X 10.3.9 for some reason, you should revert to QuickTime 6.5.2, available from the Apple website.
    cheers
    rob

  • My itunes and iphone are not working together. all my software is up to date. what i can do? i need to manage my phone!!

    I'm getting extremely frustrated with my iphone and mac.
    i have the iphone 4, and the mac is leopard.
    I plugged my phone it to manage my music, and a message popped up saying i needed software 10.6.8 or higher.
    so i downloaded the 10.7. it's still not working!
    i have very little space left on my phone and i need to manage everything.
    what do i do??
    someone please help!!!!

    We need clarification here.
    Please don't just state version numbers, also state which software.  iTunes 10.7 requires OSX 10.6.8 or higher.  Leopard is OSX 10.5.8.  You have two alternatives right now.  One is to stay with Leopard for a while (ultimately you should upgrade) and install iTunes 10.6.3 which is the last version to work with Leopard.  This should work with iOS6 on an iPhone4.  The other is to call Apple and order OSX 10.6 (Snow Leopard) and upgrade the computer to 10.6.8 which will allow you to run iTunes 10.7.  The caveat is we know nothing about which computer you run and if it even can run any system higher than Leopard.
    Here is iTunes 10.6.3
    iTunes 10.6.3 - http://support.apple.com/kb/DL1575
    If you want to try upgrading:
    Get more information about your computer. Go to the Apple in the upper left corner of any window, then "About this Mac" and "More Info..."  Copy and paste the information here, but omit the serial number and Hardware UUID (if present).  If it says something about Intel or Core Duo or Core 2 Duo in the processor you can upgrade to Snow Leopard (assuming you have sufficient RAM/"memory").  If it says PPC or PowerMac, you cannot.
    Kappy 08/2012 post on upgrading to Snow Leopard, then Lion or Mountain Lion -  https://discussions.apple.com/message/19401628 - including how to get Snow Leopard and Lion since Apple removed them from the online store. 
    It would help when posting issues here if you would state exact error messages you see.  "It's still not working!" while a description of the situation does not speed us to a diagnosis of the underlying issue.

  • Input and output audio not working and no startup chime

    The audio, both input and output, on my MacBook Pro has stopped working as well as the startup chime. Otherwise the computer starts up and seems to be working normally. Any ideas as to what the problem is and solutions?  

    Hey, my MacBook Pro has been doing the EXACT same thing off and on for a few weeks now.
    I'm just now having time to browse the forums, so I've not even asked about it.
    Yesterday it all started working normally - all sounds.
    I'll follow this discussion for sure.
    There definitely seems to be enough 'Mac-Daddy' Mac Helpers on here to be able to easily resolve this issue.
    i.e.: Andreas!  Just reading her stuff lets me know she REALLY knows what she's talking about & is able to explain the highly advanced info in terms people actually get!
    Thanks for asking that question!
    ~dOiTdiGiTaL~

  • Hints FIRST_ROWS and order by not working together

    Hi,
    We are facing an issue like we are using hint FIRST_ROWS with a query which have a order by clause, if we are giving both together
    it is not working and if we remove either order by or hint it is working
    SELECT /*+FIRST_ROWS*/ * FROM (SELECT MYROWS.*,
    ROWNUM RN FROM (SELECT * FROM V_REPORT WHERE START_DATE > '22-SEP-04'
    AND END_DATE < '22-SEP-08' AND
    (GEO_ID in (select GEO_ID from loc where anc = 0))
    ORDER BY
    ENTITY,OPERATION,NAME
    MYROWS)
    A simliar query from other view is working fine.
    Please help me on the same.

    David_Aldridge wrote:
    Solomon Yakobson wrote:
    Well, ORDER BY implies all rows must be fetched first and then ordered. So yes, FIRST_ROWS does not make much sense in that situation, does it?.
    SY.Not in every case -- sometimes an index can be used by the optimizer to returen rows in the correct order without having identified the entire result set.
    FIRST_ROWS is deprecated in favour of FIRST_ROWS(n), by the way. http://download.oracle.com/docs/cd/B19306_01/server.102/b14223/usingpe.htm#i1009413
    And even if the result set needs to be ordered and no index can be used to avoid the sort operation Oracle offers for "top n" and "pagination" queries the "ORDER BY STOPKEY" optimization which only keeps the top n rows to sort (probably in memory if n is small enough) and eliminates the remaining ones which can make a huge difference if the volume to sort is large.
    I've written a note about issues like that recently.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • My Keynote and iPhoto are not working together to build stacked photos

    I am new to the Mac world (1st day on the Mac) and I am trying to stack 3 photos on to one Keynote slide. I cannot get my photos in iPhoto to come up when I click on Media.
    What am I doing wrong?

    We need clarification here.
    Please don't just state version numbers, also state which software.  iTunes 10.7 requires OSX 10.6.8 or higher.  Leopard is OSX 10.5.8.  You have two alternatives right now.  One is to stay with Leopard for a while (ultimately you should upgrade) and install iTunes 10.6.3 which is the last version to work with Leopard.  This should work with iOS6 on an iPhone4.  The other is to call Apple and order OSX 10.6 (Snow Leopard) and upgrade the computer to 10.6.8 which will allow you to run iTunes 10.7.  The caveat is we know nothing about which computer you run and if it even can run any system higher than Leopard.
    Here is iTunes 10.6.3
    iTunes 10.6.3 - http://support.apple.com/kb/DL1575
    If you want to try upgrading:
    Get more information about your computer. Go to the Apple in the upper left corner of any window, then "About this Mac" and "More Info..."  Copy and paste the information here, but omit the serial number and Hardware UUID (if present).  If it says something about Intel or Core Duo or Core 2 Duo in the processor you can upgrade to Snow Leopard (assuming you have sufficient RAM/"memory").  If it says PPC or PowerMac, you cannot.
    Kappy 08/2012 post on upgrading to Snow Leopard, then Lion or Mountain Lion -  https://discussions.apple.com/message/19401628 - including how to get Snow Leopard and Lion since Apple removed them from the online store. 
    It would help when posting issues here if you would state exact error messages you see.  "It's still not working!" while a description of the situation does not speed us to a diagnosis of the underlying issue.

  • Bluetooth Mouse and Thinkpad T520 not working together at all

    Hi All (first post),
    System:
    Lenovo T520
    Windows 7
    Microsoft Bluetooth mouse
    Problem: Not working at all, or working only sporadically.
    History: Laptop is a bit over year old (warranty ends in June 2015 IIRC). The sales clerk recommended a bluetooth mouse, so I bought a Microsoft Bluetooth 5000. After the initial pairing difficulties were resolved, they worked swimmingly for about a year. Then I started more and more frequently having to re-pair them (remove device, let Windows find it again, pair them,...). As the mouse had taken a bit of beating, I bought another one a week ago. Didn't really help. The first time I asked Win7 to find the device, it couldn't. The Bluetooth radio was on, and the mouse had a fresh set of batteries, and all the other braindead suggestions of Win7 were eliminated. The bluetooth radio was working, because it detected the neighbors daughter's smartphone through a concrete wall, but not the mouse. I kept pressing the button in the bottom of the mouse that presumably makes it broadcast "I'm here".
    I moved to another room. This time detection and pairing up the device went fine. But after I had switched the laptop and the mouse off, and rebooted - nothing happened. I had to go through the remove/add device cycle again. Moving to a different room again. At first nothing. Then Windows finds the device, but gives the error code 0x800070015 (or something like that, not sure about the number of zeros), and fails to configure it.
    Any idea what is going on? Why is this becoming progressively worse?
    Elsewhere in this forum it was suggested that I should disallow windows to power off USB root hubs. I tried that but it had no effect.
    Regards,
    Jyrki

    Sorry. The error code was 0x80004005. This is the code I get from Add Device ->, when I try to enter 0000 as the paring code (suggested by the mouse start guide. If I try to pari them without a code, Control Panel first indicates that the piece of Hardware was added ok, but it before I get any use out of the mouse, the freshly added pic of the mouse disappears. The red/green light on the mouse never stops blinking.

  • Clickbox and Rollover Audio not working

    Hey guys...I'm just trying to insert either a clickbox or
    rollover area where audio is heard ONLY when someone either clicks
    the box or hovers over the area. I wan't multiple areas on the
    screen at the same time and I want them to work to the very end of
    the slide so that people can just click or hover over areas and
    hear the audio for as long as they want to. It seems like that
    would be a simple task. As I create it though and record the audio
    in both scenarios, when I preview the movie all of the clickbox or
    rollover audios simultaneously and automatically start playing. It
    doesn't wait for me to click or hover, all of the audio just plays
    at once. Why is this? Thanks for your help.

    Good morning, Brock
    For the Click Box, you need to edit the properties and enable
    the feedback captions. Enable the Hint caption if you want to hear
    a sound play when hovering the Click Box. Enable the Success
    caption if you want the sound to play after clicking the Click Box.
    Then you edit the caption and assign audio there.
    For mouseovers, add a Rollover Caption or Rollover Image.
    This provides two areas on the slide. One is the area you mouse
    over, while the other is the area that appears. You then edit the
    area that appears and add audio to that area.
    Hopefully this helps... Rick

  • Is there any way to get around the issue of AE7 and Lion OS not working together?

    I use AE7 for graduate studies and business and just can't understand why it won't work together.

    Why?  Because Adobe has other priorities, in simplest terms.  As with most commercial software producers, Adobe is looking to maximize their profits while their software developers are constrained to operate and optimize within their available development budgets, and also while delivering the corporate plans and schedules set by Adobe management.
    What to do for this case?  Migrate off of the Adobe software, migrate off of Mac OS X, deploy a virtual machine or Boot Camp (with Snow Leopard) and Adobe After Effects, or wait for Adobe to sort this out.  For sufficiently large-scale customers of Adobe, they can chat directly with Adobe management around whether a bounty will expedite the work.  (These are the usual answers, of course.)

  • Microsoft word 2013 function home and end keys not working together on HP Envy X2

    Please help I've tried out Microsoft Office Word 2013 on two HP Envy X2 11.6" laptops/touch screen with keyboard and when I am in a Word document and am at the end or beginning of a document and select the FUNCTION KEY AND THE HOME OR END KEY, it does nothing. This is not the case in Internet Explorer or a web browser.  There is a problem with the HP keyboard and Office 2013 or maybe any Word app. Help me as I use documents alot and rely on this function heavily.  I can only page up or scroll up using the bar. It is not ideal.
    Astaastra

    Hi rosedoc12,
    I have done some research and I have found a document that will show you how to disable or lock the fn key.
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&​lc=en&docname=c02035108
    Thank you,
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • IPod Touch and iTunes Will Not Work Together.

    I just received a new iPod Touch 32GB yesterday and have had nothing but troubles trying to get it to play nicely with iTunes. The Touch is currently version 1.1.5/4B1 (I believe updated to this sometime yesterday).
    I am running iTunes v. 7.7.1 (11). When I connect the Touch to my iMac with iTunes running (even though I have it checked, just plugging the Touch in does not open iTunes) nothing happens for a long time and then I get a spinning beach ball which I have let go on for more than 20 minutes at one time.
    The Touch and iTunes work fine independently. The last two times after force quitting iTunes, I have received the following error: iTunes could not connect to the iPhone (??) "" because an unknown error occurred (OxE8000035).
    Does anyone know what this error is, & how do I resolve these issues?
    <Edited by Moderator>

    At least atm -
    I have re-installed iTunes after restarting the iMac and then restarted again, the Touch connected and showed right away after that and I am happily, currently syncing.
    If it goes bottoms up again, I'll be back!

  • Google Calendar maps and iPhone maps not working together anymore

    For several months I was accessing google calendar through Safari. I was able to click on the map link and it would take me to the iPhone maps. About a week ago it started to take me to Google mobile map page, which is not integrated into anything on the iPhone maps such as that GPS thingy which is kind of useful. Anyone have any thoughts on how I can get this to go back?
    I did the upgrade to 2.2 already and no changes.

    I agree. I posted about this about a month ago and the only answer I got was that perhaps it was the way which google was choosing to handle the functionality. I think the feature where you can click on an address in your Google Calendar (and it should work on your Iphone Calendar as well), and it comes up in the Iphone Maps application, is completely necessary, as the map in safari is basically worthless. I had previously bragged about this feature, and now it's gone?! BRING IT BACK!

  • InDesign CS5.5 - locked objects and align tools not working together

    In earlier versions of InDesign I used the Align palette, spacing 0 mm, and "dragged in" other objects to perfect fit to the center object. InDesign drags in objects from the right this way. So if I needed to drag in objects from the left side I locked the center object first and InDesign understood what I wanted to do.
    In CS5 and 5.5 this is not possible anymore. If I lock an object it is not selectable. But there is a preference setting for this so I change it. Now I can select the locked object. But when I try to align it with another object there is an error message saying I can't move this object because it i locked. Well... I am not trying to move it hence the lock I applied...
    I don't understand this changed behaviour. If a locked object is out of play I might as well use the layer palette and lock objects that way.
    Could someone please shed some light on this?

    Apparently the distribute spacing command only uses the top object as a reference. I would say that's a bug.

  • WPA security with both time capsule and airport express not working together

    I want to set WPA security on my time capsule so that my teenager can not access wireless with out permission but when I add a security key my airport express disappears from list.
    I have tried setting a password then the time capsule restarts and when it does the aiport express is gone from list and can not be found when rescanned.
    Do I need to set time capsule and then reset airport express by pluggin it directly into desktop and resetting its software?
    Thanks

    I would suggest, reconnecting the Express to the TC again. Use the AirPort Utility to make ALL configuration changes including the network extending settings. Then restart both base stations and check that the settings are still good. Then disconnect the Express and give it a few minutes to initialize. It should connect. If not, then the issue may be either the distance or obstructions (like walls, ceilings, floors, etc.) that is preventing the Express from getting a signal from the TC that is adequate enough to extend.

  • Airport Express and Extreme are not working together

    My new airport extreme came up just fine. All my Macs and PCs connected effortlessly.
    The same can not be said for my Airport Express. I reset it, and it takes the config, then vanishes. Connected directly to my Mac, to the Airport Express, or via wireless to the express, it still just disappears and gives a blinking amber light.
    I tried re-installing 6.3 firmware, with no luck. Any ideas?

    Dan,
    Thanks for the clarification. The behavior you're encountering sounds as if it may be the expected behavior of an Airport Express after it has been set to client mode, but wasn't able to join the network. Typically when setting up an Airport Express you'd want the unit to be in the same room as the Extreme, and then if the Airport LED is not going green then it's typically an authentication association relates situation. Have you reviewed knowledge base article http://docs.info.apple.com/article.html?artnum=302153 ?
    Regards,
    Chris

Maybe you are looking for

  • Problem in ant script (starting tomcat)...

    Hi, in my ant script (build.xml) I have some targets to start/stop tomcat:     <!-- ================================ -->     <!-- start/stop tomcat servlet engine -->     <!-- ================================ -->     <!-- check whether server is alre

  • Problem in portlets

    the problem is i make an apllication in faces but when i converted to portlets i convert to winrar file and deploy on portal container but the msg is deployment succesfull but when i wana see the deployed portlet wat i get just a boring msg Wait..por

  • Camileo S20 - How to play all recorded videos?

    hi all! Ive not long had the camileo s20, so still trying to get mt head around it. I think ive managed the basics but im having a problem with play back. When i recored a video - 6 mins long, but i pause the recording half way through, then go back

  • BRM integration with AIA

    Hi, I have not found documentation for BRM 7.4 integration with AIA 3.1 . Could you please share if you have any? Or steps to be performed in this purpose Thanks a lot, Adrian

  • How to get out of screen sharing

    how do you get back to video chat when you are in screen sharing..........when I end screen sharing, I lose the video connection.............there has to be a way to get to video chatting...........right?