代码搜索:UART 有哪些应用?
找到约 10,000 项符合「UART 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/381683/9078115
h uart.h
/* File: uart.h */
/* Copyright 2003, Cypress Semiconductor Corporation
*
* This software is owned by Cypress Semiconductor Corporation (Cypress) and
* is protected by United States copyright
www.eeworm.com/read/381683/9078189
c uart.c
/* File: uart.c */
/* Copyright 2003, Cypress Semiconductor Corporation
*
* This software is owned by Cypress Semiconductor Corporation (Cypress) and
* is protected by United States copyright
www.eeworm.com/read/282541/9084402
c uart.c
#include "config.h"
void init_uart( )
{
GPHCON = 0x16faaa;//GPH2, GPH3 used as TXD0,RXD0
GPHUP = 0x7ff; //GPH2, GPH3 disable pull up
__CONCAT(ULCON, CONSOLE_PORT) = 0x3;
__CONCAT(UCON
www.eeworm.com/read/184710/9084510
uart0
www.eeworm.com/read/282541/9084535
c uart.c
#include "config.h"
void init_uart()
{
GPHCON = 0x16faaa; /*GPH2, GPH3 used as TXD0,RXD0*/
GPHUP = 0x7ff; /*GPH2, GPH3 disable pull up*/
__CONCAT(ULCON, CONSOLE_PORT) = 0x3;
__CONCAT(UC
www.eeworm.com/read/282541/9084686
c uart.c
#include "config.h"
void init_uart()
{
GPHCON = 0x16faaa; /*GPH2, GPH3 used as TXD0,RXD0*/
GPHUP = 0x7ff; /*GPH2, GPH3 disable pull up*/
__CONCAT(ULCON, CONSOLE_PORT) = 0x3;
__CONCAT(UC
www.eeworm.com/read/381575/9084714
h uart.h
#ifndef _UART_H
#define _UART_H
void UartSetBaud(U32 ch, U32 baud);
char UartGetch(U32 ch);
char UartGetkey(U32 ch);
void UartPutch(U32 ch, U32 data);
void UartPuts(U32 ch, char *pt);
void Ua
www.eeworm.com/read/184704/9084790
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/184704/9084904
c uart.c
#include
#include
#include "..\..\inc\44b.h"
#include "..\..\inc\44blib.h"
#include "..\..\inc\def.h"
#include "..\..\inc\cputest\rtc.h"
#define KEY_BUFLEN 100
#define A
www.eeworm.com/read/184606/9092248