代码搜索结果
找到约 10,000 项符合
UART 的代码
uart_test_uart_test_in_ram.dep
Dependencies for Project 'Uart_Test', Target 'Uart_Test_In_Ram': (DO NOT MODIFY !)
F (..\..\Common_Files\S3C44B0X.s)(0x48BE5B9E)(--device DARMS -g --apcs=interwork -I "F:\Keil\ARM\INC\Samsung" --list
uart.h
//uart.h
#include
#include
#define OSCILLATOR_CLOCK_FREQUENCY 14745600 //in MHz
//get real processor clock frequency
unsigned int processorClockFrequency(void);
uart.c
//uart.c
#include "uart.h"
unsigned int processorClockFrequency(void)
{
//return real processor clock speed
return OSCILLATOR_CLOCK_FREQUENCY * (PLLCON & 1 ? (PLLCFG & 0xF) + 1 : 1);
}
uart.h
#ifndef __UART_H__
#define __UART_H__
#define UART0_REVBUFFER_SIZE 1024
#define UART1_REVBUFFER_SIZE 1024
void OSInitUart(void);
int OSReadUart0(U8 data[], int num, int ntimeout);
void Ope
uart.h
/***************************************************************************\
Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved.
by threewter 2004.4.26
\************************
uart.h
#ifndef __UART_H__
#define __UART_H__
#define UART0_REVBUFFER_SIZE 1024
#define UART1_REVBUFFER_SIZE 1024
void OSInitUart(void);
int OSReadUart0(U8 data[], int num, int ntimeout);
void Ope
uart.c
//****************************************************************************************
//** 文件名:Uart.c
//** Copyright (c) 2002 Hard&SoftMcuStudio
//** 创建人:Hard&SoftMcuStudio
//** 日期:2002
uart.h
#ifndef __UART_H_
#define __UART_H_
#include "../../ucos-ii/includes.h"
#define Uart0BaudRate (115200)
#define Uart1BaudRate (115200)
void __irq Uart0_RxInt(void);
void __irq Uart1_RxInt(void)
uart.h
#ifndef __UART_H__
#define __UART_H__
#define UART0_REVBUFFER_SIZE 1024
#define UART1_REVBUFFER_SIZE 1024
void OSInitUart(void);
int OSReadUart0(U8 data[], int num, int ntimeout);
void Ope
uart.c
#include
#include "Tl16C752B.h"
static UartDelay(Uint32 Val)
{
Uint32 i;
for(i=0;i