Пример #1
0
        public void StopDataTransfer()
        {
            if (_communication == null)
            {
                _communication = new CommunicationSDK();
            }
            var state = _communication.StopCommunication();

            if (state.hasError)
            {
                Debug.Log(state.errorMessage);
            }
        }
Пример #2
0
        public void StartDataTransfer()
        {
            _communication = new CommunicationSDK();
            var state = _communication.StartCommunication();

            if (state.hasError)
            {
                Debug.Log(state.errorMessage);
            }
            else
            {
                IsDataTransferStarted = true;
            }
        }
Пример #3
0
        public override void Setup()
        {
            base.Setup();

            loginAccessLayer.LoginIXMWeb();
            ixmUtils.GoToTab(MainTabs.Devices);

            //ToDo selection of device for applying settings

            deviceListAccessLayer = new DeviceOperations_AL(dbInteraction.onlineDeviceInfo);
            ixmUtils.GoToDeviceConfigurations(DeviceConfigurationTabs.Communication);

            dtmfSettingsAccessLayer = new DTMFSettings_AL();
            dtmfSDK = new CommunicationSDK();
        }
Пример #4
0
        public override void Setup()
        {
            base.Setup();

            loginAccessLayer.LoginIXMWeb();
            ixmUtils.GoToTab(MainTabs.Devices);

            //ToDo selection of device for applying settings

            deviceListAccessLayer = new DeviceOperations_AL();
            ixmUtils.GoToDeviceConfigurations(DeviceConfigurationTabs.Communication);

            usbportSettingsAccessLayer = new USBAuxPortSettings_AL();
            usbportSDK = new CommunicationSDK();
        }