代码搜索:如何学习 UART?
找到约 10,000 项符合「如何学习 UART?」的源代码
代码结果 10,000
www.eeworm.com/read/389240/8540325
o uart.o
www.eeworm.com/read/389240/8540349
h uart.h
#include "config.h"
void UART0_Ini(void);
void UART0_SendByte(uint8 data);
void UART0_SendStr(uint8 *str);
www.eeworm.com/read/389240/8540369
c uart.c
#include "uart.h"
#define UART_BPS 57600 /* 定义通讯波特率 */
/****************************************************************************
* 名称:UART0_Ini()
* 功能:初始化串口0。设置为8位数据位,1位停止位,无奇偶校验,波特率为11
www.eeworm.com/read/389234/8540569
c uart.c
////////////////////////////////////////uart.c//////////////////////////////
/////////////////////////////////file name :okiml674000////////////////////
////////////////////////////////data:2005nia\
www.eeworm.com/read/389231/8540786
h uart.h
#ifndef __UART_H__
#define __UART_H__
void Test_Uart0(void);
void Test_Uart0Fifo(void);
void Test_Uart1(void);
void Test_Uart1Fifo(void);
void Test_Uart0Range(void);
void Test_Uart1Max(void);
www.eeworm.com/read/389231/8540976
c uart.c
#include
#include
#include "..\inc\44b.h"
#include "..\inc\44blib.h"
#include "..\inc\def.h"
#include "..\inc\rtc.h"
#define KEY_BUFLEN 100
#define AFC_BUFLEN 0x100
c
www.eeworm.com/read/389139/8546971
c uart.c
#if (RS232_DEBUG == TRUE)
/*========================================================
子程序名称:
子程序功能:
子程序描述:
========================================================*/
void rs232_debug(void)
{
www.eeworm.com/read/389095/8548351
h uart.h
void Init_UART1(void);
void Init_Port(void);
void Init_CLK(void);
int ProcessCMD(char pBuf[],int nLen);
www.eeworm.com/read/389095/8548356
c uart.c
#include
#include "uart.h"
//定义串口操作变量
// 串口 1 的接收标志
char nRev_UART1;
// 串口 1 的发送缓冲区
char UART1_TX_BUF[60];
// 串口 1 的接收缓冲区
char UART1_RX_BUF[60];
int nSend_TX1;
int nTX
www.eeworm.com/read/389095/8548360
h uart.h
void Init_UART1(void);
void Init_Port(void);
void Init_CLK(void);
int ProcessCMD(char pBuf[],int nLen);