代码搜索:AVR UART 232
找到约 10,000 项符合「AVR UART 232」的源代码
代码结果 10,000
www.eeworm.com/read/488608/6482633
h uart.h
#ifndef _UART_TAG_
#define _UART_TAG_
#define UART_BUFFER_ENABLE 0
#define UART_BUFFER_LENGTH 10
void Uart_Init(void);
void Uart_Putc(INT8U ch);
INT8U Uart_Getc(void);
#endif //_
www.eeworm.com/read/488608/6482635
c uart.c
#include "os_asm.h"
#include "core.h"
void Uart_Init(void)
{
UCSRB = 0x00; //disable while setting baud rate
UCSRA = 0x00;
UCSRC = (1
www.eeworm.com/read/488319/6492678
h uart.h
/*******************************************************
本程序只供学习使用,未经作者许可,不得用于其它任何用途
UART.h file
Created by Computer-lov
Date: 2005.12.12
Version V1.1
Copyright(C) Computer-lov 2005-2015
www.eeworm.com/read/488319/6492683
c uart.c
/*******************************************************
本程序只供学习使用,未经作者许可,不得用于其它任何用途
UART.c file
Created by Computer-lov
Date: 2005.12.12
Edit date:2006.2.24
Version V1.1
Copyright(C) C
www.eeworm.com/read/488319/6492684
lst uart.lst
C51 COMPILER V8.08 UART 01/17/2009 15:09:00 PAGE 1
C51 COMPILER V8.08, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN UA
www.eeworm.com/read/488319/6492687
obj uart.obj
www.eeworm.com/read/488038/6495256
h uart.h
#ifndef _UART_H
#define _UART_H
void serInit(void);
unsigned char serHasBytesBeenReceived(void);
unsigned char serReadByte(void);
unsigned char serWriteByte(unsigned char nData);
unsigned char s
www.eeworm.com/read/488038/6495262
c uart.c
/************************************************
uart.c - Routines for a buffered UART.
*************************************************/
#include
#include "uart.h"
#include "buffer
www.eeworm.com/read/488006/6503524
obj uart.obj
www.eeworm.com/read/488006/6503529
lst uart.lst
C51 COMPILER V8.02 UART 05/08/2009 20:02:42 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN ua