NI-Visa - Timeout during initialize of power supply

Hello, I'm having an issue initializing a power supply using the NI-Visa libraries. After creating the session, the 1st call to Initialize() always fails. If I call it once again, it always succeeds. Adding a delay between the session creation and the init call did not help.
An oddity is that running SPY causes the problem to go away. I tried this a few times while recording and never saw the timeout. However, once SPY was stopped the same timeout behavior could be seen again. Does SPY add some type of latency within the NI-Visa libraries?
Any suggestions or troubleshooting tips would be greatly appreciated. Below are some setup notes in no particular order. Thanks.
1.       Power supply: Lamda 40-85, Genesys 3.3kW
2.       Issue: Initialize() must be called twice before returning successful
3.       Visa error: Timeout expired before operation completed.
4.       Steps to recreate:
4.1.    Create session
4.2.    Call initialize, results in a timeout
4.3.    Call initialize, returns success
5.       Setup details:
5.1.    NI Visa libraries
5.2.    Visual Studio 2010, C#, .NET 4.0
5.3.    Reference libraries:
5.3.1. ivi.dcpwr.interop, runtime version v1.0.3705, version 2.0.0.0
5.3.2. ivi.driver.interop, runtime version v1.0.3705, version 1.0.0.0
5.3.3. ivi.sessionfactory.interop, runtime version v1.0.3705, version 1.0.0.0
5.4.    NI PXI Chassis, Windows XP
5.5.    GPIB interface

I tried the updated dll's, actually only "ivi.sessionfactory.interop.dll" was newer, but received the same behavior.
I also sent the "*IDN?" message using the communicator,but was unable to reproduce the behavior no matter how many times I queried the power supply. However, there is a discrepancy between sending the "Initiate" command from within code versus using the communicator and sending "*IDN?", so I am unsure how to replicate the same steps. My previous post detailed the SPY log in response to sending the "Initiate" command, while sending "*IDN?" results in:
1.  ibwrt(UD0, "*IDN?", 5 (0x5))
Process ID: 0x00000F58         Thread ID: 0x00000330
Start Time: 16:25:12.437       Call Duration 00:00:00.000
ibsta: 0x100       iberr: 0             ibcntl: 5(0x5)
2.  ibrd(UD0, "LAMBDA,GEN40-...", 2000 (0x7D0))
Process ID: 0x00000F58         Thread ID: 0x00000330
Start Time: 16:25:12.437       Call Duration 00:00:00.359
ibsta: 0x2100       iberr: 0             ibcntl: 45(0x2d)
My app uses VISA commands while the communicator uses "ibwrt", etc. How do I go about simulating the "Initiate" call while using the Communicator? My code is posted at the bottom of this reply for clarity.
An oddity that is that, after a failed attempt to initiate the device which results in a timeout exception, the communicator can be used to read the standard response to the "*IDN?" command. This is the case even if the "idQuery" boolean of the "initiate" method is set to false. If idQuery=true, how is the resulting name supposed to be read back? The initiate function does not have a return value or any way of passing by reference. I tried all four combinations of the two flags, "idQuery" and "Reset", but nothing seemed to change in any configuration.
In response to your question about the firmware version, I pulled this from the spy file: "LAMBDA,GEN40-85-IEMD,S/N:xxxxxxx,REV:2U:3.0-D-". The reply appears to be truncated so I'll double check the response on Monday once I'm at the computer with the SPY file.
Again, thank you for input and attention. If you have any suggestions, please let me know. It will be sometime next week until I will be able to perform any more troubleshooting unfortunately. Do you see anything wrong with the "Initiate" method call, especially the name used? I'm curious if I should use the full name instead of the alias, but if that is the case why does the "initiate" call work the 2nd time? Oh well, I'll give it a try. Thanks again.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Ivi.DCPwr.Interop;
using Ivi.SessionFactory.Interop;
namespace IviDcPower
    public partial class Form1 : Form
        IIviDCPwr _DcPwrSession;
        IIviDCPwrOutput _IiviDcPwrOutput;
        public Form1()
            InitializeComponent();
        private void btnCreateSession_Click(object sender, EventArgs e)
            try
                IIviSessionFactory factory = new IviSessionFactoryClass();
                // Ask the session factory to create an instance of
                // the appropriate driver based on a logical name
                _DcPwrSession = (IIviDCPwr)factory.CreateDriver("ProgDCPS");
                addText("Session created");
            catch (Exception ex)
                addText(System.Reflection.MethodBase.GetCurrentMethod().ToString() + "\r\n" + ex.ToString());
        private void btnInitialize_Click(object sender, EventArgs e)
            try
                addText("Initializing...");
                _DcPwrSession.Initialize("ProgDCPS", cbQueryID.Checked, cbReset.Checked, "");
                if (_DcPwrSession.Initialized)
                    // Use IIviDcPwrOutput class-compliant interfaces, interchangeable code
                    _IiviDcPwrOutput = _DcPwrSession.Outputs.get_Item("");
                    addText("Success");
            catch (Exception ex)
                addText(System.Reflection.MethodBase.GetCurrentMethod().ToString() + "\r\n" + ex.ToString());
                addText("Failed (Exception)");
        private void addText(string text)
            textBox1.Text = text + "\r\n\r\n" + textBox1.Text;
        private void btnCloseSession_Click(object sender, EventArgs e)
            try
                _DcPwrSession.Close();
                addText("Session closed");
            catch (Exception ex)
                addText(System.Reflection.MethodBase.GetCurrentMethod().ToString() + "\r\n" + ex.ToString());

