代码搜索结果

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

usart.c

#define USART_C #include "includes.h" void UsartInit(void) { // 晶振频率 : 4.0MHz // 通信参数: 8 Data, 1 Stop, No Parity // 波特率: // UBRRL= 0x0C 19200; // UBRRL= 0x19 9600;

usart.h

#ifndef USART_H #define USART_H #ifdef USART_C void UsartInit(void); int PutChar(char c); void SendNbyte(unsigned char *p,unsigned char L); void PutStr(unsigned char *Str); #else extern void U

usart.c

#define USART_C #include "includes.h" int usart_putchar(char c) { if (c == '\n') usart_putchar('\r'); while(UCSRA&(1

usart.h

/****************************************************************** 本程序只供学习使用,未经作者许可,不得用于其它任何用途 欢迎访问我的USB专区:http://group.ednchina.com/93/ 欢迎访问我的blog: http://www.ednchina.com/

usart.c

/****************************************************************** 本程序只供学习使用,未经作者许可,不得用于其它任何用途 欢迎访问我的USB专区:http://group.ednchina.com/93/ 欢迎访问我的blog: http://www.ednchina.com/

usart.c

#define USART_C #include "includes.h" void usart_putchar(char c) { if (c == '\n') usart_putchar('\r'); while(UCSRA & (1