代码搜索结果
找到约 10,000 项符合
Serial 的代码
xwj_serial.h
//---------------- xwj_Serial.c //---------------串口相关
//串口函数集,仅需做简单调用即可完成串口输入输出的处理,出入均设有缓冲区,大小可任意设置
void serial_init ();
unsigned char getbyte(void); //从接收缓冲区取一个byte,如不想等待则在调用前检测inbufsign是否为1。
serial_unit.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use std.textio.all;
entity serial_driver is
generic (filename : string := "testing.txt");
port(
TX : out std_l
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
serial.ls1
A51 MACRO ASSEMBLER SERIAL 03/06/2007 22:52:17 PAGE 1
MACRO ASSEMBLER A51 V7.10
OBJECT MODULE PLACED IN .\DeBug\serial.OBJ
ASS
tiny_serial.c
/*
* Tiny Serial driver
*
* Copyright (C) 2002-2004 Greg Kroah-Hartman (greg@kroah.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU G
serial to parallel.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
serial to parallel.lnp
"Serial to Parallel.obj"
TO "Serial to Parallel"