代码搜索结果

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

serial.rc2

// // SERIAL.RC2 - resources Microsoft Visual C++ does not edit directly // #ifdef APSTUDIO_INVOKED #error this file is not editable by Microsoft Visual C++ #endif //APSTUDIO_INVOKED ////

serial1.c

//串口中断服务程序,仅需做简单调用即可完成串口输入输出的处理 //出入均设有缓冲区,大小可任意设置。 //************************************************************************* #include "TestSerial.h" #define BAUDRATE1 115200 // 用户定义的UART1 波特

serial1.h

void OpenComm1(void); void SendCommChar1(char ch); void SendCommAddress1(char ch); void SendCommBuffer1(unsigned char *base, unsigned char size); void SendCommString1(unsigned char *base); bit Ge

serial1.lst

C51 COMPILER V7.02a SERIAL1 06/21/2006 11:20:15 PAGE 1 C51 COMPILER V7.02a, COMPILATION OF MODULE SERIAL1 OBJECT MODULE PLACED I

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_port.h

// Copyright (c) 1996 Federal Highway Administration // // This software has been developed for the Federal Highway Administration // by Viggen Corporation under contract with Oak Ridge Nationa

serial_port.cpp

// Copyright (c) 1996 Federal Highway Administration // // This software has been developed for the Federal Highway Administration // by Viggen Corporation under contract with Oak Ridge Nationa