Example #1
0
 public override void Stop()
 {
     if (m_thread != null)
     {
         m_thread.Close();
         m_thread = null;
     }
 }
Example #2
0
        public override void Start()
        {
            //LidarEmulatorSettings settings;

            m_thread = new LidarEmulatorThread();

            //settings = ModuleSettings.GetSettings<LidarEmulatorSettings>();
            //m_thread.Configure(settings);
            m_thread.Open();
        }