代码搜索:UART 有哪些应用?
找到约 10,000 项符合「UART 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/385906/8782590
obj uart.obj
www.eeworm.com/read/385906/8782625
lst uart.lst
_____________________________________________________________________________
F2MC-8L/8FX Family SOFTUNE Assembler V30L08 2008-05-20 09:44:34 Page: 1
- ASSEMBLE INFORMATION - ( uart )
|
www.eeworm.com/read/429642/8797118
h uart.h
#ifndef _UART_H_
#define _UART_H_
extern volatile unsigned char firstinflag;
extern volatile unsigned char Uartshortkeyflag;
extern volatile unsigned char UartReceiveErrorflag;
extern volatil
www.eeworm.com/read/429642/8797141
lst uart.lst
1 .file "uart.c"
2 .arch atmega32
3 __SREG__ = 0x3f
4 __SP_H__ = 0x3e
5 __SP_L__ = 0x3d
6
www.eeworm.com/read/429642/8797155
c uart.c
#include "uart.h"
#include "system.h"
#define MSGHEAD 0xfa //数据头
//#define DeviceAddr 1 //设备地址 01
#define ReadCommand 0x0f //读设备功能码
#define WriteCommand 0x10 //写设备功能码
#define sendC
www.eeworm.com/read/429642/8797160
o uart.o
www.eeworm.com/read/429631/8797734
lst uart.lst
1 .file "uart.c"
2 __SREG__ = 0x3f
3 __SP_H__ = 0x3e
4 __SP_L__ = 0x3d
5 __CCP__ = 0x34
6
www.eeworm.com/read/429631/8797750
c uart.c
//--------------------------------------------------------------------
//
// FIFO 发 超时收
//
//
//--------------------------------------------------------------------
#include "system.h"
www.eeworm.com/read/429631/8797753
h uart.h
#ifndef __Uart__H__
#define __Uart__H__
//#define F_CPU 11059200
#define baud 9600
#define UBRR (F_CPU/16/baud-1)
#define OutLEN 255 //串口发送缓冲大小
#define InLEN 40 //串口接收缓冲大小
exter