代码搜索结果
找到约 10,000 项符合
Serial 的代码
serial.s
.module serial.c
.area text(rom, con, rel)
.dbfile E:\Shuaihu\AVR\8880\serial.c
.dbfunc e uart0_init _uart0_init fV
.even
_uart0_init::
.dbline -1
.dbline 17
; //ICC-AVR application bui
serial.c
//ICC-AVR application builder : 2007-10-18 21:13:05
// Target : M8
// Crystal: 8.0000Mhz
#include
#include
#include
#include "serial.h"
#include "main.h"
//UA
serial.h
/* serial.h - serial device interface */
/*
* GRUB -- GRand Unified Bootloader
* Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
*
* This program is free software; you can redist
serial.c
/* serial.c - serial device interface */
/*
* GRUB -- GRand Unified Bootloader
* Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
*
* This program is free software; you can redist
serial.lst
C51 COMPILER V6.23a SERIAL 04/15/2002 18:18:04 PAGE 1
C51 COMPILER V6.23a, COMPILATION OF MODULE SERIAL
OBJECT MODULE PLACED IN
serial.c
//串口中断服务程序,仅需做简单调用即可完成串口输入输出的处理
//出入均设有缓冲区,大小可任意设置。
//*************************************************************************
#include "TestSerial.h"
#define BAUDRATE0 115200 // 用户定义的UART0
serial.h
void OpenComm(void);
void SendCommChar(char ch);
void SendCommAddr(char ch);
void SendCommBuffer(unsigned char *base, unsigned char size);
void SendCommString(unsigned char *base);
bit GetCommCha
serial.h
int open_port(int fd,int comport);
int set_opt(int fd,int nSpeed, int nBits, char nEvent, int nStop);
serial.c
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include