代码搜索结果
找到约 10,000 项符合
USART 的代码
usart.opt
### 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 {
usart.h
//Usart.h
//Catinux 040811
#ifndef __USART_H
#define __USART_H
#define COM0 0
#define COM1 1
#define COM2 2
void ResetTxBuffer(char UsartNo);
void ResetRxBuffer(char UsartNo);
int Us_Send
usart.c
//uart.C
//Catinux 040811
// Include Standart LIB files
#include "include/AT91M55800A.h"
#include "include/lib_AT91M55800A.h"
#include "drv/eb55.h"
#include "drv/Usart.h"
//#include "timer.h"
usart.s
.module usart.c
.area text(rom, con, rel)
.dbfile C:\DOCUME~1\Rooger\桌面\GSM_PHONE\usart.c
.dbfunc e USART_Init _USART_Init fV
.even
_USART_Init::
.dbline -1
.dbline 19
; //*************
usart.o
XL
H 2 areas D global symbols
M usart.c
S push_gset1 Ref0000
S push_gset2 Ref0000
S push_gset3 Ref0000
S _Delay Ref0000
S pop_gset1 Ref0000
S pop_gset2 Ref0000
S pop_gset3 Ref0000
A text siz
usart.h
#ifndef _Usart_H
#define _Usart_H
void USART_Init(void);
void Usart_Tx(char);
void Usart_TxData(unsigned int iValue);
char Usart_Rx(void);
void Usart_Command(char *command, char num_bytes);
#en