代码搜索结果

找到约 10,000 项符合 Serial 的代码

serial_reg.h

/* * linux/include/asm-arm/arch-anakin/serial_reg.h * * Copyright (C) 2001 Aleph One Ltd. for Acunia N.V. * * This program is free software; you can redistribute it and/or modify * it under th

serial_amba.h

/* * linux/include/asm-arm/hardware/serial_amba.h * * Internal header file for AMBA serial ports * * Copyright (C) ARM Limited * Copyright (C) 2000 Deep Blue Solutions Ltd. * * This progra

serial_read.c

#include #include #include "strLib.h" #include #include #include #include #include #include #include

serial-2410.c

/***************************************************************************\ Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved. by threewter 2004.4.26 \************************

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-2410.c

/***************************************************************************\ Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved. by threewter 2004.4.26 \************************

serial-2410.c

/***************************************************************************\ Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved. by threewter 2004.4.26 \************************

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