代码搜索结果
找到约 10,000 项符合
UART 的代码
uart_if.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
uart.v
/******************************************************************************
*
* File Name: uart.v
* Version: 1.1
* Date: January 22, 2000
* Model: Uart Chip
* Depe
uart_if.v
`timescale 1 ns / 1 ns
module uart_if(clk,rst_n,txd,rxd,data_out,data_in);
input clk,rst_n,rxd;
input[7:0] data_in;
output txd;
output[7:0] data_out;
reg [7:0] data_out;
reg [7
uart.c
#include "stdlib.h"
#include "config.h"
#include "regmap.h"
#include "bufloc.h"
#include "global.h"
#include "memmap.h"
#include "sio.h"
#include "gpio.h"
#include "func.h"
#include "util.h"
uart.h
#ifndef __UART_H_
#define __UART_H_
#define UART_SOFTRESET (1
uart.c
/*! \file uart.c \brief UART driver with buffer support. */
// *****************************************************************************
//
// File Name : 'uart.c'
// Title : UART driver with
uart.c
#include "main.h" /* for generic defines and typedefs */
#include "uart.h" /* for typedefs, prototypes, defines */
#include /* for 'PORTC,G' and 'TRISC,G' */
#include /* fo
uart.c
// Crystal: 3.6864Mhz
#include "includes.h"
unsigned char temp ;
/************************************* InitUART *************************************/
void InitUART( unsigned char baudrate )
{
uart.c
// Crystal: 3.6864Mhz
#include "includes.h"
unsigned char temp ;
/************************************* InitUART *************************************/
void InitUART( unsigned char baudrate )
{
uart.h
/*****************************************************************/
/* Copyright (c) Texas Instruments, Incorporated 2000 */
/*************************************************************