代码搜索结果

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

usart.pbd

This is an internal working file generated by the Source Browser. 18:44 39s C:\Documents and Settings\堂前明月光\桌面\USART模块1\Debug\Obj\main.pbi

usart.c

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

usart.h

#if !defined(USART_H) #define USART_H #if defined UCART_C void usart_putchar(char c); void init_usart(void); #else extern void usart_putchar(char c); extern void init_usart(void); #endif #end

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" void UsartInit(void) { // 晶振频率 : 4.0MHz // 通信参数: 8 Data, 1 Stop, No Parity // 波特率: // UBRRL= 0x0C 19200; // UBRRL= 0x19 9600;

usart.h

/*************************************************************************** * Atmel AVR USART Library for GCC * Version: 1.0 * * Works with AVR MCUs equiped with USART hardware (ATmega series).

usart.c

/*************************************************************************** * Atmel AVR USART Library for GCC * Version: 1.0 * * Works with AVR MCUs equiped with USART hardware (ATmega series).

usart.h

/*---------------------------------------------------------------------------- Copyright: Radig Ulrich mailto: mail@ulrichradig.de Author: Radig Ulrich Remarks: known Pro