Ejemplo n.º 1
0
            new CANMessage();                       ///< incoming message

        //-------------------------------------------------------------------------

        /**
         *  Default constructor.
         */
        public LPCCANDevice_T7()
        {
            // create adapter
            this.combi = new caCombiAdapter();
            Debug.Assert(this.combi != null);

            // create reader thread
            this.read_thread = new Thread(this.read_messages);
            Debug.Assert(read_thread != null);
        }
Ejemplo n.º 2
0
        private bool term_requested = false; ///< thread termination flag

        #endregion Fields

        #region Constructors

        //-------------------------------------------------------------------------
        /**
        Default constructor.
        */
        public LPCCANDevice_T5()
        {
            // create adapter
            this.combi = new caCombiAdapter();
            Debug.Assert(this.combi != null);

            // create reader thread
            this.read_thread = new Thread(this.read_messages);
            Debug.Assert(read_thread != null);
        }
Ejemplo n.º 3
0
        private bool term_requested = false; ///< thread termination flag

        #endregion Fields

        #region Constructors

        //---------------------------------------------------------------------------------------------
        /**
        Default constructor.
        */
        public LPCCANDevice()
        {
            // create adapter
            this.combi = new caCombiAdapter();
            Debug.Assert(this.combi != null);
        }
Ejemplo n.º 4
0
        //-------------------------------------------------------------------------

        /**
         *  Constructor.
         *
         *  @param      _combi      adapter object
         */
        public T7CombiFlasher(caCombiAdapter _combi)
        {
            Debug.Assert(_combi != null);
            this.combi = _combi;
        }
Ejemplo n.º 5
0
        private caCombiAdapter combi; ///< adapter object

        #endregion Fields

        #region Constructors

        //-------------------------------------------------------------------------
        /**
        Constructor.

        @param      _combi      adapter object
        */
        public T7CombiFlasher(caCombiAdapter _combi)
        {
            Debug.Assert(_combi != null);
            this.combi = _combi;
        }
Ejemplo n.º 6
0
        //---------------------------------------------------------------------------------------------

        /**
         *  Default constructor.
         */
        public LPCCANDevice()
        {
            // create adapter
            combi = new caCombiAdapter();
            Debug.Assert(combi != null);
        }