| 1 |
/** @file |
/** @file |
| 2 |
* $Author: Maurizio Nagni $ |
* $Author: kusanagi $ |
| 3 |
* $Date: 2005/08/29 09:45:48 $ |
* $Date: 2006/02/07 17:11:09 $ |
| 4 |
* $Revision: 5.0 $ |
* $Revision: 6.0 $ |
| 5 |
* |
* |
| 6 |
* Implementation of the CalibTrailerReader class. |
* Implementation of the CalibTrailerReader class. |
| 7 |
*/ |
*/ |
| 53 |
readCRC = (((UINT16)(subData[dataLength - 2]<<8))&0xFF00) + (((UINT16)subData[dataLength - 1])&0x00FF); |
readCRC = (((UINT16)(subData[dataLength - 2]<<8))&0xFF00) + (((UINT16)subData[dataLength - 1])&0x00FF); |
| 54 |
|
|
| 55 |
if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for CalibTrailer Packet "); |
if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for CalibTrailer Packet "); |
| 56 |
|
calibTrailer->calibTrailerData = new TArrayC(length, subData); |
| 57 |
} |
} |
| 58 |
|
|