代码搜索结果
找到约 10,000 项符合
UART 的代码
uart.tra
*** Creating Trace Output File 'uart.tra' Ok.
### Preparing for ADS-LD.
### Creating ADS-LD Command Line
### List of Objects: adding '"startup.o"'
### List of Objects: adding '"main.o"'
### ADS-L
uart.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 {
uart.sct
; *************************************************************
; *** Scatter-Loading Description File generated by uVision ***
; *************************************************************
LR_
uart.htm
Static Call Graph - [E:\ARM study\uart\uart.axf]
Static Call Graph for image E:\ARM
uart.map
ARM Linker, RVCT3.0 [Build 951] for uVision [Full]
================================================================================
Section Cross References
startup.o(STACK) refers (Speci
uart.plg
礦ision3 Build Log
Project:
E:\ARM study\uart\uart.uv2
Project File Date: 10/11/2008
Output:
Build target 'Target 1'
assembling Startup.s...
uart.c
#include
#include "board.h"
#include "sdev.h"
#include "uart.h"
#include "bspspec.h" /* add by maold */
/* SMCMR */
#define UART_LOOPBACK (1
uart.h
#ifndef UART_H
#define UART_H 1
#include"stdio.h"
//标准I/O输出函数
int usart_putchar(char c);
//标准I/O输入函数
int usart_getchar(void);
#endif
uart.c
#include"comm.h"
#include"uart.h"
#include"twi.h"
/*******************标准I/O功能****************开始********/
//标准I/O输出函数
int usart_putchar(char c)
{
if(c=='\n')
usart_putchar('\r');
loop_