Ejemplo n.º 1
0
        public void RestoreTable(IWin32Window owner)
        {
            if (CapturedTable == null)
            {
                return;
            }
            CapturedTable.SetRawBuffer(rawBuffer);
            CapturedTable.FirstInit();
            CapturedTable.FillValues();

            using (var progress = ProgressForm.ShowProgress(owner))
            {
                onlineManager.FirmwareManager.WriteRam(captureAddress, table.Address, rawBuffer);
                onlineManager.OltProtocol.StartCapture(exInfo.CaptureRamId);
                progress.Close();
            }
        }