自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(30)
  • 资源 (7)
  • 收藏
  • 关注

原创 c++二维数组之函数

利用new关键字生成动态二维数组并传递给函数#include<iostream>using namespace std;int sum_apple(int **arr, int Size, int n);int sum_apple1(const int(*arr)[4], int Size);void show(int **arr, int Size, int n);int main(){ const int apple[3][4] = { {1, 2, 3, 4},

2022-04-26 19:25:51 1092

原创 组合逻辑竞争冒险

组合逻辑竞争冒险,时序逻辑亚稳态【0型冒险和1型冒险及其消除方法】

2021-07-15 19:38:38 190

转载 FPGA时序分析之关键路径(Critical Path)【华为静态时序分析资料】【笔试面试】

FPGA时序分析之关键路径(Critical Path)【华为静态时序分析资料】【笔试面试】

2021-07-11 16:44:57 849

转载 DFT(Design for Test)可测性设计

DFT(Design for Test)可测性设计【FPGA探索者】

2021-07-11 16:19:04 970

原创 FPGA之亚稳态

FPGA中亚稳态

2021-07-06 21:24:56 69

原创 异步FIFO

理论参考:异步FIFO—Verilog实现异步FIFO——结构、Verilog代码实现与仿真引用红色闪电007的评论:异步FIFO使用格雷码的唯一目的就是"即使在亚稳态进行读写指针抽样也能进行正确的空满状态判断"。 在异步的FIFO中,采用格雷码进行计数,相邻的数据仅仅只有1bit变化,这样在两个时钟域同步的时候仅仅可能只有1bit产生亚稳态,通过同步以后,亚稳态可以消除,最坏的情况是这1bit采错,但是即使是采错地址也只是相差1个,这对判断空满标志不会产生影响。 如果是采用10十进制进行编码,则相

2021-07-06 11:59:05 760

原创 同步FIFO

