138
Chapter 8
Analyzing Digital Sources and Cables
#endif //
!defined(AFX_LFSR_H__5947F6F9_1DBE_4E6E_9AFB_77D5D8857A10__INCLUDED_)
lfsl.cpp
The following source code is provided for the tfsl.cpp file.
// Implementation of the CLFSR class
#include “LFSR.h”
#include <stdio.h>
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
// enable this to light up pixels 1,2,3 as red,green,blue
// in horizontal order
// Pixel 1 represents the top left corner of the screen
// when this is enabled, all other pixels are black
//#define RGB_TEST
// Construction/Destruction
unsigned long pixelvalue;
CLFSR::CLFSR()
{
}
CLFSR::~CLFSR()
{
}
void CLFSR::Reset()
{
state=0;
seed=0x08000001;
}
// Pixel 1 should be 0x000000
// Pixel 2 should be 0x00 (7-bits) , Opcode(10-bits), SeedHigh(7 bits)
// Pixel 3 should be SeedLow (24 bits)
// All other pixels are then set based on the results of the LFSR
calculations.
// The 10-bit Opcode is custom per Quantum Data’s request and it will be
set to ‘00,0000,0111’.
unsigned long CLFSR::GetPixel()
{
unsigned long temp;
Содержание 802BT
Страница 1: ...802BT 802R Video Test Generator User Guide ...
Страница 52: ...42 Chapter 2 Testing Video Displays ...
Страница 62: ...52 Chapter 3 Administrative Tasks ...
Страница 87: ...802BT 802R Video Test Generator User Guide 77 IMGE end an editing session IMGA MyImage save image as MyImage ...
Страница 118: ...108 Chapter 7 Using GPIB Interface ...
Страница 194: ...184 Chapter 10 Testing EDID ...
Страница 204: ...194 Chapter 11 Testing HDCP ...
Страница 213: ...Video Test Generator User Guide 203 A Command Reference Topics in this appendix Commands by name ...
Страница 214: ...204 Appendix A Command Reference Commands by name ...
Страница 303: ...Video Test Generator User Guide 293 Example 7 Turn audio off DPTG 3 DPGU Example 8 Turn audio on DPTG 7 DPGU ...
Страница 595: ...Video Test Generator User Guide 585 ...
Страница 608: ...598 Appendix A Command Reference Related commands YMDO UNPK PKUP VTOF FLSH Example YMDI YMODEM BATCH upload ...
Страница 611: ...Video Test Generator User Guide 601 ...
Страница 612: ...602 Appendix A Command Reference ...
Страница 613: ...802BT 802R Video Test Generator User Guide 603 B Image Reference Topics in this appendix Standard image descriptions ...
Страница 716: ...706 Appendix B Image Reference ...
Страница 744: ...734 Appendix C Error Messages ...