Ejemplo n.º 1
0
        public void SetSRZ(COM_SRZ_Communication _SrzCom)
        {
            m_SRZ_Comm = _SrzCom;
            if (m_SRZ_Comm == null)
            {
                return;
            }

            m_SRZ_IoList = m_SRZ_Comm.SRZ_IO_List;
            if (m_SRZ_IoList == null)
            {
                return;
            }

            Init_List();
            _ThreadRefreshIO = new Thread(new ThreadStart(RefreshIO));
            _ThreadRefreshIO.IsBackground = true;
            _ThreadRefreshIO.Start();
        }