随笔分类 - FPGA
摘要:六大功能:计算 显示 语音识别 语音播报 测距 出货及检测 有很多其实不需要作为输出 只是便于调试 此版本为语音选择版本 部分代码在之前有贴过 板子是de1soc 外设有 舵机 语音识别模块 语音播报模块 红外检测 超声测距
阅读全文
摘要:module helloworld(clock,en,char0[0:6],char1[0:6],char2[0:6],char3[0:6],char4[0:6],char5[0:6]); input clock; input en; output reg [0:6]char0; output re
阅读全文
摘要:module dj(clock,good0,good1,good2,good3,good4,en_duoji,money,pwm_out0,pwm_out1,pwm_out2,pwm_out3,pwm_out4); input clock; input money; input en_duoji;
阅读全文
摘要:module distance(clock, clr_n,trig,echo,out_dis); input clock,clr_n;//时钟信号 复位信号 input echo;//测距模块 output reg trig;//测距模块 output reg out_dis;//输出 此处用于控制
阅读全文
摘要:module hope(clock,clr_n,Sound_in,Sound_o); input clock; input clr_n; input [2:0]Sound_in; output reg[4:0] Sound_o; reg en_1; reg[27:0]counter; reg[2:0
阅读全文