代码搜索结果
找到约 10,000 项符合
UART 的代码
uart.s
.module uart.c
.area text(rom, con, rel)
.dbfile C:\DOCUME~1\Administrator.27F5F4061F03467\桌面\uart\uart.c
.dbfunc e delay_nus _delay_nus fV
; i -> R20,R21
; n -> R16
uart.mak
CC = iccavr
CFLAGS = -e -D__ICC_VERSION="7.14C" -DATMega8515 -l -g -Mavr_enhanced_small -Wa-W
ASFLAGS = $(CFLAGS) -Wa-g
LFLAGS = -g -e:0x2000 -Wl-W -bfunc_lit:0x22.0x2000 -dram_end:0x25f -bdat
uart.mp
NOTE: AVR Code addresses are word addresses
All other addresses (including ones in FLASH) are byte addresses
Area Addr Size Decimal Bytes (Attributes)
----------
uart.h
/*****************************************************************************
* uart.h: Header file for NXP LPC24xx Family Microprocessors
*
* Copyright(C) 2006, NXP Semiconductor
* Al
uart.c
/*****************************************************************************
* uart.c: UART API file for NXP LPC24xx Family Microprocessors
*
* Copyright(C) 2006, NXP Semiconductor
*
uart.h
#ifndef _UART_H
#define _UART_H
void UartSetBaud(U32 ch, U32 baud);
char UartGetch(U32 ch);
char UartGetkey(U32 ch);
void UartPutch(U32 ch, U32 data);
void UartPuts(U32 ch, char *pt);
void Ua
uart.h
#ifndef __UART_H__
#define __UART_H__
//串口波特率初始化已经在AUTO_ISP.H中完成
//发送1字节
void uart_put_uchar(unsigned char c)
{
SBUF = c;
while(!TI);
TI = 0;
}
//接收1字节
unsigned char uart_get
uart.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
uart.sln
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Uart", "Uart.vcproj", "{81A2209D-95C2-48AD-8724-E7121B67B4C8}"
ProjectSection(Project
uart.clw
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=PICDlg2
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "Uart.h"