代码搜索:如何学习 UART?
找到约 10,000 项符合「如何学习 UART?」的源代码
代码结果 10,000
www.eeworm.com/read/367400/9752494
_c uart._c
#pragma interrupt_handler USART_Recive_Complete_handler:12
#pragma interrupt_handler USART_Data_Register_Empty_handler:13
#pragma interrupt_handler USART_Transmit_Complete_handler:14
void USART_Ini
www.eeworm.com/read/367399/9752519
lis uart.lis
.module UART.C
.area vector(rom, abs)
.org 44
002C 0C941200 jmp _USART_Recive_Complete_handler
www.eeworm.com/read/367399/9752523
i uart.i
www.eeworm.com/read/367399/9752535
o uart.o
XL
H 2 areas 6 global symbols
M UART.C
A text size 2A flags 0
dbfile F:\自编程序\M16\ds1302\UART.C
dbfunc e USART_Init 0 fV
dbline FFFFFFFF 0
dbline 7 0
dbline F 0
dbline 10 4
dbline 11 8
dblin
www.eeworm.com/read/367399/9752539
c uart.c
#include
#pragma interrupt_handler USART_Recive_Complete_handler:12
#pragma interrupt_handler USART_Data_Register_Empty_handler:13
#pragma interrupt_handler USART_Transmit_Complete_hand
www.eeworm.com/read/367399/9752543
s uart.s
.module UART.C
.area vector(rom, abs)
.org 44
jmp _USART_Recive_Complete_handler
.org 48
jmp _USART_Data_Register_Empty_handler
.org 52
jmp _USART_Transmit_Complete_handler
.area text
www.eeworm.com/read/367399/9752547
_c uart._c
#include
#include
#pragma interrupt_handler USART_Recive_Complete_handler:12
#pragma interrupt_handler USART_Data_Register_Empty_handler:13
#pragma interrupt_handler USART_Tran
www.eeworm.com/read/171335/9761051
c uart.c
#include "Main.h"
void UART_init(unsigned int ch,unsigned int baud)
{
if(ch)
{
UARTLCON1=0x3; // 8-bit no pariy 1 stop-bit
UARTCONT1=0x9; // rx/tx interru
www.eeworm.com/read/171335/9761069
h uart.h
#ifndef _UART_H
#define _UART_H
/***********************************************************
* Status Register Bit Definitions *
********************************************
www.eeworm.com/read/171335/9761084