Esempio n. 1
0
        public bool SetBootMode(string aMode)
        {
            iConsole.Write("Setting boot mode .................. ");

            ServiceVolkano volkano = new ServiceVolkano(iDevice);

            ServiceVolkano.AsyncActionSetBootMode async = volkano.CreateAsyncActionSetBootMode();

            async.EventResponse += SetBootModeResponse;

            iIsBootModeSet.Reset();

            async.SetBootModeBegin(aMode);

            return(WaitFor(iIsBootModeSet, kMaxSetBootModeSeconds));
        }