摘要: 1 CC?=gcc 2 CFLAGS?=-O2 -g -Wall 3 LDLIBS+= -lpthread -lm -lsdrplay_api 4 5 all: play_sdr 6 7 %.o: %.c 8 $(CC) $(CFLAGS) -c $< 9 10 play_sdr: play_sdr 阅读全文
posted @ 2021-10-24 22:38 BH5HSV 阅读(471) 评论(0) 推荐(0) 编辑
摘要: # OpenOCD MicroZus interface ftdi ftdi_vid_pid 0x0403 0x6014 ftdi_layout_init 0x2088 0x3f8b transport select jtag reset_config srst_only srst_push_pul 阅读全文
posted @ 2021-08-14 21:43 BH5HSV 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 1 #include "verilated_vcd_c.h" 2 #include "Vtop.h" 3 4 vluint64_t main_time = 0; 5 6 double sc_time_stamp() 7 { 8 return main_time; 9 } 10 11 int main 阅读全文
posted @ 2021-07-11 23:49 BH5HSV 阅读(2196) 评论(0) 推荐(1) 编辑
摘要: 1 #include <iostream> 2 #include <sstream> 3 #include "systemc.h" 4 5 #define WIDTH 8 6 #define VEC_NUM 4 7 #define VEC_WIDTH 4 8 9 SC_MODULE(vector_m 阅读全文
posted @ 2021-04-11 13:57 BH5HSV 阅读(482) 评论(0) 推荐(1) 编辑
摘要: 首先安装构建环境(我用的系统是LinuxMint): 安装scala: sudo apt install scala; chisel是scala语言编写的库,而scala语言编译出来的字节码运行于JVM;所以会一并安装java运行时环境。 安装sbt: sudo apt install sbt; 安 阅读全文
posted @ 2021-01-24 12:13 BH5HSV 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include "platform.h" 3 #include "xil_types.h" 4 #include "xscugic.h" 5 #include "xscutimer.h" 6 #include "xscuwdt.h" 7 #includ 阅读全文
posted @ 2021-01-02 23:31 BH5HSV 阅读(190) 评论(0) 推荐(0) 编辑
摘要: SystemVerilog测试代码: 1 `timescale 1ns / 1ns 2 module dpi_test; 3 4 real a; 5 real s; 6 string str; 7 8 import "DPI-C" function real c_sin(real x); 9 10 阅读全文
posted @ 2020-08-21 22:01 BH5HSV 阅读(1216) 评论(0) 推荐(0) 编辑
摘要: %% Parameters Tm=5;% Length of signal (s) Fd=512;% Sampling frequency (Hz) Ak=0.5;% Constant component (Unit) A1=1;% The amplitude of the first sinuso 阅读全文
posted @ 2020-08-02 17:45 BH5HSV 阅读(579) 评论(0) 推荐(0) 编辑
摘要: 1 # 2 # Vivado Non-Project Flow 3 # 4 set DESIGN [lindex $argv 0] 5 6 # 7 config_webtalk -user off 8 9 # 10 create_project -in_memory 11 12 # 13 proc 阅读全文
posted @ 2019-12-15 17:21 BH5HSV 阅读(595) 评论(0) 推荐(0) 编辑
摘要: 电路spice仿真工具已经比较成熟,开源的免费工具也有不错的性能。使用ngspice可以得到不错的仿真结果。 在Linux系统上,例如写一个RLC谐振的电路: RLCV1 1 0 AC 1V L 1 2 0.2 IC=0R 3 0 500 C 2 3 0.1U IC=0.AC DEC 501 100 阅读全文
posted @ 2019-11-24 20:40 BH5HSV 阅读(2927) 评论(1) 推荐(0) 编辑