moerjielovecookie

Sawen_Blog

一个普通工科牲的博客网站
x
github
follow
email

8-bit data to 1-bit bitwise output circuit simulation

In the DVB-S system, the TS stream becomes uint8 type data after RS encoding. During the subsequent QPSK constellation mapping, a binary bitstream is required. Therefore, after RS encoding, the 8-bit data needs to be converted into 1-bit serial output.

Implementation Idea#

First, use the BitwiseOperator module for bitwise AND operations to extract the 8-bit binary data. Then, use a counter to generate a counting signal from 0 to 7 as the enable signal for the mux module, outputting the extracted 8-bit data over 8 clock cycles.

Structural Block Diagram#

1713153777444.png

Simulation Results#

1713153816902.png

The input data is 133, which is binary 10000101. It can be seen that the output result meets the requirements.

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.