代码搜索:AVR UART 232
找到约 10,000 项符合「AVR UART 232」的源代码
代码结果 10,000
www.eeworm.com/read/343436/6314180
hex uart.hex
:0300000002008B70
:0C008B00787FE4F6D8FD7581170200783C
:020063008F0B01
:10006500AF0B150BEF600BE4FEEEC3942350F10EBE
:0200750080F712
:010077002266
:020003008F0A62
:10000500AF0A150AEF6010E4FDEDC394
www.eeworm.com/read/343436/6314181
obj uart.obj
www.eeworm.com/read/343436/6314187
c uart.c
#include
/* LED1-LED4 */
sbit LED1 = P0^7;
sbit LED2 = P0^6;
sbit LED3 = P0^5;
sbit LED4 = P0^4;
volatile unsigned char BUF;
void Delay100us(volatile unsigned
www.eeworm.com/read/343436/6314190
opt uart.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
www.eeworm.com/read/343436/6314191
lst uart.lst
C51 COMPILER V7.20 UART 07/04/2008 16:43:25 PAGE 1
C51 COMPILER V7.20, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN ua
www.eeworm.com/read/343436/6314194
plg uart.plg
礦ision2 Build Log
Project:
E:\24E1\24E1code\Uart\uart.uv2
Project File Date: 07/04/2008
Output:
www.eeworm.com/read/350553/6316663
h uart.h
#ifndef UART_H
#define UART_H
#include
void uart_init();
void uart_connect_stdio();
void uart_putc(uint8_t c);
void uart_putc_hex(uint8_t b);
uint8_t uart_getc();
#endif
www.eeworm.com/read/350553/6316706
c uart.c
#include
#include
#include
#include "uart.h"
/* some mcus have multiple uarts */
#ifdef UDR0
#define UBRRH UBRR0H
#define UBRRL UBRR0L
#define UDR UDR0
#defin
www.eeworm.com/read/338471/6317593