Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] BT656 8bit conversion to 10bit

Status
Not open for further replies.

Scrts

Member level 3
Member level 3
Joined
Mar 17, 2009
Messages
60
Helped
15
Reputation
30
Reaction score
15
Trophy points
1,288
Location
Kaunas, Lithuania
Activity points
1,604
Hello,
I need to create SDI(serial digital interface) output from BT656
signal, which is 8bit wide. The problem is, that SDI is 10bits wide, so I
need BT656 8bit conversion to 10bit. Conversion of EAV and SAV sequences are clear:
FF -> 3FF
00 -> 000
00 -> 000
But what about all the further data? Maybe I can leave only 8MSB bits and
leave 2LSB bits tied to 0? And ancillary data? No problems for that too?

Thanks
 

Solved:
assert LSB bits to MSB bits. E.g.:
Data[1] <= Data[9];
Data[0] <= Data[8];

Works fine.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top