代码搜索结果
找到约 31,537 项符合
UART 的代码
uart&lcd&spr4096.lik
Version: 3.0
Options: m37
Obj: "C:\Program Files\Sunplus\unSPIDE184\unSPIDE\startupD.obj"
Obj: "E:\software\UART&LCD&SPR4096\Debug\Resource.obj"
Obj: "E:\software\UART&LCD&SPR4096\Debug\4096.obj"
uart.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="C:\ICETEK\DM642C\uart\"
ProjectType=Executable
CPUFamily=TMS320C64XX
Tool="Compiler"
uart.lst
ARM COMPILER V2.50a, UART 28/08/06 09:18:55 PAGE 1
ARM COMPILER V2.50a, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN
uart.c
/************************************************************************************
* Copyright (c) 2004,西安铭朗电子科技有限责任公司
* All rights reserved.
*
* 文件名称: Uart.C
* 文件标识: none
* 适用器件:
uart.c
#include "..\inc\def.h"
#include "..\startup\44b.h"
#include "..\ucos-ii\includes.h"
#include "isr.h"
#include "uart.h"
OS_EVENT *Uart0_Rev_mbox=NULL; //Uart0 receive mail b
uart.cfg
uart "star12sci" {
MCLK_frequency_kHz = 8000;
sci_register_base = 0xc8;
port_ddr_addr = 0x24A;
port_io_addr = 0x248;
rx_pin_offset = 0;
tx_pin_offset = 1;
}
uart.c
#include "config.h"
#include "uart.h"
uint8 rcv_buf[8]; // UART0数据接收缓冲区
volatile uint8 rcv_new; // 接收新数据标志
/*
********************************************************************
uart.c
#include "uart.h"
#define UART_BPS 57600 /* 定义通讯波特率 */
/****************************************************************************
* 名称:UART0_Ini()
* 功能:初始化串口0。设置为8位数据位,1位停止位,无奇偶校验,波特率为11
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
uart.c
#include
#include "uart.h"
#include "flash.h"
//定义串口操作变量
// 串口 1 的接收标志
char nRev_UART1;
// 串口 1 的发送缓冲区
char UART1_TX_BUF[60];
// 串口 1 的接收缓冲区
char UART1_RX_BUF[100];
in