public SearchDevicesUSB(string Port, RoutinesLibrary.IO.SerialPortConfig SerialPortConfig = default(RoutinesLibrary.IO.SerialPortConfig), bool bStartHandshake = false)
        {
            PortSearch     = Port;
            PortConfig     = SerialPortConfig;
            StartHandshake = bStartHandshake;

            Initialize();
        }
Example #2
0
 internal void StartSearch(string Port, RoutinesLibrary.IO.SerialPortConfig SerialPortConfig, bool bStartHandshake = false)
 {
     m_PortSearch            = Port;
     m_PortConfig            = SerialPortConfig;
     m_StartHandshake        = bStartHandshake;
     m_StatusConnect         = StatusConnect.WaitSearch;
     m_Timer_Search.Interval = MS_WAIT_SEARCH;
     m_Timer_Search.Enabled  = true;
 }