代码搜索:AVR UART 232
找到约 10,000 项符合「AVR UART 232」的源代码
代码结果 10,000
www.eeworm.com/read/487579/6504173
v uart.v
//-----------------------------------------------------
// Design Name : uart
// File Name : uart.v
// Function : Simple UART
// Coder : Deepak Kumar Tala
//-------------------------------
www.eeworm.com/read/487477/6514413
h uart.h
#ifndef __UART__H
#define __UART__H
//-----------------------------------------------------------
//串口初始化子程序
//-----------------------------------------------------------
void Uart_Init(void)
www.eeworm.com/read/487477/6514415
c uart.c
//-----------------------------------------------------------
//程序由AVR辅助开发工具V2.0.0自动生成
//MCU系统的处理器为: ATMega16
//MCU系统的晶振频率: 8.0000 Mhz
//------------------------------------------------
www.eeworm.com/read/487477/6514420
dsn uart.dsn
www.eeworm.com/read/487477/6514421
pwi uart.pwi
www.eeworm.com/read/486947/6521352
npl uart.npl
JDF F
// Created by Project Navigator ver 1.0
PROJECT UART
DESIGN uart Normal
DEVFAM spartan2
DEVFAMTIME 0
DEVICE xc2s15
DEVICETIME 0
DEVPKG cs144
DEVPKGTIME 0
DEVSPEED -6
DEVSPEEDTIME 0
F
www.eeworm.com/read/486851/6530918
h uart.h
#ifndef UART__H__
#define UART__H__
#include
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/486851/6530920
c uart.c
#include "uart.h"
uint8_t Tx_Data_Pos=0;
uint8_t Tx_Data_Len=0;
uint8_t Rx_Data_Pos=0;
uint8_t Rx_Data_Len=0;
uint8_t Send_Buf[16];
uint8_t Recv_Buf[16];
uint8_t Is_Recv_Complete(void)
{
www.eeworm.com/read/486617/6536757
h uart.h
/*********************************************************************************
* UART.h v1.00 *
* Copyright 2003 by SEED Electronic Technology Ltd.
* A
www.eeworm.com/read/486629/6537037
h uart.h
void Init_UART1(void);
void Init_Port(void);
void Init_CLK(void);
int ProcessCMD(char pBuf[],int nLen);