代码搜索结果
找到约 20,284 项符合
I2C 的代码
i2c.s
.module I2C.C
.area text(rom, con, rel)
.dbfile E:\Steaven2000\AVR\AVR_Book\PROGRA~1\SOURCE~1\Code\I2C总线应用设计\I2C.C
.dbfunc e Delayms _Delayms fV
; time -> R16,R17
.even
_Delayms::
i2c.h
//***************************************************************
// File Name : I2C.C
// Author : Steaven
// Created : 2008-06-09
// Modified :
// Revision : V0.0
//********************
i2c.o
XL
H 3 areas 17 global symbols
M I2C.C
S push_gset1 Ref0000
S push_gset2 Ref0000
S push_gset4 Ref0000
S push_gset5 Ref0000
S lsl8 Ref0000
S pop_gset1 Ref0000
S pop_gset2 Ref0000
S pop_gset4
i2c.c
//***************************************************************
// File Name : I2C.C
// Author : Steaven
// Created : 2008-06-09
// Modified :
// Revision : V0.0
//********************
i2c.lis
.module I2C.C
.area text(rom, con, rel)
0000 .dbfile E:\Steaven2000\AVR\AVR_Book\PROGRA~1\SOURCE~1\Code\I2C总线应用设计\I2C.C
0000
i2c.dp2
I2C.o: E:\Steaven2000\AVR\AVR_Book\PROGRA~1\SOURCE~1\Code\I2C总线应用设计/includes.h C:/icc/include/iom16v.h C:/icc/include/macros.h C:/icc/include/string.h C:/icc/include/_const.h\
E:\Steaven2000\AVR\AVR
i2c.txt
This project is a simple I2C example that communicates with the MMA7660 accelerometer on the tower board. It prints out the acceleromer X, Y, and Z axis data to the terminal.
By default the OS-JTAG
i2c.c
/*
* FILE: i2c.c
* 用于主机发送/接收
*/
#include
#include "s3c24xx.h"
#include "i2c.h"
void Delay(int time);
#define WRDATA (1)
#define RDDATA (2)
typedef struct tI2C {
i2c.c
/*
* FILE: i2c.c
* 用于主机发送/接收
*/
#include
#include "s3c24xx.h"
#include "i2c.h"
void Delay(int time);
#define WRDATA (1)
#define RDDATA (2)
typedef struct tI2C {
i2c.c
/****************************************************************************
* $Id:: i2c.c 5865 2010-12-08 21:42:21Z usb00423 $
* Project: NXP LPC17xx I2C example
*