代码搜索:UART 有哪些应用?
找到约 10,000 项符合「UART 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/300259/13923613
c uart.c
/******************************************************************
本程序只供学习使用,未经作者许可,不得用于其它任何用途
欢迎访问我的USB专区:http://group.ednchina.com/93/
欢迎访问我的blog: http://www.ednchina.com/
www.eeworm.com/read/300259/13923618
lst uart.lst
C51 COMPILER V8.02 UART 12/12/2007 21:37:18 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN UA
www.eeworm.com/read/300259/13923634
obj uart.obj
www.eeworm.com/read/300256/13924109
h uart.h
/******************************************************************
本程序只供学习使用,未经作者许可,不得用于其它任何用途
欢迎访问我的USB专区:http://group.ednchina.com/93/
欢迎访问我的blog: http://www.ednchina.com/
www.eeworm.com/read/300256/13924136
c uart.c
/******************************************************************
本程序只供学习使用,未经作者许可,不得用于其它任何用途
欢迎访问我的USB专区:http://group.ednchina.com/93/
欢迎访问我的blog: http://www.ednchina.com/
www.eeworm.com/read/300256/13924141
lst uart.lst
C51 COMPILER V7.06 UART 12/10/2007 14:20:44 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN UA
www.eeworm.com/read/300256/13924161
obj uart.obj
www.eeworm.com/read/135465/13927683
c uart.c
#include "Include.H"
//UART0 initialisation
//desired baud rate: 115200
//actual: baud rate:115200 (0.0%)
//char size: 8 bit
//parity: Disabled
void uart0_init(void)
{
UCSRB = 0x00; //
www.eeworm.com/read/135465/13927691
h uart.h
#ifndef __UART_H__
#define __UART_H__
void uart0_init(void);
void uart0_release(void);
char getchar(void);
void putchar(char);
void putstr(char*);
#endif
www.eeworm.com/read/135421/13933979