代码搜索:如何学习 UART?
找到约 10,000 项符合「如何学习 UART?」的源代码
代码结果 10,000
www.eeworm.com/read/471502/6894984
obj uart.obj
www.eeworm.com/read/195469/8153171
h uart.h
//*****************************************************************************
//
// uart.h - Defines and Macros for the UART.
//
// Copyright (c) 2005,2006 Luminary Micro, Inc. All rights reser
www.eeworm.com/read/195469/8153209
c uart.c
//*****************************************************************************
//
// uart.c - Driver for the UART.
//
// Copyright (c) 2005,2006 Luminary Micro, Inc. All rights reserved.
//
//
www.eeworm.com/read/295571/8154151
c uart.c
#include
#include "uart.h"
//*********************************
//
//*********************************
void uart_init()
{
SCON = 0xDA; // SCON: mode 1, 8-bit UART, en
www.eeworm.com/read/295571/8154161
lst uart.lst
C51 COMPILER V7.06 UART 03/25/2008 16:17:39 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN ua
www.eeworm.com/read/295570/8154241
h uart.h
#define LenBuf 0x10
#define START_PT &uart_buff[0]
#define END_PT &uart_buff[LenBuf]
extern data unsigned char TIflag;
extern data unsigned char time_u;
extern data unsigned char *head_pt;
www.eeworm.com/read/295570/8154254
c uart.c
#include
//=========串口0=======================================
#define LenBuf 0x10
data unsigned char time_u;
data unsigned char TIflag;
data unsigned char *head_pt; //接受头指
www.eeworm.com/read/395500/8170595