代码搜索结果
找到约 10,000 项符合
Serial 的代码
my_serial.c
/********************************************************************************
* Copyright (C), 2000-2005, HYT Tech. Co., Ltd.
*
*FileName: my_serial.c
*
*Author: Wang Zhaohui
serial_yuanlin.c
/***************************************************
公司: 好易通科技有限公司
产品名: 数字对讲机
CPU: OMAP5910
串口: 模式1, 8位数据, 无校验位, 波特率9600
中断发送和接收, 无帧校验, 1位停止位
作者: 袁林
编写时间: 20
serial2.v
module serial2(q,a,clk);
output q,a;
input clk;
reg q,a;
always @(posedge clk)
begin
a=~q;
q=~q;
end
endmodule
serial1.v
module serial1(q,a,clk);
output q,a;
input clk;
reg q,a;
always @(posedge clk)
begin
q=~q;
a=~q;
end
endmodule
serial_pal.v
module serial_pal(clk,reset,en,in,out);
input clk,reset,en,in;
output[3:0] out;
reg[3:0] out;
always @(posedge clk)
begin
if(reset) out
serial2.v
module serial2(q,a,clk);
output q,a;
input clk;
reg q,a;
always @(posedge clk)
begin
a=~q;
q=~q;
end
endmodule
serial1.v
module serial1(q,a,clk);
output q,a;
input clk;
reg q,a;
always @(posedge clk)
begin
q=~q;
a=~q;
end
endmodule