代码搜索结果
找到约 10,000 项符合
Serial 的代码
serial-pxa.h
/*-------------------------------------------------------------------------
* Filename: serial.h
* Version: $Id: serial.h,v 1.5 2002/01/05 20:14:34 erikm Exp $
* Copyright: Copyright
serial-pxa.c
/*
* serial-pxa.c: Intel PXA serial port driver
*
* Copyright (c) 2003, Intel Corporation (yu.tang@intel.com)
*
* This program is free software; you can redistribute it and/or modify
* it under
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_connect.c
#include /* Standard input/output definitions */
#include /* String function definitions */
#include /* UNIX standard function definitions */
#include /
serial_connect.h
#ifndef __SERIAL_CONNECT__
#define __SERIAL_CONNECT__
#include "../../types/types.h"
#define BYTETIMEOUT 10 // tenths of seconds
#ifndef SUCCESS
#define SUCCESS 1
#endif
#ifndef FAILURE
#define FAI
serial_opt.bak
### 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.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0004 // Tools: 'ARM-ADS'
Group (Source Code)
Group (Start Code)
File 1,1,
File 1,1,