代码搜索:如何学习 UART?
找到约 10,000 项符合「如何学习 UART?」的源代码
代码结果 10,000
www.eeworm.com/read/398414/2381329
h uart.h
#ifndef __UART_H__
#define __UART_H__
#include "../inc/macro.h"
#include "../ucos-ii/ucos_ii.h"
#define UART_REVBUFFER_SIZE 1024
typedef struct{
U8 Buffer[UART_REVBUFFER_SIZE];
OS_EVEN
www.eeworm.com/read/398414/2381401
h uart.h
#ifndef __UART_H__
#define __UART_H__
#include "../inc/macro.h"
#include "../ucos-ii/ucos_ii.h"
#define UART_REVBUFFER_SIZE 1024
typedef struct{
U8 Buffer[UART_REVBUFFER_SIZE];
OS_EVEN
www.eeworm.com/read/398414/2381473
h uart.h
#ifndef __UART_H__
#define __UART_H__
#include "../inc/macro.h"
#include "../ucos-ii/ucos_ii.h"
#define UART_REVBUFFER_SIZE 1024
typedef struct{
U8 Buffer[UART_REVBUFFER_SIZE];
OS_EVEN
www.eeworm.com/read/398414/2381545
h uart.h
#ifndef __UART_H__
#define __UART_H__
#include "../inc/macro.h"
#include "../ucos-ii/ucos_ii.h"
#define UART_REVBUFFER_SIZE 1024
typedef struct{
U8 Buffer[UART_REVBUFFER_SIZE];
OS_EVEN
www.eeworm.com/read/398414/2381618
h uart.h
#ifndef __UART_H__
#define __UART_H__
#include "../inc/macro.h"
#include "../ucos-ii/ucos_ii.h"
#define UART_REVBUFFER_SIZE 1024
typedef struct{
U8 Buffer[UART_REVBUFFER_SIZE];
OS_EVEN
www.eeworm.com/read/398414/2381746
h uart.h
#ifndef __UART_H__
#define __UART_H__
#include "../inc/macro.h"
#include "../ucos-ii/ucos_ii.h"
#define UART_REVBUFFER_SIZE 1024
typedef struct{
U8 Buffer[UART_REVBUFFER_SIZE];
OS_EVEN
www.eeworm.com/read/396920/2406433
c uart.c
/*
* (C) Copyright 2002
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you
www.eeworm.com/read/396920/2406441
c uart.c
/*
* (C) Copyright 2007
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* Author: Igor Lisitsin
*
* See file CREDITS for list of people who contributed to this
* pr
www.eeworm.com/read/396597/2412526
h uart.h
/* 定义串口模式设置数据结构 */
typedef struct UartMode
{
uint8 datab; // 字长度,5/6/7/8
uint8 stopb; // 停止位,1/2
uint8 parity; // 奇偶校验位,0为无校验,1奇数校验,2为偶数校验
}UARTMODE
www.eeworm.com/read/396597/2412527
c uart.c
#include "config.h"
#include "uart.h"
uint8 rcv_buf[8]; // UART0数据接收缓冲区
volatile uint8 rcv_new; // 接收新数据标志
/*
********************************************************************