提交 9f6fad19 编写于 作者: 丁劲犇's avatar 丁劲犇 😸

Update comment

上级 54988367
......@@ -26,8 +26,8 @@ https://blog.csdn.net/goldenhawking/category_10770596.html
- 以太网数据捕获
- 变长比特封包
- 1/2系统卷积码编码
- BPSK/QPSK调制
- BPSK/QPSK解调
- 数据流同步
- 纠错解码
- 以太网数据发送
- BPSK/QPSK/8PSK调制
- BPSK/QPSK/8PSK解调
- 连续数据流同步
- 连续数据流纠错
- 以太网数据吞吐
......@@ -180,7 +180,7 @@ void demod_bpsk(const short (*iqdata)[2], const int splen)
phy = atan_r(rp[1],rp[0]);
++bad_angle;
}
//qDebug()<<phy;
//调整比例以调整跟踪的步进。
curr_dp += phy/2;
while (curr_dp>2*c_pi)
curr_dp -= 2*c_pi;
......@@ -335,7 +335,7 @@ void demod_qpsk(const short (*iqdata)[2], const int splen)
phy = phy1;
else
phy = phy2;
//调整比例以调整跟踪的步进。
curr_dp += phy/2;
while (curr_dp>2*c_pi)
curr_dp -= 2*c_pi;
......@@ -536,7 +536,7 @@ void demod_8psk(const short (*iqdata)[2], const int splen)
phy = phy3;
if (fabs(phy4) < fabs(phy))
phy = phy4;
//调整比例以调整跟踪的步进。
curr_dp += phy/2;
while (curr_dp>2*c_pi)
curr_dp -= 2*c_pi;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册