代码搜索结果
找到约 10,000 项符合
UART 的代码
uart0.c
/****************************************Copyright (c)*************************
** Guangzhou ZLG-MCU Development Co.,LTD.
** graduate school
**
uart.dp2
uart.o: D:\new_sd/GLO.H C:/icc/include/iom64v.h C:/icc/include/macros.h D:\new_sd\init.h D:\new_sd/uart.h
uart.dp2
uart.o: F:\ucos\iccavr2\test/includes.h D:/soft/icc/include/iom64v.h F:\ucos\iccavr2\test/OS_CPU.H D:/soft/icc/include/macros.h F:\ucos\iccavr2\test/OS_CFG.H F:/ucos/iccavr/source/UCOS_II.H D:/soft/ic
uart.c.bak
#define _UART_C_
#define BAUD 9600
#define CRYSTAL 11059200
#define BAUD_SETTING (unsigned int)((unsigned long)CRYSTAL/(16*(unsigned long)BAUD)-1)
#define BAUD_H (unsigned char)(BAUD_SETTING>>8
drv_uart.c
#include
#include "drv_defs.h"
#include "drv_extr.h"
#include "kal.h"
extern KL_mailbox_t mailbox;
/*---------------------------------------------------------------------------
uart0.h
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
uart0.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
uart2.c
#include
#include
#include
sbit dight1=P3^2;
sbit dight2=P3^3;
sbit dight3=P3^6;
sbit key1=P2^0;
sbit key2=P2^1;
unsigned char code dispdata[11]={0xc0,0xf9,0
uart0.h
#ifndef _uart0_h
#define _uart0_h
void uart_sendbydte(unsigned char str1);
void UART0Init(uint32 bps);
void uart0_sendstr(uint8 const *str);
#endif