/// <summary> /// TCLightTimestamp constructor /// </summary> /// <param name="RcvTime">A TPCANTimestamp structure defined in the PCAN_USB Class</param> public TCLightTimestamp(PCAN_USB.TPCANTimestamp RcvTime) { millis = RcvTime.millis; millis_overflow = RcvTime.millis_overflow; micros = RcvTime.micros; }
/// <summary> /// TCLightMsg constructor /// </summary> /// <param name="Msg">A TCANMsg structure defined in the PCAN_USB Class</param> public TCLightMsg(PCAN_USB.TPCANMsg Msg) { ID = Msg.ID; MsgType = (MsgTypes)Msg.MSGTYPE; Len = Msg.LEN; Data = Msg.DATA; }