理论:参考《正点原子逻辑设计指南》module s_fifo( input clk, input rst, input wr_en, input rd_en, input [7:0] data_in, output reg [7:0] data_out, output reg empty,

2021-07-04 17:28:28 99

原创 Verilog有符号数运算,四舍五入,饱和截位

参考文章【设计经验】5、Verilog对数据进行四舍五入(round)与饱和(saturation)截位当前还有存疑,请大家指正题目:请用Verilog实现算法 Q = K * (D - 16),其中输入数据D和输出数据D和输出数据Q都是无符号8位整数(无符号,8位整数,0位小数),输入参数K的数值为13Q10(共13位,1位符号位,10位小数位),中间过程保留完整精度,最后四舍五入。答案11.先按照参考文章得到有符号整数输出,然后变到无符号输出assign Q = Q1 + 128;转成无符

2021-07-03 19:06:16 3196 1

原创 跨时钟域设计

参考文章杰之行-CDC:跨时钟域处理李锐博恩-谈谈跨时钟域传输问题(CDC)目前理解水平,记录一下,有问题还请指教文章目录1 单比特信号的跨时钟域处理1.1 慢时钟域到快时钟域1.1.1 两级触发器同步1.1.2 边沿检测同步器1.1.2.1 信号上升沿检测1.1.2.2 信号下降沿检测1.1.2.3 信号双沿检测1.1.3 握手处理1.2 快时钟域到慢时钟域1.2.1 电平拓展1.2.2 脉冲同步器1.2.3 握手处理2 多比特信号的跨时钟域处理2.1 两级触发器2.2 格需码编码2.3 异步FI

2021-06-23 11:12:57 276

原创 联发科序列检测题 110序列选择器

Mealy型module sqe_de_MTK_2018( input clk, input rst_n, input in, output out ); parameter st0 = 2'b00; parameter st1 = 2'b01; parameter st2 = 2'b10; reg [1:0] state = st0,next_state; reg out.

2021-06-21 21:41:33 327

原创 联发科20年序列检测题

题目没有说序列重叠检测与否,只考虑重叠检测module seq_de( input clk, input reset, input x, output z1, output z2 ); parameter s0 = 3'd0, s1 = 3'd1, s2 = 3'd2, s3 = 3'd3, s4 = 3'd4, s5 = 3'd5, s6 = 3'd6; reg [2:0] state = 3'd0,next_state; .

2021-06-21 20:34:44 98

原创 状态图 有限状态机

6-146-15z1z2目前总结的规律1. s0状态与检测序列的第一位相反2. 检测序列重叠还是不重叠不同在于最后一个状态的变化

2021-06-21 15:57:16 1281

原创 Q8:Design a Mealy FSM(Exams/ece241 2013 q8)

题目Implement a Mealy-type finite state machine that recognizes the sequence “101” on an input signal named x. Your FSM should have an output signal, z, that is asserted to logic-1 when the “101” sequence is detected. Your FSM should also have an active-low

2021-06-21 15:00:23 341

原创 Fsm hdlc HDLbits

题目Synchronous HDLC framing involves decoding a continuous bit stream of data to look for bit patterns that indicate the beginning and end of frames (packets). Seeing exactly 6 consecutive 1s (i.e., 01111110) is a “flag” that indicate frame boundaries. To

2021-06-21 14:10:38 401

原创 atom运行python文件及输出中文乱码解决(设置环境变量)

atom运行.py文件安装python 参考scdn菜逼的文章,注意添加环境变量安装atom,下载atom-runner,参考[Anniesama的文章],(https://blog.csdn.net/qq_20169819/article/details/79144455)创建一个.py格式的文件,输入简单的python代码,Alt+r运行代码若需要numpy等库,安装参考NumPy 安装 | 菜鸟教程中结合cmd使用 pip 安装之镜像安装pip安装我之前安装好了,只是记录一下运行结

2021-06-20 10:36:00 262

原创 Lemmings2 HDLbits

题目:module top_module( input clk, input areset, // Freshly brainwashed Lemmings walk left. input bump_left, input bump_right, input ground, output walk_left, output walk_right, output aaah ); parameter LEFT = 0, RI

2021-06-19 20:26:24 150

原创 Lemmings1 HDLbits

题目:The game Lemmings involves critters with fairly simple brains. So simple that we are going to model it using a finite state machine.In the Lemmings’ 2D world, Lemmings can be in one of two states: walking left or walking right. It will switch directio

2021-06-18 16:53:54 103

原创 Fsm3onehot HDLbits 独热编码

题目:The following is the state transition table for a Moore state machine with one input, one output, and four states. Use the following one-hot state encoding: A=4’b0001, B=4’b0010, C=4’b0100, D=4’b1000.Derive state transition and output logic equations

2021-06-18 14:02:50 429

原创 Fsm1 HDLbits

题目:This is a Moore state machine with two states, one input, and one output. Implement this state machine. Notice that the reset state is B.This exercise is the same as fsm1s, but using asynchronous reset.module top_module( input clk, input are

2021-06-18 13:59:17 313

原创 Countbcd HDLbits

题目:Build a 4-digit BCD (binary-coded decimal) counter. Each decimal digit is encoded using 4 bits: q[3:0] is the ones digit, q[7:4] is the tens digit, etc. For digits [3:1], also output an enable signal indicating when each of the upper three digits shoul

2021-06-17 14:33:12 407

原创 Count10 计数器

题目:module top_module ( input clk, input reset, // Synchronous active-high reset output reg [3:0] q); always@(posedge clk) begin if(reset) q <= 0; else begin if (q == 9)

2021-06-14 17:40:24 1131

原创 Edgecapture的收获

题目:For each bit in a 32-bit vector, capture when the input signal changes from 1 in one clock cycle to 0 the next. “Capture” means that the output will remain 1 until the register is reset (synchronous reset).Each output bit behaves like a SR flip-flop:

2021-06-14 17:21:37 372

原创 HDLbits Popcount3的一点疑问

题目:A “population count” circuit counts the number of '1’s in an input vector. Build a population count circuit for a 3-bit input vector.module top_module( input [2:0] in, output [1:0] out ); reg [1:0] out1; integer i; always@(*)

2021-06-13 11:22:07 927 4

原创 Mux256to1v HDLbits

新手刷题记录,方便自己学习,请大佬们多多指教题目:Create a 4-bit wide, 256-to-1 multiplexer. The 256 4-bit inputs are all packed into a single 1024-bit input vector. sel=0 should select bits in[3:0], sel=1 selects bits in[7:4], sel=2 selects bits in[11:8], etc.module top_module

2021-06-07 10:31:10 438

原创 conv matlab代码

n1 = length(Bhq) + length(Xi) - 1;%Bhq 1 out = zeros(1,n1); for k = 1:n1 for j = max(1,k-length(Xi)):min(k,length(Bhq)) if k-j+1 > length(Xi) continue; else out(k) = out(k) + Bhq(j)

2021-05-02 07:13:10 700

原创 python第一次使用

按照笨办法学python里的方法1安装python,把python添加到系统路径(安装时没有勾选“add python to path”的话,可以手动添加)2 新建python文件,在powershell中用cd 指向该文件的位置,然后输入python **.py即可1安装python,把python添加到系统路径(安装时没有勾选“add python to path”的话,可以手动添加)2 新建python文件,在powershell中用cd 指向该文件的位置,然后输入python **.py即可

2021-05-02 07:04:39 258

原创 [labtools 27-2269]no devices detected on target localhost问题解决

小白刚学FPGA,以流水灯为例入门,在连接板子的时候遇到了这个问题,记录一下。板子型号:xc7z045ffg900-2解决办法之一按照table 1-11更改图1-3里34位置处拨码。

2021-01-05 17:38:44 13956 1

原创 802.11中最初想要传输的数据都经历了什么

802.11基本规范涵盖了802.11MAC以及PHY,MAC是一组用以决定如何访问媒介与传送数据的规则,至于传送与接收细节则交由PHY负责。802.11将PHY进一步划分为两个一般组件:一个是物理层会聚过程(Physical Layer Convergence Procedure,简称PLCP),负责将MAC帧映射到传输媒介;另一个是物理媒体相关(Physical Medium Dependent,简称PMD),负责传送这些帧。一般802.11MAC帧,其中,数据帧即为MAC层服务数据单元(MSD

2020-07-31 11:55:50 157

原创 求802.11g/n/ac协议中文版

有大佬有802.11g/n/ac协议中文版吗?交流一下

2020-07-10 18:47:42 322

原创 GFRA无授权随机接入本周总结

GFRA介绍GFRA(Grant-free random access)无授权随机接入技术新的改变我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:全新的界面设计 ,将会带来全新的写作体验;在创作中心设置你喜爱的代码高亮样式,Markdown 将代码片显示选择的高亮样式 进行展示;增加了 图片拖拽 功能,你可以将本地的图片直接拖拽到编辑区域直接展示;全新的 KaTeX数学公式 语法;增加了支持甘特图

2020-06-12 15:17:24 2437 3

80211-2016.pdf

本修订版规定了对无线局域网(wlan)的IEEE Std 802.11的技术更正和澄清,以及对现有介质ac-es-sc on tr-ol(MAC)和物理层(PHY)功能的增强。2012年和2013年发布的第1至5号修正案也已纳入本修订案。

2020-07-10

80211-2007.pdf

本修订版规定了对无线局域网(wlan)的IEEE标准802.11的技术修正和澄清,以及对现有媒体访问控制(MAC)和物理层(PHY)功能的增强。它还包括修正案1至8,包括勘误表。

2020-07-10

GSM-master.zip

Understand and implement the simplified GSM block diagram.

2019-09-11

802.11a.rar

这里包含了802.11a协议及其用MATLAB实现的程序,可以与MIMO-OFDM及多载波无线通信这两本书一起参考学习

2019-08-22

MIMO-OFDM无线通信技术及MATLAB实现SourceCode .rar

本代码是MIMO-OFDM无线通信技术及MATLAB实现的源代码

2019-08-22

MIMO-OFDM无线通信技术及MATLAB实现.rar

本书介绍了从SISO到MIMO的各种信道,然后介绍了OFDM,包括信道估计、同步等

2019-08-22

软件无线电仿真程序.rar

本程序中包含了基本调制解调程序,还介绍了OFDM程序,保护间隔、信道估计都有介绍

2019-08-22

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除