代码搜索结果
找到约 5,134 项符合
USART 的代码
usart.o.d
usart.o: usart.c \
C:/WinAVR/bin/../lib/gcc/avr/3.4.1/../../../../avr/include/avr/io.h \
C:/WinAVR/bin/../lib/gcc/avr/3.4.1/../../../../avr/include/avr/sfr_defs.h \
C:/WinAVR/bin/../lib/gcc/a
usart.o.d
usart.o: usart.c \
C:/WinAVR/bin/../lib/gcc/avr/3.4.1/../../../../avr/include/avr/io.h \
C:/WinAVR/bin/../lib/gcc/avr/3.4.1/../../../../avr/include/avr/sfr_defs.h \
C:/WinAVR/bin/../lib/gcc/a
usart.txt
Title: usart
Target: PIC18Cxx8
Description:
A sample project file to be used with HI-TIDE, to demonstrate the functionality of the microcontroller's
Addressable USART module.
The
usart.prj
#Project File: HI-TIDE: Project File version 1.0
#Thu Aug 22 07:20:08 GMT+10:00 2002
CNode.usart.cCompilerUse_custom=false
CNode.usartisr.cMap_sorting.Custom=name
[SFolderNodes][Object_File]=RTNod
usart.c
/*A sample project file to be used with HI-TIDE, to demonstrate the functionality of the microcontroller's USART.*/
/*Refer to usart.txt for additional information*/
#include
#include
usart.wsdt
Usart/Debug
usart.eww
$WS_DIR$\Usart.ewp
usart.pbd
This is an internal working file generated by the Source Browser.
19:29 08s
E:\workplace\IAR\Usart\Debug\Obj\main.pbi
usart.h
#ifndef _USART_H_
#define _USART_H_
void init_USART(void);//USART 初始化
void put_s(unsigned char *ptr);
#endif /* _USART_H_ */
usart.c
#include
#include
#include
#include "usart.h"
//常量定义
#define BAUDRATE 9600 //波特率
#define F_CPU 16000000 //这个已经在makefile里面定义了
void init