代码搜索结果

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

dds_serial.h

#ifndef __DDS_SERIAL_H__ #define __DDS_SERIAL_H__ // write your header here #endif

dds_serial.set

[General] Version=1.0 Config=0 ReleaseIntermediate=.\Release ReleaseOutput=.\Release DebudIntermediate=.\Debug DebugOutput=.\Debug BodyName=SPCE060A_061A [SetLink] ExeFile=1 Output=.\Debug

serial_ctrl.c

#include"spce061a.h" #define W_CLK 0x0001 #define FQ_UD 0x0002 #define RESET 0x0004 #define serial_in 0x0008 #define A 0 //A与B口转换(0为A口) unsigned long int ctrl_word;//32位控制字 unsigned int

dds_serial.lik

Version: 3.0 Options: m37 Obj: "C:\PROGRA~1\Sunplus\UNSPID~1.0\startupD.obj" Obj: "C:\Documents and Settings\大家\My Documents\dds_serial\Debug\Resource.obj" Obj: "C:\Documents and Settings\大家\My Do

serial_opt.bak

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.a*; *.src) oExt (*.obj) lExt (*.lib) tExt (*.txt) pExt (*.plm) CppX (*.cpp) DaveTm { 0,0,0,0,0,0,0,0 }

serial.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,1, 0x0 Options 1,0,0 // Targ

serial.m51

BL51 BANKED LINKER/LOCATER V5.12 05/28/2008 16:43:08 PAGE 1 BL51 BANKED LINKER/LOCATER V5.12, INVOKED BY: C:\KEIL\C51\BIN\BL51.EXE Text1.

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