代码搜索结果
找到约 10,000 项符合
Serial 的代码
serial.m51
BL51 BANKED LINKER/LOCATER V5.12 03/19/2008 11:03:29 PAGE 1
BL51 BANKED LINKER/LOCATER V5.12, INVOKED BY:
C:\KEIL\C51\BIN\BL51.EXE STARTU
serial0.c
/*
*********************************************************************************************************
* UART0 SERIAL OPERATION
*******************
serial0.h
#include
int putchar (int const ch);
int getchar (void);
void init_serial_0 (unsigned long);
void printf_0(char txt[]);
void UART0_ISR(void);
void init_int_serial_0 (void);
matlab_serial.txt
SERIAL Construct serial port object.
S = SERIAL('PORT') constructs a serial port object associated with
port, PORT. If PORT does not exist or is in use you will not be able
to
sharc_serial.txt
As a certified Newbie, I've had a tough time getting the Sharc EZ-Lite kit to communicate
with a PC via the asynchronous serial port so a PC program can poke and peek at variables
on the Sharc and
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_crc.txt
Serial CRC
Below code is 16-bit CRC-CCITT implementation, with following features
* Width = 16 bits
* Truncated polynomial = 0x1021
* Initial value = 0xFFFF
serial_kuozhan_a.asm
;//***************************************************
;//实现功能:实现单片机模拟IIC总线对24cxx的读写
;//目标板 :51开发板
;//***************************************************
sda equ P1.1;定义P1.1为IIC总线上的sda(数据线)