代码搜索结果
找到约 10,000 项符合
USART 的代码
usart.c
#include "includes.h"
#define USART_C
int usart_putchar(char c)
{
if (c == '\n')
usart_putchar('\r');
while(UCSRA & (1
usart.h
#if !defined(USART_H)
#define USART_H
#if defined UCART_C
int usart_putchar(char c);
void init_usart(void);
#else
extern int usart_putchar(char c);
extern void init_usart(void);
#endif
#endif
usart.h
//*----------------------------------------------------------------------------
//* ATMEL Microcontroller Software Support - ROUSSET -
//*-------------------------------------------------
usart.h
//*----------------------------------------------------------------------------
//* ATMEL Microcontroller Software Support - ROUSSET -
//*-------------------------------------------------
usart.inc
#------------------------------------------------------------------------------
#- ATMEL Microcontroller Software Support - ROUSSET -
#----------------------------------------------------
usart.txt
Title: usart
Target: PIC18Cxx8
Description:
A sample project file to be used with HI-TIDE, to demonstrate the functionality of the microcontroller's
Addressable USART module.
The
usart.h
#define USART_RC (RB4)
#define USART_TX (RB5)
extern volatile bit UPDATE_REQUIRED;
extern volatile bit DATA_RECEIVED;
extern volatile bit TX_INT;
extern volatile char DATA;
usart.prj
#Project File: HI-TIDE: Project File version 1.0
#Thu Aug 22 07:20:08 GMT+10:00 2002
CNode.usart.cCompilerUse_custom=false
CNode.usartisr.cMap_sorting.Custom=name
[SFolderNodes][Object_File]=RTNod
usart.c
/*A sample project file to be used with HI-TIDE, to demonstrate the functionality of the microcontroller's USART.*/
/*Refer to usart.txt for additional information*/
#include
#include
usart.h
//*----------------------------------------------------------------------------
//* ATMEL Microcontroller Software Support - ROUSSET -
//*-------------------------------------------------