代码搜索:UART
找到约 10,000 项符合「UART」的源代码
代码结果 10,000
www.eeworm.com/read/297054/8057352
h uart.h
#ifndef _UART_H
#define _UART_H
#define HiBIT(x) (x)/256
#define LowBIT(x) (x)%256
#define BAUD 4800
#define F_CPU 1000000
#define sei() SREG|=(1
www.eeworm.com/read/297054/8057357
c uart.c
#include
#include
#include
#include "self_def.h"
#include "head.h"
#define TxBuf_Size 32
#define RxBuf_Size 64
#define TxBuf_Mask (TxBuf_Size-1)
#define
www.eeworm.com/read/297054/8057386
o uart.o
www.eeworm.com/read/297029/8059627
h uart.h
//UART.H代码
#include "REG51.h"
#define BAUD_RATE 2400
#define RELOAD(TIMER,SVALUE) TIMER+=SVALUE+1
sbit tTXD=P3^7;
sbit rRXD=P3^2;
bit tTI;
bit rRI;
data unsigned char rSBUF;
data unsigned
www.eeworm.com/read/397197/8062851
c uart.c
//uart.c
//初始化UART0
# include "ioCC2430.h"
/*****************************************
*函数功能 :初始化串口
*入口参数 : 无
*返 回 值 :无
*说 明 :57600-n-8-0
****************************
www.eeworm.com/read/196669/8068323
c uart.c
/*
* ApOS (Another Project software for s3c2410)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* pu
www.eeworm.com/read/196669/8068333
o uart.o
www.eeworm.com/read/296933/8069469
c uart.c
#include
extern void IniPcPort(void);
extern void msdelay(uchar);
extern void usdelay(uchar);
extern void saveee(void);
extern ulong data PARAM[8];
void IniPcPort()
{
PCON=
www.eeworm.com/read/296933/8069473
lst uart.lst
C51 COMPILER V7.50 UART 11/06/2006 14:18:18 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN .\
www.eeworm.com/read/196596/8073603
h uart.h
#ifndef __UART_H__
#define __UART_H__
void Test_Uart0(void);
void Test_Uart0Fifo(void);
void Test_Uart1(void);
void Test_Uart1Fifo(void);
void Test_Uart0Range(void);
void Test_Uart1Max(void);