Similar Messages

  • Cannot initialize the HP6810A power supply

    Hello,
       Does anyone have a idea over why randomly get the following error message from the init vi for the HP6810A power supply?
    Error -1223 occurred at HP68xxA Initialize
    Possible reason(s):
    LabVIEW:  Instrument identification query failed.
    I have verified that the VISA resource name is correct.
    Regards,
    Kaspar
    Regards,
    Kaspar

    Hello,
       I am just trying to do something very simple, initialize the HP6812A with a vi named HP68xxA. I am not sure where it came from, I am assuming from NI and/or HP/agilent, Because I am trying to initialize, ther are no input strings or output strings. The inputs are error in and the instrument descriptor, bot of which I have verified to be correct.  I have looked at the block diagrams of the drivers and I have noticed that the VISA open vi's are called Old Visa Open. So this my be a clue and I should probably try to update the VISA opens to a current VISA open and see what happens.
    Regards,
    Kaspar
    Regards,
    Kaspar

  • TS3694 iPhone 5.....during update to iOS 7 I have lost the power supply (blackout)

    this issue , happen to my iPhone 5.....during update to iOS 7 I have lost the power supply (blackout)
    Sudden screen : USB pointing to iTunes . it shows that it need a restore and update .. after downloading the software
    and extracting .. found Error1 at the point Verify firmware . AGAIN AND
    and this is the log ..
    2014-08-11 15:46:30.611 [4472:1648]: restore library built Feb 12 2014 at 16:27:17
    2014-08-11 15:46:30.611 [4472:1648]: iTunes: iTunes 11.3.1.2
    2014-08-11 15:46:30.611 [4472:1648]: iTunes: Software payload version: 11D257 (option key)
    2014-08-11 15:46:30.611 [4472:1648]: iTunes: Using MobileRestore state machine
    [13:47:25.0555] Changing state from 'Idle' to 'Restoring'
    [13:47:25.0555] device software does not support nonce generation
    [13:47:25.0555] requested restore behavior: Erase
    [13:47:25.0570] requested variant: Erase
    [13:47:25.0570] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 061FEA80 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 061FD2E0 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [13:47:26.0569] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [13:47:26.0569] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [13:47:26.0569] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [13:47:26.0569] amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 0BA32F38 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [13:47:26.0569] amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    [13:47:26.0569] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Dell/AppData/Local/Temp/Per2046.tmp/amai/debug/tss-re quest.plist
    [13:47:27.0068] amai: tss_submit_job: HttpQueryInfo returned 200
    [13:47:27.0286] amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    [13:47:27.0286] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Dell/AppData/Local/Temp/Per2046.tmp/amai/debug/tss-re sponse.plist
    [13:47:27.0318] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    [13:47:27.0333] <DFU Device 0562C260>: production fused device
    [13:47:27.0333] requested restore behavior: Erase
    [13:47:27.0333] device software does not support nonce generation
    [13:47:27.0349] WinDFU::OpenDFUDevice: path: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#93126bb7
    [13:47:27.0349] WinDFU::OpenDeviceByPath: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#93126bb7
    [13:47:27.0364] <DFU Device 0562C260>: operation 0 progress 2
    [13:47:27.0380] <DFU Device 0562C260>: operation 0 progress 5
    [13:47:27.0396] <DFU Device 0562C260>: operation 0 progress 8
    [13:47:27.0411] <DFU Device 0562C260>: operation 0 progress 10
    [13:47:27.0427] <DFU Device 0562C260>: operation 0 progress 13
    [13:47:27.0442] <DFU Device 0562C260>: operation 0 progress 16
    [13:47:27.0458] <DFU Device 0562C260>: operation 0 progress 18
    [13:47:27.0474] <DFU Device 0562C260>: operation 0 progress 21
    [13:47:27.0489] <DFU Device 0562C260>: operation 0 progress 24
    [13:47:27.0505] <DFU Device 0562C260>: operation 0 progress 26
    [13:47:27.0520] <DFU Device 0562C260>: operation 0 progress 29
    [13:47:27.0536] <DFU Device 0562C260>: operation 0 progress 32
    [13:47:27.0552] <DFU Device 0562C260>: operation 0 progress 34
    [13:47:27.0567] <DFU Device 0562C260>: operation 0 progress 37
    [13:47:27.0583] <DFU Device 0562C260>: operation 0 progress 40
    [13:47:27.0598] <DFU Device 0562C260>: operation 0 progress 42
    [13:47:27.0614] <DFU Device 0562C260>: operation 0 progress 45
    [13:47:27.0630] <DFU Device 0562C260>: operation 0 progress 48
    [13:47:27.0645] <DFU Device 0562C260>: operation 0 progress 50
    [13:47:27.0661] <DFU Device 0562C260>: operation 0 progress 53
    [13:47:27.0676] <DFU Device 0562C260>: operation 0 progress 56
    [13:47:27.0692] <DFU Device 0562C260>: operation 0 progress 59
    [13:47:27.0708] <DFU Device 0562C260>: operation 0 progress 61
    [13:47:27.0723] <DFU Device 0562C260>: operation 0 progress 64
    [13:47:27.0739] <DFU Device 0562C260>: operation 0 progress 67
    [13:47:27.0754] <DFU Device 0562C260>: operation 0 progress 69
    [13:47:27.0770] <DFU Device 0562C260>: operation 0 progress 72
    [13:47:27.0786] <DFU Device 0562C260>: operation 0 progress 75
    [13:47:27.0801] <DFU Device 0562C260>: operation 0 progress 77
    [13:47:27.0817] <DFU Device 0562C260>: operation 0 progress 80
    [13:47:27.0832] <DFU Device 0562C260>: operation 0 progress 83
    [13:47:27.0848] <DFU Device 0562C260>: operation 0 progress 85
    [13:47:27.0864] <DFU Device 0562C260>: operation 0 progress 88
    [13:47:27.0879] <DFU Device 0562C260>: operation 0 progress 91
    [13:47:27.0895] <DFU Device 0562C260>: operation 0 progress 93
    [13:47:27.0910] <DFU Device 0562C260>: operation 0 progress 96
    [13:47:27.0926] <DFU Device 0562C260>: operation 0 progress 99
    [13:47:27.0926] WinDFU::UploadData: EOF, cbRead: 554
    [13:47:27.0942] <DFU Device 0562C260>: operation 0 progress 100
    [13:47:27.0942] WinDFU::UploadData: ZLP
    [13:47:27.0957] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 6
    [13:47:27.0957] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_SYNC
    [13:47:27.0957] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 7
    [13:47:27.0957] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST, PollTimeout: 3000
    [13:47:30.0968] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 8
    [13:47:30.0968] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_WAIT_RESET
    [13:47:30.0968] WinDFU::ResetDevice: resetting...
    [13:47:31.0046] WinDFU::FinalizeDfuUpdate: success
    [13:47:31.0046] <DFU Device 0562C260>: DFU succeeded
    [13:47:31.0046] Finished DFU Restore Phase: Successful
    [13:47:31.0218] DFU mode device disconnected
    [13:47:31.0218] Device removed when in state Restoring, moving device to transition state
    [13:47:31.0218] Changing state from 'Restoring' to 'Transitioning'
    [13:47:31.0218] Creating timer to monitor transition
    [13:47:32.0175] DFU mode device connected
    [13:47:32.0175] Transitioning device returned, continuing restore.
    [13:47:32.0175] Canceling timer
    [13:47:32.0175] Changing state from 'Transitioning' to 'Restoring'
    [13:47:32.0175] AppleDevice::GetDeviceID: failed for iBoot
    [13:47:32.0175] requested restore behavior: Erase
    [13:47:32.0175] requested variant: Erase
    [13:47:32.0175] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is True
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 061FDC70 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 061FE378 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 0B9D5148 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 0B9D5190 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBEC" Digest = "<CFData 0B9D51D8 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 0B9D5220 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 0B9D5268 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 0B9D52B0 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 0B9D52F8 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 0B9D5340 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 0B9D5388 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 0B9D53D0 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 0B9D5418 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 0B9D5460 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 0B9D54A8 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 06266350 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 06266398 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 062663E0 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 064698C8 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [13:47:33.0064] amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    [13:47:33.0064] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Dell/AppData/Local/Temp/Per2046.tmp/amai/debug/tss-re quest.plist
    [13:47:33.0298] amai: tss_submit_job: HttpQueryInfo returned 200
    [13:47:33.0501] amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    [13:47:33.0501] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Dell/AppData/Local/Temp/Per2046.tmp/amai/debug/tss-re sponse.plist
    [13:47:33.0501] amai: _AMAuthInstallBundleInstallPersonalizedEntry: entry "iBSS" has been previously personalized; skipping it
    [13:47:33.0501] amai: _AMAuthInstallBundleInstallPersonalizedEntry: entry "LLB" has been previously personalized; skipping it
    [13:47:33.0517] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    [13:47:33.0532] <DFU Device 0BA2A9D8>: production fused device
    [13:47:33.0532] requested restore behavior: Erase
    [13:47:33.0532] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:33.0532] AppleDevice::GetDeviceID: failed for iBoot
    [13:47:33.0532] WinDFU::OpenDFUDevice: path: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#ca28221e
    [13:47:33.0532] WinDFU::OpenDeviceByPath: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#ca28221e
    [13:47:33.0564] <DFU Device 0BA2A9D8>: operation 0 progress 0
    [13:47:33.0579] <DFU Device 0BA2A9D8>: operation 0 progress 1
    [13:47:33.0595] <DFU Device 0BA2A9D8>: operation 0 progress 2
    [13:47:33.0626] <DFU Device 0BA2A9D8>: operation 0 progress 3
    [13:47:33.0642] <DFU Device 0BA2A9D8>: operation 0 progress 4
    [13:47:33.0657] <DFU Device 0BA2A9D8>: operation 0 progress 5
    [13:47:33.0688] <DFU Device 0BA2A9D8>: operation 0 progress 6
    [13:47:33.0704] <DFU Device 0BA2A9D8>: operation 0 progress 7
    [13:47:33.0735] <DFU Device 0BA2A9D8>: operation 0 progress 8
    [13:47:33.0751] <DFU Device 0BA2A9D8>: operation 0 progress 9
    [13:47:33.0766] <DFU Device 0BA2A9D8>: operation 0 progress 10
    [13:47:33.0798] <DFU Device 0BA2A9D8>: operation 0 progress 11
    [13:47:33.0813] <DFU Device 0BA2A9D8>: operation 0 progress 12
    [13:47:33.0844] <DFU Device 0BA2A9D8>: operation 0 progress 13
    [13:47:33.0860] <DFU Device 0BA2A9D8>: operation 0 progress 14
    [13:47:33.0876] <DFU Device 0BA2A9D8>: operation 0 progress 15
    [13:47:33.0907] <DFU Device 0BA2A9D8>: operation 0 progress 16
    [13:47:33.0922] <DFU Device 0BA2A9D8>: operation 0 progress 17
    [13:47:33.0954] <DFU Device 0BA2A9D8>: operation 0 progress 18
    [13:47:33.0969] <DFU Device 0BA2A9D8>: operation 0 progress 19
    [13:47:33.0985] <DFU Device 0BA2A9D8>: operation 0 progress 20
    [13:47:34.0016] <DFU Device 0BA2A9D8>: operation 0 progress 21
    [13:47:34.0032] <DFU Device 0BA2A9D8>: operation 0 progress 22
    [13:47:34.0063] <DFU Device 0BA2A9D8>: operation 0 progress 23
    [13:47:34.0078] <DFU Device 0BA2A9D8>: operation 0 progress 24
    [13:47:34.0094] <DFU Device 0BA2A9D8>: operation 0 progress 25
    [13:47:34.0125] <DFU Device 0BA2A9D8>: operation 0 progress 26
    [13:47:34.0141] <DFU Device 0BA2A9D8>: operation 0 progress 27
    [13:47:34.0172] <DFU Device 0BA2A9D8>: operation 0 progress 28
    [13:47:34.0188] <DFU Device 0BA2A9D8>: operation 0 progress 29
    [13:47:34.0203] <DFU Device 0BA2A9D8>: operation 0 progress 30
    [13:47:34.0234] <DFU Device 0BA2A9D8>: operation 0 progress 31
    [13:47:34.0250] <DFU Device 0BA2A9D8>: operation 0 progress 32
    [13:47:34.0281] <DFU Device 0BA2A9D8>: operation 0 progress 33
    [13:47:34.0297] <DFU Device 0BA2A9D8>: operation 0 progress 34
    [13:47:34.0312] <DFU Device 0BA2A9D8>: operation 0 progress 35
    [13:47:34.0344] <DFU Device 0BA2A9D8>: operation 0 progress 36
    [13:47:34.0359] <DFU Device 0BA2A9D8>: operation 0 progress 37
    [13:47:34.0390] <DFU Device 0BA2A9D8>: operation 0 progress 38
    [13:47:34.0406] <DFU Device 0BA2A9D8>: operation 0 progress 39
    [13:47:34.0422] <DFU Device 0BA2A9D8>: operation 0 progress 40
    [13:47:34.0453] <DFU Device 0BA2A9D8>: operation 0 progress 41
    [13:47:34.0468] <DFU Device 0BA2A9D8>: operation 0 progress 42
    [13:47:34.0500] <DFU Device 0BA2A9D8>: operation 0 progress 43
    [13:47:34.0515] <DFU Device 0BA2A9D8>: operation 0 progress 44
    [13:47:34.0531] <DFU Device 0BA2A9D8>: operation 0 progress 45
    [13:47:34.0562] <DFU Device 0BA2A9D8>: operation 0 progress 46
    [13:47:34.0578] <DFU Device 0BA2A9D8>: operation 0 progress 47
    [13:47:34.0593] <DFU Device 0BA2A9D8>: operation 0 progress 48
    [13:47:34.0624] <DFU Device 0BA2A9D8>: operation 0 progress 49
    [13:47:34.0640] <DFU Device 0BA2A9D8>: operation 0 progress 50
    [13:47:34.0671] <DFU Device 0BA2A9D8>: operation 0 progress 51
    [13:47:34.0687] <DFU Device 0BA2A9D8>: operation 0 progress 52
    [13:47:34.0702] <DFU Device 0BA2A9D8>: operation 0 progress 53
    [13:47:34.0734] <DFU Device 0BA2A9D8>: operation 0 progress 54
    [13:47:34.0749] <DFU Device 0BA2A9D8>: operation 0 progress 55
    [13:47:34.0780] <DFU Device 0BA2A9D8>: operation 0 progress 56
    [13:47:34.0796] <DFU Device 0BA2A9D8>: operation 0 progress 57
    [13:47:34.0812] <DFU Device 0BA2A9D8>: operation 0 progress 58
    [13:47:34.0843] <DFU Device 0BA2A9D8>: operation 0 progress 59
    [13:47:34.0858] <DFU Device 0BA2A9D8>: operation 0 progress 60
    [13:47:34.0890] <DFU Device 0BA2A9D8>: operation 0 progress 61
    [13:47:34.0905] <DFU Device 0BA2A9D8>: operation 0 progress 62
    [13:47:34.0921] <DFU Device 0BA2A9D8>: operation 0 progress 63
    [13:47:34.0952] <DFU Device 0BA2A9D8>: operation 0 progress 64
    [13:47:34.0968] <DFU Device 0BA2A9D8>: operation 0 progress 65
    [13:47:34.0999] <DFU Device 0BA2A9D8>: operation 0 progress 66
    [13:47:35.0014] <DFU Device 0BA2A9D8>: operation 0 progress 67
    [13:47:35.0030] <DFU Device 0BA2A9D8>: operation 0 progress 68
    [13:47:35.0061] <DFU Device 0BA2A9D8>: operation 0 progress 69
    [13:47:35.0077] <DFU Device 0BA2A9D8>: operation 0 progress 70
    [13:47:35.0108] <DFU Device 0BA2A9D8>: operation 0 progress 71
    [13:47:35.0124] <DFU Device 0BA2A9D8>: operation 0 progress 72
    [13:47:35.0139] <DFU Device 0BA2A9D8>: operation 0 progress 73
    [13:47:35.0170] <DFU Device 0BA2A9D8>: operation 0 progress 74
    [13:47:35.0186] <DFU Device 0BA2A9D8>: operation 0 progress 75
    [13:47:35.0217] <DFU Device 0BA2A9D8>: operation 0 progress 76
    [13:47:35.0233] <DFU Device 0BA2A9D8>: operation 0 progress 77
    [13:47:35.0248] <DFU Device 0BA2A9D8>: operation 0 progress 78
    [13:47:35.0280] <DFU Device 0BA2A9D8>: operation 0 progress 79
    [13:47:35.0295] <DFU Device 0BA2A9D8>: operation 0 progress 80
    [13:47:35.0326] <DFU Device 0BA2A9D8>: operation 0 progress 81
    [13:47:35.0342] <DFU Device 0BA2A9D8>: operation 0 progress 82
    [13:47:35.0358] <DFU Device 0BA2A9D8>: operation 0 progress 83
    [13:47:35.0389] <DFU Device 0BA2A9D8>: operation 0 progress 84
    [13:47:35.0404] <DFU Device 0BA2A9D8>: operation 0 progress 85
    [13:47:35.0436] <DFU Device 0BA2A9D8>: operation 0 progress 86
    [13:47:35.0451] <DFU Device 0BA2A9D8>: operation 0 progress 87
    [13:47:35.0467] <DFU Device 0BA2A9D8>: operation 0 progress 88
    [13:47:35.0498] <DFU Device 0BA2A9D8>: operation 0 progress 89
    [13:47:35.0514] <DFU Device 0BA2A9D8>: operation 0 progress 90
    [13:47:35.0529] <DFU Device 0BA2A9D8>: operation 0 progress 91
    [13:47:35.0560] <DFU Device 0BA2A9D8>: operation 0 progress 92
    [13:47:35.0576] <DFU Device 0BA2A9D8>: operation 0 progress 93
    [13:47:35.0607] <DFU Device 0BA2A9D8>: operation 0 progress 94
    [13:47:35.0623] <DFU Device 0BA2A9D8>: operation 0 progress 95
    [13:47:35.0638] <DFU Device 0BA2A9D8>: operation 0 progress 96
    [13:47:35.0670] <DFU Device 0BA2A9D8>: operation 0 progress 97
    [13:47:35.0685] <DFU Device 0BA2A9D8>: operation 0 progress 98
    [13:47:35.0716] <DFU Device 0BA2A9D8>: operation 0 progress 99
    [13:47:35.0716] WinDFU::UploadData: EOF, cbRead: 1116
    [13:47:35.0732] <DFU Device 0BA2A9D8>: operation 0 progress 100
    [13:47:35.0732] WinDFU::UploadData: ZLP
    [13:47:35.0748] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 6
    [13:47:35.0748] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_SYNC
    [13:47:35.0748] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 7
    [13:47:35.0748] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST, PollTimeout: 3000
    [13:47:38.0758] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 8
    [13:47:38.0758] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_WAIT_RESET
    [13:47:38.0758] WinDFU::ResetDevice: resetting...
    [13:47:38.0836] WinDFU::FinalizeDfuUpdate: success
    [13:47:38.0836] <DFU Device 0BA2A9D8>: DFU succeeded
    [13:47:38.0836] Finished DFU Restore Phase: Successful
    [13:47:39.0039] DFU mode device disconnected
    [13:47:39.0039] Device removed when in state Restoring, moving device to transition state
    [13:47:39.0039] Changing state from 'Restoring' to 'Transitioning'
    [13:47:39.0039] Creating timer to monitor transition
    [13:47:41.0674] Recovery mode device connected
    [13:47:41.0674] Transitioning device returned, continuing restore.
    [13:47:41.0674] Canceling timer
    [13:47:41.0674] Changing state from 'Transitioning' to 'Restoring'
    [13:47:41.0684] requested restore behavior: Erase
    [13:47:41.0684] requested variant: Erase
    [13:47:41.0684] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [13:47:42.0528] iBoot build-version = iBoot-1940.10.58
    [13:47:42.0528] iBoot build-style = RELEASE
    [13:47:42.0528] requested restore behavior: Erase
    [13:47:42.0528] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0528] requested restore behavior: Erase
    [13:47:42.0528] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0543] unable to open device_map.txt: No such file or directory
    [13:47:42.0543] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [13:47:42.0543] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [13:47:42.0543] AMDeviceIoControl: GetOverlappedResult failed
    [13:47:42.0543] AMDeviceIoControl: pipe stall
    [13:47:42.0543] USBControlTransfer: error 31, usbd status c0000004
    [13:47:42.0543] command device request for 'getenv radio-error' failed: 2008
    [13:47:42.0543] radio-error not set
    [13:47:42.0543] unable to open device_map.txt: No such file or directory
    [13:47:42.0543] <Recovery Mode Device 0555AEB8>: production fused device
    [13:47:42.0543] requested restore behavior: Erase
    [13:47:42.0543] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0543] requested restore behavior: Erase
    [13:47:42.0543] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0543] interface has 1 endpoints, file pipe = 1
    [13:47:42.0543]
    [13:47:42.0543] <Recovery Mode Device 0555AEB8>: operation 4 progress -1
    [13:47:42.0606] unable to open device_map.txt: No such file or directory
    [13:47:42.0606] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [13:47:42.0606] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [13:47:42.0606] requested restore behavior: Erase
    [13:47:42.0606] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0606] requested restore behavior: Erase
    [13:47:42.0606] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0606] <Recovery Mode Device 0555AEB8>: operation 42 progress -1
    [13:47:42.0606] requested restore behavior: Erase
    [13:47:42.0621] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:43.0651] <Recovery Mode Device 0555AEB8>: operation 5 progress -1
    [13:47:43.0994] unable to open device_map.txt: No such file or directory
    [13:47:43.0994] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [13:47:43.0994] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [13:47:43.0994] AMDeviceIoControl: GetOverlappedResult failed
    [13:47:43.0994] AMDeviceIoControl: pipe stall
    [13:47:43.0994] USBControlTransfer: error 31, usbd status c0000004
    [13:47:43.0994] command device request for 'getenv ramdisk-delay' failed: 2008
    [13:47:45.0616] <Recovery Mode Device 0555AEB8>: operation 6 progress -1
    [13:47:46.0630] <Recovery Mode Device 0555AEB8>: operation 7 progress -1
    [13:47:46.0942] <Recovery Mode Device 0555AEB8>: operation 8 progress -1
    [13:47:46.0958] unable to open device_map.txt: No such file or directory
    [13:47:46.0958] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [13:47:46.0958] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [13:47:46.0958] <Recovery Mode Device 0555AEB8>: operation 9 progress -1
    [13:47:46.0958] <Recovery Mode Device 0555AEB8>: Recovery mode succeeded
    [13:47:46.0958] Finished Recovery Restore Phase: Successful
    [13:47:48.0409] Recovery mode device disconnected
    [13:47:48.0409] Device removed when in state Restoring, moving device to transition state
    [13:47:48.0409] Changing state from 'Restoring' to 'Transitioning'
    [13:47:48.0409] Creating timer to monitor transition
    [13:47:52.0895] RestoreOS mode device connected
    [13:47:52.0895] Transitioning device returned, continuing restore.
    [13:47:52.0905] Canceling timer
    [13:47:52.0905] Changing state from 'Transitioning' to 'Restoring'
    [13:47:52.0905] <Restore Device 05577800>: operation 44 progress -1
    [13:47:52.0905] requested restore behavior: Erase
    [13:47:52.0905] requested variant: Erase
    [13:47:52.0905] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [13:47:53.0792] requested restore behavior: Erase
    [13:47:53.0792] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:53.0792] device did not return saved USB log
    [13:47:53.0792] device did not return saved panic log
    [13:47:53.0792] previous restore failed with exit status 0x100
    [13:47:53.0792] connected to service com.apple.mobile.restored
    [13:47:53.0808] using protocol version 13
    [13:47:53.0808] unable to open device_map.txt: No such file or directory
    [13:47:53.0808] board config = n42ap
    [13:47:53.0808] no value returned for BootArgs
    [13:47:53.0824] _copyDeviceProperty() failed for restore bootargs
    [13:47:53.0824] no value returned for MarketingPartNumber
    [13:47:53.0824] _copyDeviceProperty() failed for mpn
    [13:47:53.0824] requested restore behavior: Erase
    [13:47:53.0824] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:53.0839] value query for 'HardwareModel' returned 'N42AP'
    [13:47:53.0839] <Restore Device 05577800>: operation 28 progress -1
    [13:48:10.0360] previous restore failed: re:INF@ 145] created partition 1 as 'Effaceable'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 2 as 'NVRAM'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 3 as 'Firmware'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 4 as 'Filesystem'
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 4
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 5 as 'System Config'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 6 as 'Diagnostic Data'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 7 as 'Bad Block Table'
    [13:48:10.0360] com.apple.AppleFSCompressionTypeZlib load succeeded
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 7
    [13:48:10.0360] AppleSamsungSerial: Identified Serial Port on ARM Device=uart1 at 0x32600000(0x82cc6000)
    [13:48:10.0360] L2TP domain init
    [13:48:10.0360] L2TP domain init complete
    [13:48:10.0360] PPTP domain init
    [13:48:10.0360] AppleSwissPPNFTL started with IOFlashStoragePartition provider
    [13:48:10.0360] [NAND] _FindFlashMediaAndKeepout:601 physical nand block offset 1
    [13:48:10.0360] AppleNANDFTL registered[NAND] start:356 this 0x85e41800 PROVIDER=0x85f2a400 flashMedia=0x85f2a400
    [13:48:10.0360] [NAND] WMR_Start:149 Apple PPN NAND Driver, Read/Write
    [13:48:10.0360] [NAND] WMR_Start:174 FIL_Init  [OK]
    [13:48:10.0360] AppleSamsungSerial: Identified Serial Port on ARM Device=uart3 at 0x32800000(0xde3b4000)
    [13:48:10.0360] virtual bool AppleDisplayPipe::start_hardware(IOService *), auto-detect chip
    [13:48:10.0360] [NAND] WMR_Open:371 VFL_Open    [OK]
    [13:48:10.0360] Scaler 0 enableDeviceClock(true,HALF_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 0 enableDeviceClock(true,FULL_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 0 enableDevicePower(true,0,HALF_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 0 enableDeviceClock(false,FULL_CLOCK_INDEX) = 0x0
    [13:48:10.0360] void AppleDisplayPipe::setupVideoDownscalingLimits(): minimum-frequency property not found, using getClockFrequency(0) instead.
    [13:48:10.0360] Scaler 1 enableDeviceClock(true,HALF_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 1 enableDeviceClock(true,FULL_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 1 enableDevicePower(true,0,HALF_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 1 enableDeviceClock(false,FULL_CLOCK_INDEX) = 0x0
    [13:48:10.0360] AppleMultitouchN1SPI: successfully started
    [13:48:10.0360] AppleH4CamIn::start - back camera expected
    [13:48:10.0360] AppleH4CamIn::start - front camera expected
    [13:48:10.0360] AppleH4CamIn::power_off_hardware
    [13:48:10.0360] AppleAP3DSH::probe found device with ID: 0x3f
    [13:48:10.0360] AppleAP3DSH::handleStart _calibrationMatrix [64699 -1892 -370] [-1570 65035 -244] [849 465 63854]
    [13:48:10.0360] AppleAP3DSH::handleStart _calibrationOffsets [518853 -714699 -1661621]
    [13:48:10.0360] AppleAP3DSH::handleStart - No calibration inverse matrix or the data is invalid, Compute locally
    [13:48:10.0360] AppleAP3DSH::handleStart _calibrationInverseMatrix [66427 1929 393] [1599 66087 261] [-895 -507 67257]
    [13:48:10.0360] AppleAP3DSH::handleStart _odr400HzSampleInterval = 2440
    [13:48:10.0360] AppleH4CamIn::setPowerStateGated: 0
    [13:48:10.0360] AppleCS35L19Amp: could not allocate control 395
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableDetect 1
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableType USBHost
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableDetect 0
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableType Detached
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [13:48:10.0360] AppleMultitouchN1SPI: detected HBPP. driver will be kept alive
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableDetect 1
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableType USBHost
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [13:48:10.0360] display-scale = 2
    [13:48:10.0360] display-rotation = 0
    [13:48:10.0360] found applelogo at /usr/share/progressui/[email protected]
    [13:48:10.0360] found display: primary
    [13:48:10.0360] display: 640 x 1136
    [13:48:10.0360] found PTP interface
    [13:48:10.0360] AppleSynopsysOTGDevice - Configuration: PTP
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: PTP
    [13:48:10.0360] AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: USBAudioControl
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: USBAudioStreaming
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: IapOverUsbHid
    [13:48:10.0360] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: PTP
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [13:48:10.0360] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: PTP
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: AppleUSBEthernet
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    [13:48:10.0360] IOAccessoryPortUSB::start
    [13:48:10.0360] virtual bool AppleUSBDeviceMux::start(IOService *) build: Jun 11 2014 20:11:28
    [13:48:10.0360] init_waste
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    [13:48:10.0360] AppleSynopsysOTGDevice::startUSBStack Starting usb stack
    [13:48:10.0360] IOReturn AppleUSBDeviceMux::setPropertiesGated(OSObject *) setting debug level to 7
    [13:48:10.0360] AppleBCMWLANCore::init(): IO80211-46 Jun 11 2014 20:10:03
    [13:48:10.0360] [NAND] WMR_Open:420 FTL_Open    [OK]
    [13:48:10.0360] [NAND] _publishServices:642 FTL capabilities: 0x00000001
    [13:48:10.0360] [NAND] _ppnvflGetStruct:3469 Checking borrowed blocks - count: 23 max_count: 23
    [13:48:10.0360] [NAND] _fetchBorrowedList:881 number of borrowed blocks 16
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 0
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 1
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 2
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 3
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 5
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 6
    [13:48:10.0360] 000828.945879 wlan.N[0] AppleBCMWLANCore::start(): Starting with MAC Address: <<<mac address>>>
    [13:48:10.0360] 000828.946182 wlan.N[1] AppleBCMWLANCore::setPowerStateGated():   powerState 1, fStateFlags 0x20, dev 0xc476b000 (this 1, provider 0)
    [13:48:10.0360] 000828.946197 wlan.N[2] AppleBCMWLANCore::setPowerStateGated():  Received power state change before driver has initialized, ignoring
    [13:48:10.0360] IO80211Peer::addPhyStatistics Phy stats started for addr <<<mac address>>>
    [13:48:10.0360] IO80211Peer::addPhyStatistics Tx Completion stats started for addr <<<mac address>>>
    [13:48:10.0360] IO80211PeerManager::initWithInterface cant add monitoring timer
    [13:48:10.0360] Started logging for intf
    [13:48:10.0360] IO80211PeerManager::initWithInterface: inited peer manager
    [13:48:10.0360] IO80211Interface::init peerManager=0x87cb8800
    [13:48:10.0360] start:156
    [13:48:10.0360] start:156
    [13:48:10.0360] AppleARMBacklight::start: No AAP function
    [13:48:10.0360] [effaceable:INIT] found current generation, 90, in group 1
    [13:48:10.0360] [effaceable:INIT] started
    [13:48:10.0360] [effaceable:INIT] started
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49152 62078<-usb->4608
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49153 62078<-usb->4864
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888adec8 established 62078<-lo0->49154 62078<-usb->5120
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade18 established 62078<-lo0->49155 62078<-usb->5376
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888adec8
    [13:48:10.0360] recv(13, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade18
    [13:48:10.0360] recv(14, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade18 established 62078<-lo0->49156 62078<-usb->5632
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49157 62078<-usb->5888
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49158 62078<-usb->6144
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49159 62078<-usb->6400
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49160 62078<-usb->6656
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49161 62078<-usb->6912
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49162 62078<-usb->7168
    [13:48:10.0360] unrecognized key 'BootArgs' in value query
    [13:48:10.0360] failed to handle value query for key 'BootArgs', sending back empty response
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49163 62078<-usb->7424
    [13:48:10.0360] unrecognized key 'MarketingPartNumber' in value query
    [13:48:10.0360] failed to handle value query for key 'MarketingPartNumber', sending back empty response
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49164 62078<-usb->7680
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] client protocol version 13
    [13:48:10.0360] *** UUID 4B2AC217-7071-EC47-8945-EB5E2188BE49 ***
    [13:48:10.0360] Restore options:
    [13:48:10.0360]  UUID                           => <CFString 0x19315c0 [0x2f3ad0]>{contents = "4B2AC217-7071-EC47-8945-EB5E2188BE49"}
    [13:48:10.0360]  MinimumSystemPartition         => <CFNumber 0x1931510 [0x2f3ad0]>{value = +1660, type = kCFNumberSInt64Type}
    [13:48:10.0360]  SystemPartitionSize            => <CFNumber 0x1930f50 [0x2f3ad0]>{value = +1660, type = kCFNumberSInt64Type}
    [13:48:10.0360]  SystemPartitionPadding         => <CFBasicHash 0x192f3c0 [0x2f3ad0]>{type = mutable dict, count = 5,
    [13:48:10.0360] entries =>
    [13:48:10.0360]  2 : <CFString 0x1931540 [0x2f3ad0]>{contents = "128"} = <CFNumber 0x1931570 [0x2f3ad0]>{value = +1280, type = kCFNumberSInt64Type}
    [13:48:10.0360]  3 : <CFString 0x1930f20 [0x2f3ad0]>{contents = "16"} = <CFNumber 0x192f3f0 [0x2f3ad0]>{value = +160, type = kCFNumberSInt64Type}
    [13:48:10.0360]  4 : <CFString 0x192ede0 [0x2f3ad0]>{contents = "32"} = <CFNumber 0x1931250 [0x2f3ad0]>{value = +320, type = kCFNumberSInt64Type}
    [13:48:10.0360]  5 : <CFString 0x1931960 [0x2f3ad0]>{contents = "8"} = <CFNumber 0x192ed50 [0x2f3ad0]>{value = +80, type = kCFNumberSInt64Type}
    [13:48:10.0360]  8 : <CFString 0x1931180 [0x2f3ad0]>{contents = "64"} = <CFNumber 0x1931950 [0x2f3ad0]>{value = +640, type = kCFNumberSInt64Type}
    [13:48:10.0360] }
    [13:48:10.0360]
    [13:48:10.0360] entering load_sep_os
    [13:48:10.0360] device has no sep
    [13:48:10.0360] entering partition_nand_device
    [13:48:10.0360] device supports boot-from-NAND
    [13:48:10.0360] nand device is already partitioned
    [13:48:10.0360] entering wait_for_storage_device
    [13:48:10.0360] Searching for NAND service
    [13:48:10.0360] Found NAND service: IOFlashStoragePartition
    [13:48:10.0360] NAND initialized. Waiting for devnode.
    [13:48:10.0360] entering clear_remap_variable
    [13:48:10.0360] executing /usr/sbin/nvram
    [13:48:10.0360] entering format_effaceable_storage
    [13:48:10.0360] effaceable storage is formatted, clearing it
    [13:48:10.0360] effaceable storaged cleared
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [13:48:10.0360] executing /sbin/fsck_hfs
    [13:48:10.0360] AppleD1972PMUPowerSource: limiting USB input current to 390 mA (measured 462 mA)
    [13:48:10.0360] ** /dev/rdisk0s1s1
    [13:48:10.0360]    Executing fsck_hfs (version hfs-277.10.5).
    [13:48:10.0360] ** Checking Journaled HFS Plus volume.
    [13:48:10.0360] ** Detected a case-sensitive volume.
    [13:48:10.0360]    The volume name is Sochi11D257.N42OS
    [13:48:10.0360] ** Checking extents overflow file.
    [13:48:10.0360] ** Checking catalog file.
    [13:48:10.0360] ** Checking multi-linked files.
    [13:48:10.0360] ** Checking catalog hierarchy.
    [13:48:10.0360] ** Checking extended attributes file.
    [13:48:10.0360] ** Checking volume bitmap.
    [13:48:10.0360] ** Checking volume information.
    [13:48:10.0360] ** Trimming unused blocks.
    [13:48:10.0360] ** The volume Sochi11D257.N42OS appears to be OK.
    [13:48:10.0360] executing /sbin/mount_hfs
    [13:48:10.0360] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [13:48:10.0360] /dev/disk0s1s1 mounted on /mnt1
    [13:48:10.0360] entering check_for_restore_log
    [13:48:10.0360] found restore log (size = 28347)
    [13:48:10.0360] entering unmount_filesystems
    [13:48:10.0360] error unmounting '/mnt2': Invalid argument
    [13:48:10.0360] entering clean_NAND
    [13:48:10.0360] NAND format complete
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0 system= data=
    [13:48:10.0360] entering format_storage_for_LwVM
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] unexpected partition 'LwVM' - skipping
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system= data=
    [13:48:10.0360] entering create_filesystem_partitions
    [13:48:10.0360] User specified system partition size, skipping firmware extras size.
    [13:48:10.0360] system partition padding size is: 167772160 bytes
    [13:48:10.0360] unable to open : No such file or directory
    [13:48:10.0360] creating 2 partitions
    [13:48:10.0360] creating encrypted data partition
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [13:48:10.0360] wipe entire partition: 1 (old = 0 new = 1820)
    [13:48:10.0360] block size for /dev/disk0s1s1: 4096
    [13:48:10.0360] /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [13:48:10.0360] executing /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [13:48:10.0360] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [13:48:10.0360] block size for /dev/disk0s1s2: 4096
    [13:48:10.0360] /sbin/newfs_hfs -s -v Data -J -P /dev/disk0s1s2
    [13:48:10.0360] executing /sbin/newfs_hfs -s -v Data -J -P /dev/disk0s1s2
    [13:48:10.0360] Initialized /dev/rdisk0s1s2 as a 13 GB case-sensitive HFS Plus volume with a 8192k journal
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [13:48:10.0360] entering mount_filesystems
    [13:48:10.0360] executing /sbin/fsck_hfs
    [13:48:10.0360] ** /dev/rdisk0s1s1
    [13:48:10.0360]    Executing fsck_hfs (version hfs-277.10.5).
    [13:48:10.0360] ** Checking Journaled HFS Plus volume.
    [13:48:10.0360] ** Detected a case-sensitive volume.
    [13:48:10.0360]    The volume name is System
    [13:48:10.0360] ** Checking extents overflow file.
    [13:48:10.0360] ** Checking catalog file.
    [13:48:10.0360] ** Checking multi-linked files.
    [13:48:10.0360] ** Checking catalog hierarchy.
    [13:48:10.0360] ** Checking extended attributes file.
    [13:48:10.0360] ** Checking volume bitmap.
    [13:48:10.0360] ** Checking volume information.
    [13:48:10.0360] ** Trimming unused blocks.
    [13:48:10.0360] ** The volume System appears to be OK.
    [13:48:10.0360] executing /sbin/mount_hfs
    [13:48:10.0360] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [13:48:10.0360] /dev/disk0s1s1 mounted on /mnt1
    [13:48:10.0360] executing /sbin/fsck_hfs
    [13:48:10.0360] ** /dev/rdisk0s1s2
    [13:48:10.0360]    Executing fsck_hfs (version hfs-277.10.5).
    [13:48:10.0360] ** Checking Journaled HFS Plus volume.
    [13:48:10.0360] ** Detected a case-sensitive volume.
    [13:48:10.0360]    The volume name is Data
    [13:48:10.0360] ** Checking extents overflow file.
    [13:48:10.0360] ** Checking catalog file.
    [13:48:10.0360] ** Checking multi-linked files.
    [13:48:10.0360] ** Checking catalog hierarchy.
    [13:48:10.0360] ** Checking extended attributes file.
    [13:48:10.0360] ** Checking volume bitmap.
    [13:48:10.0360] ** Checking volume information.
    [13:48:10.0360] ** Trimming unused blocks.
    [13:48:10.0360] ** The volume Data appears to be OK.
    [13:48:10.0360] executing /sbin/mount_hfs
    [13:48:10.0360] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [13:48:10.0360] /dev/disk0s1s2 mounted on /mnt2
    [13:48:10.0360] entering resize_system_partition_to_options
    [13:48:10.0360] User specified system partition size, skipping firmware extras size.
    [13:48:10.0360] Found SystemPartitionPadding value of 167772160 bytes
    [13:48:10.0360] Erasing system partition prior to resize operation.
    [13:48:10.0360] block size for /dev/disk0s1s1: 4096
    [13:48:10.0360] /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [13:48:10.0360] executing /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [13:48:10.0360] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [13:48:10.0360] executing /sbin/fsck_hfs
    [13:48:10.0360] ** /dev/rdisk0s1s1
    [13:48:10.0360]    Executing fsck_hfs (version hfs-277.10.5).
    [13:48:10.0360] ** Checking Journaled HFS Plus volume.
    [13:48:10.0360] ** Detected a case-sensitive volume.
    [13:48:10.0360]    The volume name is System
    [13:48:10.0360] ** Checking extents overflow file.
    [13:48:10.0360] ** Checking catalog file.
    [13:48:10.0360] ** Checking multi-linked files.
    [13:48:10.0360] ** Checking catalog hierarchy.
    [13:48:10.0360] ** Checking extended attributes file.
    [13:48:10.0360] ** Checking volume bitmap.
    [13:48:10.0360] ** Checking volume information.
    [13:48:10.0360] ** Trimming unused blocks.
    [13:48:10.0360] ** The volume System appears to be OK.
    [13:48:10.0360] executing /sbin/mount_hfs
    [13:48:10.0360] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [13:48:10.0360] /dev/disk0s1s1 mounted on /mnt1
    [13:48:10.0360] Trying to resize system partition to 1908408320 bytes aka 1820 MB
    [13:48:10.0360] entering adjust_partition_preflight
    [13:48:10.0360] partition:0 requiredSize=465920
    [13:48:10.0360] no change in size
    [13:48:10.0360] Successfully resized the system partition
    [13:48:10.0360] entering maximize_data_partition
    [13:48:10.0360] entering adjust_partition_preflight
    [13:48:10.0360] partition:1 requiredSize=<<<<<IMEI>>>>>>6
    [13:48:10.0360] maximizing data partition to 13946060799 bytes
    [13:48:10.0360] entering adjust_partition_preflight
    [13:48:10.0360] partition:1 requiredSize=3404800
    [13:48:10.0360] no change in size
    [13:48:10.0360] Successfully resized data partition to consume free blocks
    [13:48:10.0360] The system partition now has a total HFS+ capacity of 1820 MB
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [13:48:10.0360] entering unmount_filesystems
    [13:48:10.0360] entering ramrod_ticket_update
    [13:48:10.0360] looking up root ticket hash
    [13:48:10.0360] device tree ticket-hash: <CFData 0x1930040 [0x2f3ad0]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [13:48:10.0360] ticket_hash: <<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>
    [13:48:10.0360] received valid ticket (2741 bytes)
    [13:48:10.0360] entering restore_images
    [13:48:10.0360] Successfully marked device node /dev/rdisk0s1s1 as static data
    [13:48:10.0360] executing /usr/sbin/asr -source asr://localhost:12345 -target /dev/disk0s1s1 -erase -noprompt --chunkchecksum --puppetstrings
    [13:48:10.0360] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [13:48:10.0360] void AppleUSBDeviceM

    Hello gamavranje,
    Thanks for using Apple Support Communities.
    The icons you're seeing on your iPhone indicate it is in recovery mode.  Please plug your iPhone into your computer, and restore it with iTunes.
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/HT1414
    Take care,
    Alex H.

  • How do I correctly time while loops using SCPI and VISA/Ethernet communication to send DC current Values to a Power supply?

    I'm rather new to using labview and I having an
    issue with a test Data Aquisition lab I'm trying to setup using a
    Keithley 6221 AC/DC current source and a basic PCI M-series NI-DAQmx. 
    First of all, I'm looking to update the  current value on a power
    supply at a rate of atleast 10Hz and I'm using SCPI commands and VISA
    communication through ethernet to do so.  Attached below is the VI I
    have written. 
    The issue I'm having is this:
        My VI will
    loop through the values fine in software, or so it seems.  I am unable
    to get the Power supply to update sequentially if I don't set my loop
    delay to anything greater than 130ms.  If I try to run the loop faster
    it starts skipping values instead of counting 1,2,3,4,5,1,2,...etc.  it
    goes 1,2,4,5,2,4,1,2 on the display of the power supply and my DAQ unit
    also skips these values so I know that the number just isn't getting
    read to the Power supply in time.  I was wondering if this was due to
    my sloppy programming or if it is a hardware issue, my computer or the
    method of communication to the power supply?  Is this due to the fact
    that I'm using ethernet and VISA communication?  Is there a faster way
    to communicate or is GPIB faster?  Any input at all would be extremely
    helpful.
    On a side note:  Right now I'm using an pre-determined
    array of values that I can update on the fly but in the future this
    with be put into a  closed-loop control system.  The value for the
    power supply output will be determined by the loop and sent that way.
    Attachments:
    basic DC loop 6221 Keithley.vi ‏145 KB

    Also, one of the string constants is NOT set to '\' Codes Display. Here is an alternative method of calculating the index. I removed the DAQ and VISA stuff since I could not run it.
    Lynn
    Attachments:
    basic DC loop 6221 Keithley.2.vi ‏16 KB

  • Power supply shuts down laptop during gaming.

    I have a cx705mx.
    This happens only during gaming, everything else is fine..browsing the net, watching movies etc. So if I open a game (world of warcraft) with the power supply in the laptop will shut down within 1-2 minutes. The lights are still lit but the laptop is unresponsive, i have to take the battery out and put it back in to turn it on. However if i take the power supply out and just use battery power I can play games flawless, no problems, but if I stick the power supply back in the laptop shuts down.

    It can be the problem from the adapter, but you need another good adapter to verify.
    Also, try to monitor the temperature of the CPU and the GPU before the shut down and see if you're having the high temperature of CPU/GPU which caused the shut down.

  • Power supply freezes after running vi second time

    Hello,
    I am just starting my adventures in brave new world of LabView and I run into a problem with my first serious vi which is controling CPX400DP power supply and DPO4104 oscyloscope.
    What my vi should be doing:
    First it sets current levels of both channels of power supply (e.g. 5V on first, 0V on second) and size of the jump (e.g. 0.5V). Then vi should change both current levels by size of the jump and repeat till the current levels of both channels would be reverse to the start value (in this case, 0V on first channel, 5V on second). Also before every current change the vi would save to file mean of measurements out of the waveform from oscyloscope.
    What my vi is doing:
    At first run it seems that it's doing everything in order (new text file with resonable numbers is created). However, when I try to run the vi a second time my power supply freezes short after few current changes. I can stop the execution of the vi in LabView (it does take a while though) but to successfully run the vi again I must reset my power supply (turn it off and on).
    I tried to go around this problem by modyfing the vi in a way that it would do what I want multiple times during running the vi only once but unfortunately that didn't work.
    If anyone would have any suggestions about what I am doing wrong or how to help fix this problem feel free to share I don't bite... much  But seriously, I'm stuck with this problem for over a week and I'll be glad for any tips 
    Thanks!
    Waldek.
    PS Sorry if I am not clear somewhere but I'm not used to talk about programing in English
    PSS In attachments are my main vi and two sub vis.
    Solved!
    Go to Solution.
    Attachments:
    controling_power_supply_NEW.vi ‏29 KB
    current_changer.vi ‏17 KB
    waveform_reader_saver.vi ‏21 KB

    Revan-Ghost wrote:
    Thanks for a suggestion Bill but could you elaborate a bit on "try inserting ;*OPC? after every setup command"? I understand what that would do, concept wise, but as a new user I don't know how to do that in LabView. And Good Uncle Google doesn't say anything about " ;*OPC? " and insist on talking about OPC servers instead.
    I'm sorry - I was looking at the manual and failed to realize that the missing subVIs from your code were actually drivers for your power supply, so you may not be able to implement this (unless the drivers themselves have the "Operation Complete" capability - hopefully the drivers came with documentation).  Else, you may be stuck having to hardcode waits after each command.
    If you wrote your own drivers, this is how you would send the command to set output 1 to 1 Volt:
    V1 1;*OPC?
    The V1 1 sets your voltage to 1 Volt.  To tack on another command, you use the semicolon.  The *OPC? command forces it to return send a "1."  SInce the commands are acted upon sequentially, the power supply can't send the "1" until it is done processing the command to set it to 1 Volt.  After that command is complete, the "1" is sent, you read the 1 out of the buffer and move on.  This avoids issues where you pile on too many commands at once.  I checked the manual and it supports this feature.
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • Using LabVIEW for temperature control with AMREL SPS200-50-A022 power supply

    Hi, I hope someone can help me out. I'm an ME undergrad with pretty much no knowledge of LabVIEW. I am working a project which requires a temperature controller. Previously, we were using an SPS120-10 power supply from AMREL and a grad student wrote a LabVIEW VI which performed feedback temperature control. The VI would acquire temperature from a Benchlink which acquire the temperature from a thermocouple. The VI also monitor the output voltage & current and determine the power output and heater resistance from those values. When a desired temperature is set, the VI compares the actual temperature to the set temperature and adjust the voltage/current setting to achieve the desired temperature. The VI was designed to keep temperature deviation to within +/-0.5 deg C. I'm not sure of the data refresh rate, but it's on the order of seconds since the system has a small thermal mass and we're operating in the 800+ deg C range. When we were using the SPS120-10, the device used GPIB for communication with the PC. Due to higher power output demand for the heater, we switched to an SPS200-50, which only has an RS-232 port. First of all, I was wondering if someone could help me modify the VI so that it could communicate with the SPS200-50 through the serial port? In addition, the drivers for the SPS120-10 and SPS200-50 might be different. If modifying the VI to communicate through the serial port isn't enough, I would need to figure out where to modify the VI with the SPS200-50 drivers, which is provided by AMREL. If anyone would like, I can send you the VI files so that you can take a look at the block diagram and tell me where to modify it. I'm still not 100% certain I understand how to read LabVIEW block diagrams.
    Please let me know if you need any additional information. Any help would be appreciated. Thanks in advance!

    I have looked over your vi. First of all you have to do some changes in the "ARSPS Initialize.vi" See picture.
    The best way to check instrument communication is to send the *IDN? Command. The instrument will indentify itself in response to this command. The vi I have included is a labview example. Use this Vi to test your communication. Do not progress before this is working. The VI is also an excellent example on how to set up and close down RS232 communication.
    The VI "Tfeedbackpowercontroller-nolvdt-Dinh.vi" looks OK so I guess it will work then your RS232 communication with the SPS200-50-A022 is working
    good luck
    PS as mentioned before you will find all the RS232 details in the instrument manual
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)
    Attachments:
    sample.PNG ‏38 KB
    Basic Serial Write and Read.vi ‏29 KB

  • To connect a Power Supply over RS-232 in LabView

    Have a nice day,
    dear friends, I have done some basic programs before in LabView, my project is now to connect Agilent E3631A DC Power Supply serially and sending/recieving data(my aim to change input voltage from the computer without touching the hardware device).
    I actually already connected the Power Supply to my computer ,I also downloaded driver of it from Agilents web site.
    So the only thing is now to establish the connection in LabView.
    hmmm. can you please tell me what to do now ? I have no idea if I should choose VISA or DAQ or sth else.. how can I let the LabView to send a new voltage to the hardware.
    With best wishes
    Message Edited by Support on 11-09-2007 08:29 AM

    After installing LabView 7.0 and VISA Now I have concrete questions. Do I need some more program to install ? ( drivers I already found from ni.com )
    You should have everything you need to do serial communications installed. The drivers you downloaded should help you get started with your applicaition, so I'd install them as well.
    first of all I installed LabVIEW Evaluation version 7.0 , and I can`t open sources which are written with ver. 7.1 , how can i handle this problem ? ( because somebody sent me some codes which are written in 7.1 and I definetely want to see them )
    You can save VIs to the previous version only. So will need to have somebody save the code to 7.0 for you.
    second; should I use VISA or IVI ? whats the difference between them ?
    At this point, I wouldn't worry about IVI. The drivers you downloaded are probably "IVI Drivers" but use VISA to communicate with your instrument. If you want to know a bit more about IVI in general, just do a search on ni.com for "IVI".
    third; lets concider that I use VISA . From the IO Config menu, I choose COM 2 and VISA interface name is than ASRL2(automatic). And than from VISA Assistant, I choose the place of the driver of my Power Supply. Up to now everything seems to be ok. what is the next step after here ? Do i forget some configurations?
    The first step is to initialize the port and instrumnet. If you look on your functions palette from the block diagram, there's a sub palette named "Instrument I/O" and a sub palette of that one named "Instrument Drivers". In this drivers palette, you should see a palette for the drivers you installed for the power supply. There should also be a sub palette in there named "Applicaiton Examples" that can help you get started. There should be one or two examples that will allow you to control the power supply, and you should be able to open the block diagram and see how it's put together.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Finding Address of Ethernet Controlled (VXI) Power Supply

    I have a PXI system, and a TTI CPX400 power supply connected via Ethernet. In order to initialize and control these power supplies with the premade VIs, I need to supply a resource name in the form of: TCPIP0::<IP>::9221:OCKET. The concern I have is that each power supply has a different IP address, and in order to determine it, I need to connect the supply to a computer and run an LXI Discovery tool (http://tti-test.com/go/psx/psx-downloads/lxi-disco​very_tool.zip), which is a windows, GUI based tool. I would like to know if anyone has a solution for identifying such a device and finding its address in some way that can be implemented from within a labview program, so that if a power supply is replaced, communication can be established without having to manually run the discovery tool and then enter that address into my configuration file. Also, the power supplies have unique host names, so I can't just look up the address that way.
    Thanks for any suggestions.

    By far the easiest is to just set a static IP address for each of your supplies.  It is just let setting up a GPIB address.  Most supplies have menus on the front panel so that you can set them to have a static address.  I do this for all of my LAN instruments.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions

  • Shock Therapy - An Athlon64 / FX Power Supply Guide

    I used to make a hardware list of all the components I would like to incorporate in my next
    computer build. Normally...at the bottom of that list would be the power supply, not that I
    didn't think it was important, it's just that my other hardware was so interesting! Today, power supplys
    seem to take a back seat to blazing-speed CPU's, Dual-Cored processors, glitz and glamour
    video cards...not to mention supersonic, heat-sinked RAM and modular, gizmoe'd PSU's promising not
    only over-achiever specifications, but eye-candy as well. The lowly PSU....tucked up somewhere inside
    it's dark and lonely loft....effortlessly supplying us with the energy required for important 3D imaging
    or just funning with the latest games.
    What a power supply does is rather simple. It converts your office or home's socketed electricity to
    usable 3.3v, 5.0v and 12.0v energy...that's all. A power supply that cannot efficiently do this will-
    over time-cause computer crashes, continuous reboots and shutdowns, and worse...expensive component damage.
    And now, with faster processors such as AMD's Athlon64 and FX line of CPU's, never has there been a time, when
    choosing the right power supply is so important! This article is written for those using these high-powered CPU's!
    Well...Do we have your attention!?
    If you are experiencing these problems, or still scratching your head over that last RMA....could be
    your PSU is trying to tell you something.
    To begin with, a power supply's ratings refer to its maximum output under ideal conditions. No power
    supply is 100% efficient. In high-quantity manufacturing, power supplys may not put out any more than 60% of
    their advertised specifications. In any PSU, that rating can be further reduced by the effects of heat
    and electro-magnetic radiation. That's where "switching" power supplys come in. A switching power supply draws
    only as much current that is needed from the AC input. Buying a hefty PSU with this feature will guarantee
    that you will be paying no more for electric service, than you would with a cheaper, less powerful unit.
    One of the most common causes of power supply inefficiency, and ultimately failure is dirt. Dust and
    foreign materials can cause the beginning of the end for a power supply, by attacking the fan first.
    It begins by slowing the fan down...thus creating heat through friction, then ultimately burning it out.
    PSU's with high-quality ball bearing fans are a must. They are far more durable, and not as likely to
    become noisier as time goes by.
    As a general rule...a failing PSU will usually emit abnormal sounds, followed by unstable voltage readings....
    then the computer crashes or lock-ups, with random shutdowns, and sometimes...refusal to even power-up.
    If you think your power supply is on its last leg...better to deal with it now, or face the more serious dilemmas later on.
    APM (Advanced Power Management)
    APM is a feature originally developed by partners, Microsoft and Intel. It relates to a systems ability
    to utilize different states in regards to a systems utilization of power. On, Off, Standby and Suspend
    are examples...these are BIOS features, not PSU functions. APM only requires of the power supply, the
    function to turn power on or off through an electrical signal, and the presence of stand-by voltage.
    All ATX power supplys are required to incorporate this feature. However, if some components in a computer
    are not APM-compliant, your system may encounter errors or freezes when going into hibernate or stand-by
    modes.
    ACPI (Advanced Control Power Interface)
    It's the latest power management control that was developed by a conglomeration of IT corporations. This interface
    is O.S. derived, rather than BIOS, and all ATX power supplys should be ACPI-compliant. You should not have to be
    concerned about this feature.
    Line-Conditioning Circuitry
    A power supply component that helps control power levels, spikes and surges in
    the most unreliable of home sockets.
    EMI Filter
    This circuitry smooths the fluctuations of incoming AC currents, also known
    as Electro-Magnetic Interference - EMI filters are usually found in higher-end power supplys.
    PFCC
    Power Factor Correction Circuitry...smooths out sudden, initial spikes in power
    delivery - reducing amplitude and preventing circuit overloads.
    Connectors
    There are five main connectors found on the latest version ATX power supply.
    1) ATX main power connector - 20-pin, 24-pin, and 20 to 24-pin adapter.
    2) ATX 12v power connector (4-pin to CPU)
    3) Molex peripheral power connector
    4) Floppy power connector
    5) Serial ATA power connector
    On newer SLI-certified power supplys, you'll find two 6-pin video card connectors.
    Know What You Need
    When purchasing a power supply, make sure your parts list is all-inclusive...know ahead of time, what you expect to
    install in your system. You should also visit the motherboard manufacturer's site, as well as the CPU's. Most of the
    products will have specifics regarding power supply requirements needed for that specific component. Unfortunately, you
    really won't know how well the PSU performs until it is installed and running your system (hopefully!) This is the main reason we
    recommend the most popular brands - power supplys that have shown a duration of manufacturing quality over the years. Those are
    as follows: Antec, Enermax, OCZ, PC Power and Cooling, Tagan, and a few newcomers such as SeaSonic and Silverstone are
    worth looking into.
    If you believe you have found the PSU of choice, remember this: AMD recommends a minimum 350 watt power supply to run
    Athlon64 and FX CPU's. To that, add the 30% for power lost to heat, and the subsequent electro-magnetic radiation. Hold on with that
    calculator...throw in an additional 40% to 60% for the "potential" inaccuracies of specifications inherent in mass-produced electronics.
    Pay special attention to outputs on either single, or dual rail +12v lines. A motherboard, CPU, and graphics card can consume up to
    150 watts alone - before hooking up your remaining components. If running an SLI configured board, look for a PSU that is certified
    to run that configuration...there's only a few PSU's that lay claim to that!
    Broken down, you can look at it this way: An Athlon64/FX processor can use up to 90 watts off the +12v rail. High performance RAM
    can take in about 25 watts for each stick of 256MB system memory from the +3.3v line. PCI cards will use about 10 watts each, while
    an AGP video card can consume about 50 precious watts alone from the +5v or +12v. Hard drives? A 7,200 RPM drive...about 15 watts
    each, taken from the +5v and +12v rail. Finally, but not absolutely is the optical drives...robbing about 20 watts each, also from
    the +5v and +12v lines. So you see....not only is the +12v amp ratings of concern, but also the +5v line!
    In doing the math...on a system incorporating an Athlon64 (say a 4000+), 2 sticks of high-end RAM, 2 or 3 PCI cards, 1 mid-to-high
    end AGP video card, 2 ~ 7,200 RPM hard drives, and a couple of CD/RW or DVD/RW opticals...you're looking at a "base" requirement of 270 to 325 watts. That's for a running system...now figure boot-up loads, 30% for heat and radiation bleed-off, then a 40% safety factor for manufacturing inconsistencies...you've got a power supply in the 450 to 520 watt range!
    Modular Power Supplys:
    The pins that are used for the modular plugs are not very good at passing current. It's basically electrical resistance between the male and female components, and voltage "drops" are likely. In real world events, they will become loose, dirty, corrosive, and eventually burn. You can figure about 10% less efficiency with a modular power supply.
    Now you can understand how manufacturing "tolerances" that are inaccurate by 40% to 60%, can have such a devastating effect on
    the performance of your new system. If you follow these simple guidelines, bearing in mind the hardware you will be using, and what
    your intended use of the computer is for...then it will be one less dramatic incident when pushing the power button for the first time!
    Here's a neat little tool....a bit out of date - that can give you a basic idea of what you'll need in a PSU.
    You can apply the percentages above, for an even more accurate assesment of your PSU requirements!
    http://www.jscustompcs.com/power_supply/Power_Supply_Calculator.php?cmd=AMD

    Quote
    In doing the math...on a system incorporating an Athlon64 (say a 4000+), 2 sticks of high-end RAM, 2 or 3 PCI cards, 1 mid-to-high
    end AGP video card, 2 ~ 7,200 RPM hard drives, and a couple of CD/RW or DVD/RW opticals...you're looking at a "base" requirement of 270 to 325 watts. That's for a running system...now figure boot-up loads, 30% for heat and radiation bleed-off, then a 40% safety factor for manufacturing inconsistencies...you've got a power supply in the 450 to 520 watt range!
    Well, except the CPU, my system has all that you mentioned there (I even have 3 optical drives). And my 350W PSU has been rock solid for more than a year (BeQuiet, = Tagan, IIRC). I don't think a 4000+ needs 100W more than my 3200+ . And that link you posted says that the minimum recommended PSU for my system is 506W  xD. Come on.
    Oh, and in the place I work there are 6 amd64 with GeForce 6800 GT and 2GB RAM with 380W Antec PSUs. All 100% stable, of course.
    I would only go for >400W if I wanted to do extreme OC (with overvolting), or SLI. Otherwise, a good brand 350W PSU is more than enough.

  • IMac G5 bluetooth + airport + power supply problems - oh and the dvd drive

    Yeah, seems like a lot is going wrong with my mac lately. I bought the iMac G5(no isight) model last year around july. I had some power issues (i.e. leaving the house with it turned on to come home and find it off) For the last year though that was all that was wrong. Once I had to reinstall OS X because it would not find the OS X harddrive during one of these power losses, but that was it.
    Then about two weeks ago, I came home to a turned off iMac. I thought the power had gone out in my apartment, but the clocks were all right, and to my surprise the iMac would not turned on. Because I am not under warranty I searched online and found an extended exchange program for my emc model. (http://www.apple.com/support/imac/powersupply/repairextension/) I made an appt at the apple store and they replaced the power supply.
    I got the machine back two nights ago and my bluetooth hardware wasn't recognized. And I now had a new "ink" system preference panel in the hardware section which aparently is some sort of handwriting recognition tablet. It ticked me off, but I just wanted to use my computer.
    Well today I came home from work and my computer was acting funny. Everywhere I clicked brought up dashboard. This had never happened before and I had no choice but to force a shutdown. Powered it back up and poof, there goes my airport card. No hardware recognized. Now I have a 25 ft cable running the floor of my apartment. This was cause enough to call apple. I was told to make another apointment to bring the computer in. The guy made it sound like it was no big deal to lug a 30 lb bulky computer 40 miles and through a crowded mall. He also made no promises that the repairs would be covered under the exchange program.
    I just wanted to hear any suggestions before I decide whether or not its worth it to bring in the computer. Nothing shows up in system profiler under bluetooth or airport. Should I just lie to the "genius" and tell them that my computer still shuts down randomly? I think that way they would at least replace the logic board (which I think is the problem) before telling me to sell my kidney and pay for repairs. I've tried reseting the SMU, and I looked at the bluetooth and airport cards to see if they had been accidently disconnected during the PS replacement. They are actually screwed into the logic board so I think their connections are efficient.
    Oh and about the DVD drive. I have to use two cd's in order to burn a single disc. The first disc I put in the drive NEVER works. It spins for about 30 seconds then starts buzzing like blender and spits the cd back out. The second blank disc I put in USUALLY works, but sometimes it takes three discs. This problem has always been there since day 1, but I don't burn enough cd's for it to be an issue.
    Thank you for listening to my gripes. I really don't think I'll make the mistake of buying the first issue of a model.
    iBook G4 900mghz, iMac G5 20" 2.0 ghz   Mac OS X (10.4.8)  

    OK, first thing -to restore your bluetooth, shut down, unplug for a few minutes and then reboot. Thay usually brings the BT back. You should also repair permissions. Reset your SMU nd your PRAM as well.
    Try those four things and please post back,
    Miriam

  • UPS Causing Disturbance to Mac Pro Power Supply

    I have been doing a lot of work on upgrading two Mac Pro's over the last few days. I have one attached to an APC UPS 1300VA 780W rated. Normally this Mac Pro is under my desk, so I do not here it. During the process of one of the upgrades I had the Mac Pro sitting right in front of me on my desk. As soon as I powered it up, I could hear this disturbing "hum" or "buzz" coming from the power supply of the Mac Pro. However the Mac Pro seemed to operate fine.
    I decided to unplug the Mac Pro from the APC UPS and into a regular Tripp-Lite wall surege protector with no UPS. The noise was significantly reduced. Therefore my question to you is:
    1. Do you think the fact that the APC is creating the problem or introducing a different signal (maybe not true Sine Wave) than what is required by the Mac Pro?
    2. For those that have a newer Nehalem Mac Pro and they have access to the back, how would you rate the "hum"? Is it what you would expect? Now that I have it off the APC UPS, it seems more normal (it is audible, but only with my ear close to it).
    3. How well are the power supply units in the Mac Pro designed? Enough to handle immediate loss of power? What about cleaning the power coming in? Sometime the voltage drop across my AC outlet is 110V to 120 V.
    Mike

    RS? XS? something other than those? The linked discussion OP had an XS and went to SMART unit. Before I bought CyberPower to replace one of my two 1500VAs (one XS and other RS) I decided to ditch APC this go around. And, glad I did. Quiet, green, stand-by mode.
    The 2008 had bad inrush current, and ever since the G5 Quad with 1kw PSU people have been looking for the best UPS.
    One article talked about PSU efficiency, and apparantly Apple's didn't match the 85+.

  • The Power Supply Fan is still working, but does not appear to respond to increased loads, and its speed cannot be increased using SMCFanControl. Any suggestions?

    Hi all - My mac pro 1,1 has an enigmatic problem. It's quad-core, 3Ghz, running OS X 10.7.5. The problem began some months back, when running HD video conferences, HD streaming videos and some other graphics-moderate (I won't say intense) uses, such as slide shows in Just Looking. My machine has an ATY, RadeonX1900 card and 2 monitors - both Apple displays, one being 30 inch 2560x1600, the other being 24 inch 1920x1200.
    When I start those types of graphics-moderate apps, after about 5 minutes, something would crash (the monitors making a noise as it did) and the displays would both go black. The power did not appear to be fully cut off from the monitors. I think that the underlying applications, however, did not crash. So, I could still hear and speak to people during video conferences, and I could hear the sound tracks of videos.
    Attempts to restart the computer and get the monitors back did not immediately work to undo the problem, if done straight away. The only way to correct the problem (so as to have the monitors work) was to wait for a few minutes and then restart.
    After a lot of puzzled looking at console logs (and I confess that I am not an expert), I ran into a blank.
    But, because of the timing of the crashes (after ~5minutes use) and restarts (after some minutes wait), I reasoned that the problem might be temperature related.
    Once on that path of thought, I found this article:
    http://worldtv.com/blog/guides_tutorials/fixing_an_overheating_mac_pro_no_expens e_required.php
    I installed both Temperature Monitor and SMCFanControl. And I experimented, and got interesting results:
    Now to the puzzling bit: SMCFanControl shows that the speed of the Power Supply Fan doesn't vary much, even if I use SMCFanControl to ramp fan speeds right up. All of the other fans react to SMCFanControl, going up to and above 2500rpm when commanded. But the Power Supply Fan does not.  Having watched it for a few days now, the Power Supply Fan, according to AFCFanControl, never varies outside of a range from about 600-640 rpm, regardless of what I do with AFCFanControl.
    Also (and not surprisingly), whenever the graphics-moderate apps run, when I ramp all the fan speeds up using SMCFanControl, Temperature Monitor shows that the all of the temperatures within the machine plummet, except in the power supply locations. Power Supply Location 2 is the worst affected. Because the Power Supply Fan does not react as the other fans do, the "crashes" still occur.
    I could post some screen shots of the read outs of SMCFanControl and Temperature Monitor, although I think I have covered the key points in this post.
    It seems that the Power Supply Fan is still working, but does not respond to increased loads.
    Instinctively, I'm worried that if that's right, it might be a hard problem to fix. Any suggestions? Help! I would really appreciate them!
    Cheers
    P

    Thanks for your response Grant. I had already read about, and I think excluded, dust in graphics card/fan/assembly as a cause. The entire inside of the computer, including the graphics card/fan/assembly, is as clean as a whistle. It looks clean. I've cleaned the dust out every now and then (including a few days ago). Also, my undersanding (derived from the article, linked in my first post) is that I might expect to see high temperatures in the Northbridge and memory module B if the graphics card was overheating. According to Temperature Monitor, however, locations do not increase in temperature when I run the relevant apps. Finally, the graphics card/assembly does not feel too hot to touch.
    It is strange that SMCFanControl lists the Power Supply Fan as being software controllable, if that fan is not. Still, your comments are consistent with my observations, as the fan simply does not respond to software control.
    There are two upsides: First, I've something of a work-around. I've worked out what temperature must be achieved in Power Supply Location 2 for a crash to occur, and I can watch that location in Temperature Monitor, terminating the process before that treshold is reached. Of course, that's not ideal. Second, ramping all the other fans up does significantly delay the onset of the problem, and makes recovery time much quicker.
    Is there any donwside to peridically ramping up the other fans when running the relevant apps? Given that it causes all of the other locations to cool significantly, could this lessesn the life expecancy of the mahcine? (I don't want to run the fans up all the time - that's like sitting next to a jet ready for take off!)
    Also, a correction to my first post: Yesterday, with all the other fans running on full and running an HD streaming video, the Power Supply Fan did, eventually, slowly, come up to ~740rpm, which is much higher than the ~640rpm maximum I had previously seen, and this may have aided delaying the onset of the problem. 
    I'm not sure where this leaves me? The problem might now be able managed. Well, sort-of. But it's not eliminated.

  • Mac Pro 2,1 Spontaneous Restart with No Boot - Power Supply PSU Problem?

    One day I was working away on my Mac Pro 2,1 Quad Core 3.0 (2007) with 8 gb ram running Lion and it just shut itself off like someone pulled the power cord (but no one did of course). Then it attempted to restart, but wouldn't boot. Basically I haven't been able to use it since as I can't get the computer to stay on for any length of time.
    I'm thinking its either the power supply or the, oh no, logic board.
    Symptoms have been like this so far:
    Initially I would get a chime and a boot start but then I would find the computer would shut itself off somewhere in the process and try to restart. Usually the next time I would get no chime and a horrible repeated clicking of my optical drive with a rythmic fan whirring up and down on the original ATI x1900 xt graphics card. I would have to manually power off with the power button to make it stop. Sometimes it would try to restart again anyway. The only way I could get a chime again was to unplug and wait (longer the better). But even if i got a chime and a start of a boot, invariably the computer would turn off again.
    I couldn't boot from another source, I couldn't run apple hardware test, I couldn't run diagnostic,... it just wouldn't stay on to do it.
    I hauled my mac pro (out of warranty) to the apple store genius bar and the problem presented itself, continuously. The gent was able to get fsck to work long enough to determine my hard drive was ok and said it was one of three things - the power supply, the graphics card, or the logic board. He said because the comp powered on and then shut off, and because there was intermittent chiming, he didn't think it was the power supply. He thought it was the graphics card and said I could leave my Mac for 10 days and they could take a looksy, or I could just install a new graphics card on my own.
    I chose the latter, bought a ATI Radeon 5770 from the apple online store for $275 and installed it.
    Problem persists.Exactly the same as before. Got initial chime, then next time no chime, optical drives clicking and graphics card fan whirring up and down rhythmically.
    I had a touch of time to disconnect everything and I get a chime consistently now when I have my boot drive, graphics card, 4 gb ram, and monitor attached. (As well as wireless mouse, keyboard, trackpad). I even got to logon once only to have a prompt shut off and restart attempt. also I verified it was at least one optical drive clicking (when I removed them both) during these boot attempts.
    The improvement in chiming seemed to be when I unseated one ram riser ( I have to with 2 x 2g ram modules each).
    I also checked the diagnostic leds on the logic board and all was as it should be... says I got trickle power and rail power etc.
    Is there anything else I can do to determine what's wrong? What do you guys think is wrong? Could it be bad RAM? Power Supply? Logic Board?
    All your help is massively appreciated in advance!

    Well I ran as many tests as I could with no definitive results to the point I would have to start buying replacement parts and testing that way. I opted to take it back to the apple store and they said it's (dun dun dun dunnnnn) the logic board.

  • IMac G5 won't start up - logic board or power supply?

    My oldest son killed my iMac G5. Apparently he'd taken to sneaking downstairs in the middle of the night and watching videos on YouTube. One night, during his viewing session, the iMac threw up a kernel panic and the fan came on. My son tried to turn off the iMac but couldn't find the switch. So *he went to bed and left the iMac with the fan on full-blast.* When I came downstairs to go to work, 6 hours later, I turned off the machine, waited for a minute or so, and then attempted to turn it on.
    The iMac is stone dead. Will not turn on.
    I'm deathly afraid the logic board is cooked. Those things are damned expensive. I held off on doing anything for a while, but then I was talking offhand with a Genius at a local Apple store. He said it might be as simple as a power supply. Which would be great - $125 is a lot cheaper than $800, and I could do this repair myself. But I don't want to sink $125 into the machine unless I have a pretty good idea that this will, in fact, fix it.
    Anyone else had this problem? Did it turn out to be the logic board, or the power supply, or something else entirely?

    First off, the kid is grounded - second, which model do you have? Have you tried resetting the SMU? Resetting the SMU can resolve some computer issues such as not starting up, not displaying video, sleep issues, fan noise issues, and so on. If your computer still exhibits these types of issues even after you've restarted the computer, try resetting the SMU. To reset the SMU on one of these iMacs:
    1. Turn off the computer by choosing Shut Down from the Apple menu, or by holding the power button until the computer turns off.
    2. Unplug all cables from the computer, including the power cord.
    3. Wait 10 seconds.
    4. Plug in the power cord while simultaneously pressing and holding the power button on the back of the computer.
    5. Let go of the power button.
    6. Press the power button once more to start up your iMac.
    Let us know if this helps,

Maybe you are looking for