代码搜索:AVR UART 232
找到约 10,000 项符合「AVR UART 232」的源代码
代码结果 10,000
www.eeworm.com/read/481158/6644019
c uart.c
/* | Description */
/*-------------------------------------------------------------------------*/
/*This is The Tms320lf2407A C source Program including SCI OCTO. 20, 2
www.eeworm.com/read/481158/6644020
sbl uart.sbl
www.eeworm.com/read/480482/6664925
h uart.h
#ifndef __UART_H__
#define __UART_H__
void Test_Uart0(void);
void Test_Uart0Fifo(void);
void Test_Uart1(void);
void Test_Uart1Fifo(void);
void Test_Uart0Range(void);
void Test_Uart1Max(void);
www.eeworm.com/read/480296/6672050
vhd uart.vhd
-- *******************************************************************
--
-- Owner: Xilinx Inc.
-- File: uart.vhd
--
-- Purpose: Top level UART description. UART implements
-- a full dupl
www.eeworm.com/read/480318/6672422
h uart.h
#ifndef __UART_H__
#define __UART_H__
#define LF 0x0A // Line Feed
#define CR 0x0D // Carriage Return
extern void UART_init();
extern void UART_send_byte(unsigned char data);
extern
www.eeworm.com/read/480318/6672427
c uart.c
#include "config.h"
void UART_init()
{
UBRR1L = 15; // 57600bps at 14.7456MHz
UCSR1B = 0x18;
}
void UART_send_byte(unsigned char data)
{
while(!(UCSR1A & 0x20));
UDR1 = data;
www.eeworm.com/read/480318/6672439
o uart.o
www.eeworm.com/read/479970/6674169
lnp uart.lnp
"startup.o" "text2.o" --strict --scatter "uart.sct"
--map --xref --callgraph --symbols
--info sizes --info totals --info unused --info veneers
--list ".\uart.map" -o "uart.axf"
www.eeworm.com/read/479970/6674170
tra uart.tra
*** Creating Trace Output File 'uart.tra' Ok.
### Preparing for ADS-LD.
### Creating ADS-LD Command Line
### List of Objects: adding '"startup.o"'
### List of Objects: adding '"text2.o"'
### ADS-
www.eeworm.com/read/479970/6674172
opt uart.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {