代码搜索结果

找到约 10,000 项符合 USART 的代码

usart.h

#ifndef _USART_LXF_H_ #define _USART_LXF_H_ extern void usart_init(unsigned int); extern void usart_transmit(unsigned char); extern unsigned char usart_receive(void); extern void fasong(unsigne

usart.lst

1 .file "usart.c" 2 __SREG__ = 0x3f 3 __SP_H__ = 0x3e 4 __SP_L__ = 0x3d 5 __CCP__ = 0x34 6

usart.c

#include #include #include void usart_init(unsigned int baud) { UBRRH = (unsigned char)(baud>>8); UBRRL = (unsigned char)baud; /* 接收器与发送器使能,接收

usart.h

#ifndef _USART_LXF_H_ #define _USART_LXF_H_ extern void usart_init(unsigned int); extern void usart_transmit(unsigned char); extern unsigned char usart_receive(void); #endif

usart.lst

1 .file "usart.c" 2 __SREG__ = 0x3f 3 __SP_H__ = 0x3e 4 __SP_L__ = 0x3d 5 __CCP__ = 0x34 6

usart.c

#include #include #include void usart_init(unsigned int baud) { UBRRH = (unsigned char)(baud>>8); UBRRL = (unsigned char)baud; /* 接收器与发送器使能,接收

usart.h

/* ****ROBOCON 2009 | BUPT TEAM******* * ------------------------------------------------------------------------ * FileName : usart.h * Version : 1.0 * Biref : Usart

usart.c

/* ****ROBOCON 2009 | BUPT TEAM******* * ------------------------------------------------------------------------ * FileName : usart.c * Version : 1.01 * Biref : USART

usart.h

/* filename: usart.h */ #ifndef _LXF_USART_20080914_H #define _LXF_USART_20080914_H extern void USART_Config(void); extern void USART1_Puts(char *); extern void USART1_Putc(unsigned char); #